├── .gitignore ├── Castle.tscn ├── Clapper.tscn ├── Clappers.gd ├── Clappers.tscn ├── IceShards.tscn ├── LICENSE ├── README.md ├── assets ├── castle │ ├── albedo.png │ ├── albedo.png.import │ ├── castle.glb │ ├── castle.glb.import │ ├── export_mesh.mesh │ ├── normals.png │ ├── normals.png.import │ ├── offsets.exr │ └── offsets.exr.import ├── characterMedium │ ├── albedo.png │ ├── albedo.png.import │ ├── characterMedium.glb │ ├── characterMedium.glb.import │ ├── export_mesh.mesh │ ├── normals.png │ ├── normals.png.import │ ├── offsets.exr │ ├── offsets.exr.import │ ├── palette.png │ ├── palette.png.import │ ├── tintmask.png │ └── tintmask.png.import ├── iceshard │ ├── albedo.png │ ├── albedo.png.import │ ├── export_mesh.mesh │ ├── iceshard.glb │ ├── iceshard.glb.import │ ├── normals.png │ ├── normals.png.import │ ├── offsets.exr │ └── offsets.exr.import └── seats │ ├── chair.material │ ├── concrete.material │ ├── seats.glb │ └── seats.glb.import ├── clappers_env.tres ├── default_env.tres ├── icon.png ├── icon.png.import ├── materials ├── castle_shadermaterial.tres ├── clapper_shadermaterial.tres ├── clappers_shadermaterial.tres ├── iceshards_particlematerial.tres └── iceshards_shadermaterial.tres └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Castle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/Castle.tscn -------------------------------------------------------------------------------- /Clapper.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/Clapper.tscn -------------------------------------------------------------------------------- /Clappers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/Clappers.gd -------------------------------------------------------------------------------- /Clappers.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/Clappers.tscn -------------------------------------------------------------------------------- /IceShards.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/IceShards.tscn -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/README.md -------------------------------------------------------------------------------- /assets/castle/albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/albedo.png -------------------------------------------------------------------------------- /assets/castle/albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/albedo.png.import -------------------------------------------------------------------------------- /assets/castle/castle.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/castle.glb -------------------------------------------------------------------------------- /assets/castle/castle.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/castle.glb.import -------------------------------------------------------------------------------- /assets/castle/export_mesh.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/export_mesh.mesh -------------------------------------------------------------------------------- /assets/castle/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/normals.png -------------------------------------------------------------------------------- /assets/castle/normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/normals.png.import -------------------------------------------------------------------------------- /assets/castle/offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/offsets.exr -------------------------------------------------------------------------------- /assets/castle/offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/castle/offsets.exr.import -------------------------------------------------------------------------------- /assets/characterMedium/albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/albedo.png -------------------------------------------------------------------------------- /assets/characterMedium/albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/albedo.png.import -------------------------------------------------------------------------------- /assets/characterMedium/characterMedium.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/characterMedium.glb -------------------------------------------------------------------------------- /assets/characterMedium/characterMedium.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/characterMedium.glb.import -------------------------------------------------------------------------------- /assets/characterMedium/export_mesh.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/export_mesh.mesh -------------------------------------------------------------------------------- /assets/characterMedium/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/normals.png -------------------------------------------------------------------------------- /assets/characterMedium/normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/normals.png.import -------------------------------------------------------------------------------- /assets/characterMedium/offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/offsets.exr -------------------------------------------------------------------------------- /assets/characterMedium/offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/offsets.exr.import -------------------------------------------------------------------------------- /assets/characterMedium/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/palette.png -------------------------------------------------------------------------------- /assets/characterMedium/palette.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/palette.png.import -------------------------------------------------------------------------------- /assets/characterMedium/tintmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/tintmask.png -------------------------------------------------------------------------------- /assets/characterMedium/tintmask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/characterMedium/tintmask.png.import -------------------------------------------------------------------------------- /assets/iceshard/albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/albedo.png -------------------------------------------------------------------------------- /assets/iceshard/albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/albedo.png.import -------------------------------------------------------------------------------- /assets/iceshard/export_mesh.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/export_mesh.mesh -------------------------------------------------------------------------------- /assets/iceshard/iceshard.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/iceshard.glb -------------------------------------------------------------------------------- /assets/iceshard/iceshard.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/iceshard.glb.import -------------------------------------------------------------------------------- /assets/iceshard/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/normals.png -------------------------------------------------------------------------------- /assets/iceshard/normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/normals.png.import -------------------------------------------------------------------------------- /assets/iceshard/offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/offsets.exr -------------------------------------------------------------------------------- /assets/iceshard/offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/iceshard/offsets.exr.import -------------------------------------------------------------------------------- /assets/seats/chair.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/seats/chair.material -------------------------------------------------------------------------------- /assets/seats/concrete.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/seats/concrete.material -------------------------------------------------------------------------------- /assets/seats/seats.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/seats/seats.glb -------------------------------------------------------------------------------- /assets/seats/seats.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/assets/seats/seats.glb.import -------------------------------------------------------------------------------- /clappers_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/clappers_env.tres -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/icon.png.import -------------------------------------------------------------------------------- /materials/castle_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/materials/castle_shadermaterial.tres -------------------------------------------------------------------------------- /materials/clapper_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/materials/clapper_shadermaterial.tres -------------------------------------------------------------------------------- /materials/clappers_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/materials/clappers_shadermaterial.tres -------------------------------------------------------------------------------- /materials/iceshards_particlematerial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/materials/iceshards_particlematerial.tres -------------------------------------------------------------------------------- /materials/iceshards_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/materials/iceshards_shadermaterial.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/Godot-VertexAnimation-Demo/HEAD/project.godot --------------------------------------------------------------------------------