├── .gitignore ├── Addons └── godot-jolt │ ├── LICENSE.txt │ ├── THIRDPARTY.txt │ ├── android │ ├── libgodot-jolt_android-arm32.so │ ├── libgodot-jolt_android-arm32_editor.so │ ├── libgodot-jolt_android-arm64.so │ ├── libgodot-jolt_android-arm64_editor.so │ ├── libgodot-jolt_android-x64.so │ ├── libgodot-jolt_android-x64_editor.so │ ├── libgodot-jolt_android-x86.so │ └── libgodot-jolt_android-x86_editor.so │ ├── godot-jolt.gdextension │ ├── ios │ ├── godot-jolt_ios.framework │ │ ├── Info.plist │ │ └── godot-jolt_ios │ └── godot-jolt_ios_editor.framework │ │ ├── Info.plist │ │ └── godot-jolt_ios_editor │ ├── 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 ├── Assets ├── hdris │ ├── kloofendal_48d_partly_cloudy_puresky_2k.hdr │ └── kloofendal_48d_partly_cloudy_puresky_2k.hdr.import ├── icons │ ├── Stair-stepping Demo (Smooth).png │ └── Stair-stepping Demo (Smooth).png.import └── textures │ ├── Grid Dark │ ├── texture_01.png │ ├── texture_01.png.import │ ├── texture_02.png │ ├── texture_02.png.import │ ├── texture_03.png │ ├── texture_03.png.import │ ├── texture_04.png │ ├── texture_04.png.import │ ├── texture_05.png │ ├── texture_05.png.import │ ├── texture_06.png │ ├── texture_06.png.import │ ├── texture_07.png │ ├── texture_07.png.import │ ├── texture_08.png │ ├── texture_08.png.import │ ├── texture_09.png │ ├── texture_09.png.import │ ├── texture_10.png │ ├── texture_10.png.import │ ├── texture_11.png │ ├── texture_11.png.import │ ├── texture_12.png │ ├── texture_12.png.import │ ├── texture_13.png │ └── texture_13.png.import │ ├── Grid Orange │ ├── texture_01.png │ ├── texture_01.png.import │ ├── texture_02.png │ ├── texture_02.png.import │ ├── texture_03.png │ ├── texture_03.png.import │ ├── texture_04.png │ ├── texture_04.png.import │ ├── texture_05.png │ ├── texture_05.png.import │ ├── texture_06.png │ ├── texture_06.png.import │ ├── texture_07.png │ ├── texture_07.png.import │ ├── texture_08.png │ ├── texture_08.png.import │ ├── texture_09.png │ ├── texture_09.png.import │ ├── texture_10.png │ ├── texture_10.png.import │ ├── texture_11.png │ ├── texture_11.png.import │ ├── texture_12.png │ ├── texture_12.png.import │ ├── texture_13.png │ └── texture_13.png.import │ ├── GridDarkTile.tres │ └── GridOrangeTile.tres ├── LICENSE ├── README.md ├── Scenes ├── plaAF9D.tmp ├── player_character.tscn └── test_map.tscn ├── Scripts └── player_character.gd └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Addons/godot-jolt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/LICENSE.txt -------------------------------------------------------------------------------- /Addons/godot-jolt/THIRDPARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/THIRDPARTY.txt -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-arm32.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-arm32_editor.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-arm64.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-arm64_editor.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-x64.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-x64_editor.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-x86.so -------------------------------------------------------------------------------- /Addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/android/libgodot-jolt_android-x86_editor.so -------------------------------------------------------------------------------- /Addons/godot-jolt/godot-jolt.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/godot-jolt.gdextension -------------------------------------------------------------------------------- /Addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/ios/godot-jolt_ios.framework/Info.plist -------------------------------------------------------------------------------- /Addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/ios/godot-jolt_ios.framework/godot-jolt_ios -------------------------------------------------------------------------------- /Addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/ios/godot-jolt_ios_editor.framework/Info.plist -------------------------------------------------------------------------------- /Addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/ios/godot-jolt_ios_editor.framework/godot-jolt_ios_editor -------------------------------------------------------------------------------- /Addons/godot-jolt/linux/godot-jolt_linux-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/linux/godot-jolt_linux-x64.so -------------------------------------------------------------------------------- /Addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/linux/godot-jolt_linux-x64_editor.so -------------------------------------------------------------------------------- /Addons/godot-jolt/linux/godot-jolt_linux-x86.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/linux/godot-jolt_linux-x86.so -------------------------------------------------------------------------------- /Addons/godot-jolt/linux/godot-jolt_linux-x86_editor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/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/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/windows/godot-jolt_windows-x64.dll -------------------------------------------------------------------------------- /Addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/windows/godot-jolt_windows-x64_editor.dll -------------------------------------------------------------------------------- /Addons/godot-jolt/windows/godot-jolt_windows-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/windows/godot-jolt_windows-x86.dll -------------------------------------------------------------------------------- /Addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Addons/godot-jolt/windows/godot-jolt_windows-x86_editor.dll -------------------------------------------------------------------------------- /Assets/hdris/kloofendal_48d_partly_cloudy_puresky_2k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/hdris/kloofendal_48d_partly_cloudy_puresky_2k.hdr -------------------------------------------------------------------------------- /Assets/hdris/kloofendal_48d_partly_cloudy_puresky_2k.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/hdris/kloofendal_48d_partly_cloudy_puresky_2k.hdr.import -------------------------------------------------------------------------------- /Assets/icons/Stair-stepping Demo (Smooth).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/icons/Stair-stepping Demo (Smooth).png -------------------------------------------------------------------------------- /Assets/icons/Stair-stepping Demo (Smooth).png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/icons/Stair-stepping Demo (Smooth).png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_01.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_01.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_02.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_02.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_03.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_03.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_03.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_04.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_04.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_05.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_05.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_06.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_06.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_07.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_07.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_07.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_08.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_08.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_08.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_09.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_09.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_09.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_10.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_10.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_10.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_11.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_11.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_11.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_12.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_12.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_12.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_13.png -------------------------------------------------------------------------------- /Assets/textures/Grid Dark/texture_13.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Dark/texture_13.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_01.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_01.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_02.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_02.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_03.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_03.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_03.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_04.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_04.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_05.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_05.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_06.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_06.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_07.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_07.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_07.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_08.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_08.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_08.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_09.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_09.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_09.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_10.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_10.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_10.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_11.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_11.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_11.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_12.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_12.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_12.png.import -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_13.png -------------------------------------------------------------------------------- /Assets/textures/Grid Orange/texture_13.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/Grid Orange/texture_13.png.import -------------------------------------------------------------------------------- /Assets/textures/GridDarkTile.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/GridDarkTile.tres -------------------------------------------------------------------------------- /Assets/textures/GridOrangeTile.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Assets/textures/GridOrangeTile.tres -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/README.md -------------------------------------------------------------------------------- /Scenes/plaAF9D.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Scenes/plaAF9D.tmp -------------------------------------------------------------------------------- /Scenes/player_character.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Scenes/player_character.tscn -------------------------------------------------------------------------------- /Scenes/test_map.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Scenes/test_map.tscn -------------------------------------------------------------------------------- /Scripts/player_character.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/Scripts/player_character.gd -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelpysama/Godot-Stair-Step-Demo/HEAD/project.godot --------------------------------------------------------------------------------