Slime-Simulation
Slime-Simulation copied to clipboard
Write a detailed step-by-step guide to help a beginner run this project on his/her local machine. - [ ] Step by Step guide for easy installation with links to the...
I loaded up the project in unity, opened the slime scene, and pressed run. Black screen. I've messed around with some settings in hopes of getting it to work but...
Running the compile shader code from the update() instead of fixedupdate makes a big performance improvement.
What have I done, to come to this conclusion: 1. Make all the Trail Maps public and visible in the Inspector  2. Disable the copy method  3. Look...
Ok so now that I have the code running... I notice that for Settings, only D seems to affect the simulation - I could have 250k agents in A, B,...
Instead of `Update` both reading and writing from `TrailMap`, it now reads from `DiffusedTrailMap` and writes to `TrailMap`. This seems to avoid concurrency issues because it fixes https://github.com/SebLague/Slime-Simulation/issues/2 (at least...