To view this content, you must be a member of Terresquall's Patreon at $5 or more
Already a qualifying Patreon member? Refresh to access this content.
If you are running a small business and currently using a @gmail.com address, check out our new Virtual Email Hosting service. It maps a custom email address onto your existing Gmail mailbox, so you get to send and receive emails using the new address whilst keeping the same Gmail mailbox — no migrations needed.
Page content continues below:
To fix an issue where pickups are stuck in the scene after play mode is disabled, you should edit DropRateManager.OnDestroy by adding this at the top of the function:
if(!gameObject.scene.isLoaded)
return;
This will prevent it from spawning drops when the game is being unloaded.
Hi Jamie, thank you for the excellent suggestion. I will definitely be implementing this in the coming tutorials.