├── .gitattributes ├── .gitignore ├── DebugDraw3D.gd ├── DebugOverlay.gd ├── DebugOverlay.tscn ├── Level.gd ├── Level.tscn ├── Player.gd ├── Player.tscn ├── README.md ├── Roboto-Regular.ttf ├── TestMovingPlatform.gd ├── TestMovingPlatform.tscn ├── addons └── godot-git-plugin │ ├── LICENSE │ ├── THIRDPARTY.md │ ├── git_api.gdnlib │ ├── git_api.gdns │ ├── osx │ └── release │ │ └── libgitapi.dylib │ ├── plugin.cfg │ ├── win64 │ └── release │ │ ├── libgitapi.dll │ │ ├── libgitapi.exp │ │ └── libgitapi.lib │ └── x11 │ └── release │ └── libgitapi.so ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/.gitignore -------------------------------------------------------------------------------- /DebugDraw3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/DebugDraw3D.gd -------------------------------------------------------------------------------- /DebugOverlay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/DebugOverlay.gd -------------------------------------------------------------------------------- /DebugOverlay.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/DebugOverlay.tscn -------------------------------------------------------------------------------- /Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/Level.gd -------------------------------------------------------------------------------- /Level.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/Level.tscn -------------------------------------------------------------------------------- /Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/Player.gd -------------------------------------------------------------------------------- /Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/Player.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/README.md -------------------------------------------------------------------------------- /Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/Roboto-Regular.ttf -------------------------------------------------------------------------------- /TestMovingPlatform.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/TestMovingPlatform.gd -------------------------------------------------------------------------------- /TestMovingPlatform.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/TestMovingPlatform.tscn -------------------------------------------------------------------------------- /addons/godot-git-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/LICENSE -------------------------------------------------------------------------------- /addons/godot-git-plugin/THIRDPARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/THIRDPARTY.md -------------------------------------------------------------------------------- /addons/godot-git-plugin/git_api.gdnlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/git_api.gdnlib -------------------------------------------------------------------------------- /addons/godot-git-plugin/git_api.gdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/git_api.gdns -------------------------------------------------------------------------------- /addons/godot-git-plugin/osx/release/libgitapi.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/osx/release/libgitapi.dylib -------------------------------------------------------------------------------- /addons/godot-git-plugin/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/plugin.cfg -------------------------------------------------------------------------------- /addons/godot-git-plugin/win64/release/libgitapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/win64/release/libgitapi.dll -------------------------------------------------------------------------------- /addons/godot-git-plugin/win64/release/libgitapi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/win64/release/libgitapi.exp -------------------------------------------------------------------------------- /addons/godot-git-plugin/win64/release/libgitapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/win64/release/libgitapi.lib -------------------------------------------------------------------------------- /addons/godot-git-plugin/x11/release/libgitapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/addons/godot-git-plugin/x11/release/libgitapi.so -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axel37/godot-quake-movement/HEAD/project.godot --------------------------------------------------------------------------------