diff options
| author | jussi | 2022-09-22 20:25:18 +0300 |
|---|---|---|
| committer | jussi | 2022-09-22 20:25:18 +0300 |
| commit | 0fad8239b626678980f7f8093c0602acbe5c817b (patch) | |
| tree | 2c6f9f3fcf0f873c89d231d512fe1c006e9f7074 /examples/dungeon_crawler | |
| parent | e5f437d05e8277861ea85e6c8d2ede32c4be32ef (diff) | |
| download | reilua-enhanced-0fad8239b626678980f7f8093c0602acbe5c817b.tar.gz reilua-enhanced-0fad8239b626678980f7f8093c0602acbe5c817b.tar.bz2 reilua-enhanced-0fad8239b626678980f7f8093c0602acbe5c817b.zip | |
v0.3.
Diffstat (limited to 'examples/dungeon_crawler')
| -rw-r--r-- | examples/dungeon_crawler/main.lua | 2 |
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 } ) |
