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: