summaryrefslogtreecommitdiff
path: root/examples/dungeon_crawler/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dungeon_crawler/main.lua')
-rw-r--r--examples/dungeon_crawler/main.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/dungeon_crawler/main.lua b/examples/dungeon_crawler/main.lua
index 070eb97..9465ed3 100644
--- a/examples/dungeon_crawler/main.lua
+++ b/examples/dungeon_crawler/main.lua
@@ -2,7 +2,6 @@ local pos = { 2, 0.5, 6 }
local speed = 5.0
local camera = -1
local texture = -1
-local mesh = -1
local textureSize = { 256, 96 }
local res = { 384, 216 }
local winSize = RL_GetWindowSize()
@@ -79,7 +78,6 @@ function init()
texture = RL_LoadTexture( RL_GetBasePath().."../resources/images/tiles.png" )
camera = RL_CreateCamera3D()
- mesh = RL_GenMeshCube( { 1, 2, 1 } )
RL_SetCamera3DPosition( camera, pos )
RL_SetCamera3DTarget( camera, { 0, 0, 0 } )
RL_SetCamera3DUp( camera, { 0, 1, 0 } )