2025-05-18
Had a problem where the whole project would lag down. This was caused by newMeshes being created every frame for every visable note. Instead we create the meshes once and use them in static mode. This helped with performance alot.note.mesh = lg.newMesh(#note*2,'strip','static') -- vs 'dynamic'
i like this loop