Hey everyone! Here’s a quick post with a few tips and tricks. We’ll keep adding to this list and will push a new list each week
Make sure to subscribe and follow our insta for more content and tips and tricks!
Tips and Tricks –
- If you’re using AI to generate code, then understand what it’s doing. Most AI code ‘works’ but is just an amalgamation of loads of ‘meh’ code.
- Optimise as you go, but don’t waste time over-optimizing. Write your code well so it’s reasonably optimal in the first lace, but don’t optimise every line until something is showing up as a problem in the profiling.
- Avoid code that’ll use the GC. Pre-allocate memory so you don’t get huge pauses in your game when the Garbage Collection does a clean-up



Leave a comment