Playertest first pass

This commit is contained in:
2026-04-21 08:39:50 -05:00
parent 7c3386cf3e
commit 17c924f040
43 changed files with 1701 additions and 727 deletions
+17
View File
@@ -0,0 +1,17 @@
module('entity')
function entityInit()
entityPositionAdd(ENTITY_ID)
local phys = entityPhysicsAdd(ENTITY_ID)
phys.bodyType = PHYSICS_BODY_STATIC
phys:setShapePlane(0, 1, 0, 0)
local mesh = entityMeshAdd(ENTITY_ID)
mesh:generatePlane(20, 20)
entityMaterialAdd(ENTITY_ID)
end
function entityDispose()
end