Nick
Nick
BFBF is a brainfuck binary format which encodes brainfuck into a tiny size. FBFBF is the formatted version of the above which still saves space but allows room for indentation...
Components are undocumented. I will most likely write docs for them soon :D I plan to use two examples, one of a simple text component with a colour and text...
Add an option to render all scenes into individual folders so we can render the videos with a script using ffmpeg instead of counting frames or splitting a video.
## GetComponent Unity's `GetComponent()` function is very expensive. You should cache the Rigidbody as such: ```c# private Rigidbody rb; private void Start() { rb = GetComponent(); } ``` Ideally you...