Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Tobogganeer

1
Posts
A member registered Jun 28, 2020 · View creator page →

Creator of

Recent community posts

There is a memory leak in your moving platform Gizmo code - you never destroy the dynamically created mesh (colMesh). This leads to an error about running out of resourceIDs when leaving the editor open for a while (you are creating hundreds of thousands of meshes, one for each platform in the scene every time gizmos are drawn). Fix this by destroying the mesh or caching it for each moving platform.


Fixed: