├── .gitattributes ├── README.md ├── player └── model │ ├── AO_Texture.png │ ├── Colapelo.blend │ ├── Face_AO_Texture.png │ ├── Face_Normal_Texture.png │ ├── HAIRSTRANDS.blend │ ├── Hammer_AO_Texture.png │ ├── Hammer_Texture_Normal.png │ ├── Normal_Texture.png │ ├── Skin_AO_Texture.png │ ├── Skin_Normal_Texture.png │ ├── mousse.blend │ ├── mousse.blend1 │ ├── moussemodel.blend │ └── moussemodel3.blend └── testlevel └── testlevel.blend /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | work in progress -------------------------------------------------------------------------------- /player/model/AO_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/AO_Texture.png -------------------------------------------------------------------------------- /player/model/Colapelo.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Colapelo.blend -------------------------------------------------------------------------------- /player/model/Face_AO_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Face_AO_Texture.png -------------------------------------------------------------------------------- /player/model/Face_Normal_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Face_Normal_Texture.png -------------------------------------------------------------------------------- /player/model/HAIRSTRANDS.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/HAIRSTRANDS.blend -------------------------------------------------------------------------------- /player/model/Hammer_AO_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Hammer_AO_Texture.png -------------------------------------------------------------------------------- /player/model/Hammer_Texture_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Hammer_Texture_Normal.png -------------------------------------------------------------------------------- /player/model/Normal_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Normal_Texture.png -------------------------------------------------------------------------------- /player/model/Skin_AO_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Skin_AO_Texture.png -------------------------------------------------------------------------------- /player/model/Skin_Normal_Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/Skin_Normal_Texture.png -------------------------------------------------------------------------------- /player/model/mousse.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/mousse.blend -------------------------------------------------------------------------------- /player/model/mousse.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/mousse.blend1 -------------------------------------------------------------------------------- /player/model/moussemodel.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/moussemodel.blend -------------------------------------------------------------------------------- /player/model/moussemodel3.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/player/model/moussemodel3.blend -------------------------------------------------------------------------------- /testlevel/testlevel.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godotengine/godot-3d-platformer-demo/HEAD/testlevel/testlevel.blend --------------------------------------------------------------------------------