├── .gitignore ├── LICENSE ├── Physics └── player.tres ├── README.md ├── Scenes ├── cuberb.gd └── scene1.tscn ├── Scripts ├── Draw3D.gd ├── DrawLine3D.gd └── draw.gd ├── Textures ├── TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png ├── TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png.import ├── TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png └── TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png.import ├── addons └── godot-jolt │ ├── LICENSE.txt │ ├── THIRDPARTY.txt │ ├── godot-jolt.gdextension │ ├── linux │ ├── godot-jolt_linux-x64.so │ ├── godot-jolt_linux-x64_editor.so │ ├── godot-jolt_linux-x86.so │ └── godot-jolt_linux-x86_editor.so │ ├── macos │ ├── godot-jolt_macos.framework │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ └── godot-jolt_macos │ └── godot-jolt_macos_editor.framework │ │ ├── Resources │ │ └── Info.plist │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── godot-jolt_macos_editor │ └── windows │ ├── godot-jolt_windows-x64.dll │ ├── godot-jolt_windows-x64_editor.dll │ ├── godot-jolt_windows-x86.dll │ └── godot-jolt_windows-x86_editor.dll ├── default_env.tres ├── icon.png ├── icon.png.import ├── move.gd └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/LICENSE -------------------------------------------------------------------------------- /Physics/player.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Physics/player.tres -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/README.md -------------------------------------------------------------------------------- /Scenes/cuberb.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Scenes/cuberb.gd -------------------------------------------------------------------------------- /Scenes/scene1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Scenes/scene1.tscn -------------------------------------------------------------------------------- /Scripts/Draw3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Scripts/Draw3D.gd -------------------------------------------------------------------------------- /Scripts/DrawLine3D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Scripts/DrawLine3D.gd -------------------------------------------------------------------------------- /Scripts/draw.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Scripts/draw.gd -------------------------------------------------------------------------------- /Textures/TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Textures/TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png -------------------------------------------------------------------------------- /Textures/TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Textures/TexturesCom_Pavement_CobblestoneMossy01_2x2_1K_albedo.png.import -------------------------------------------------------------------------------- /Textures/TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Textures/TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png -------------------------------------------------------------------------------- /Textures/TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/Textures/TexturesCom_RoughWoodPlanks_2x2_1K_albedo.png.import -------------------------------------------------------------------------------- /addons/godot-jolt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/LICENSE.txt -------------------------------------------------------------------------------- /addons/godot-jolt/THIRDPARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/THIRDPARTY.txt -------------------------------------------------------------------------------- /addons/godot-jolt/godot-jolt.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/godot-jolt.gdextension -------------------------------------------------------------------------------- /addons/godot-jolt/linux/godot-jolt_linux-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/linux/godot-jolt_linux-x64.so -------------------------------------------------------------------------------- /addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so -------------------------------------------------------------------------------- /addons/godot-jolt/linux/godot-jolt_linux-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/linux/godot-jolt_linux-x86.so -------------------------------------------------------------------------------- /addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos.framework/Resources/Info.plist -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos.framework/godot-jolt_macos -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/Resources/Info.plist -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/macos/godot-jolt_macos_editor.framework/godot-jolt_macos_editor -------------------------------------------------------------------------------- /addons/godot-jolt/windows/godot-jolt_windows-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/windows/godot-jolt_windows-x64.dll -------------------------------------------------------------------------------- /addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll -------------------------------------------------------------------------------- /addons/godot-jolt/windows/godot-jolt_windows-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/windows/godot-jolt_windows-x86.dll -------------------------------------------------------------------------------- /addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/icon.png.import -------------------------------------------------------------------------------- /move.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/move.gd -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeFlyFall/RigidBodyController/HEAD/project.godot --------------------------------------------------------------------------------