├── .gitignore ├── NOTES ├── README.md ├── backup └── geo3d.lua ├── ents.lua ├── exportcart.sh ├── fps80.tic ├── game.lua ├── globs.lua ├── level.lua ├── meta.lua ├── minimap.lua ├── rend.lua ├── s3.lua ├── screenshots └── basic.png ├── tic80sync.sh ├── util.lua └── watch_go.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | out.lua 3 | tic.exe 4 | 5 | -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/README.md -------------------------------------------------------------------------------- /backup/geo3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/backup/geo3d.lua -------------------------------------------------------------------------------- /ents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/ents.lua -------------------------------------------------------------------------------- /exportcart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/exportcart.sh -------------------------------------------------------------------------------- /fps80.tic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/fps80.tic -------------------------------------------------------------------------------- /game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/game.lua -------------------------------------------------------------------------------- /globs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/globs.lua -------------------------------------------------------------------------------- /level.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/level.lua -------------------------------------------------------------------------------- /meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/meta.lua -------------------------------------------------------------------------------- /minimap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/minimap.lua -------------------------------------------------------------------------------- /rend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/rend.lua -------------------------------------------------------------------------------- /s3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/s3.lua -------------------------------------------------------------------------------- /screenshots/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/screenshots/basic.png -------------------------------------------------------------------------------- /tic80sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/tic80sync.sh -------------------------------------------------------------------------------- /util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/util.lua -------------------------------------------------------------------------------- /watch_go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btco/ticgeo3d/HEAD/watch_go.sh --------------------------------------------------------------------------------