├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── debug_menu │ ├── LICENSE.md │ ├── debug_menu.gd │ ├── debug_menu.tscn │ ├── plugin.cfg │ └── plugin.gd ├── antz_512.png ├── antz_512.png.import ├── assets ├── 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 ├── mage │ ├── export-mesh.res │ ├── mage.blend │ ├── mage.glb │ ├── mage.glb.import │ ├── normals.png │ ├── normals.png.import │ ├── offsets.exr │ ├── offsets.exr.import │ ├── texture0.png │ └── texture0.png.import └── seats │ ├── chair.material │ ├── concrete.material │ ├── seats.glb │ └── seats.glb.import ├── default_env.tres ├── export_presets.cfg ├── materials ├── clappers_shadermaterial.tres └── mage_shadermaterial.tres ├── project.godot └── scenes ├── Clappers.gd ├── Clappers.tscn ├── mage.gd └── mage.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot-specific ignores 2 | /.godot 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/README.md -------------------------------------------------------------------------------- /addons/debug_menu/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/addons/debug_menu/LICENSE.md -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/addons/debug_menu/debug_menu.gd -------------------------------------------------------------------------------- /addons/debug_menu/debug_menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/addons/debug_menu/debug_menu.tscn -------------------------------------------------------------------------------- /addons/debug_menu/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/addons/debug_menu/plugin.cfg -------------------------------------------------------------------------------- /addons/debug_menu/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/addons/debug_menu/plugin.gd -------------------------------------------------------------------------------- /antz_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/antz_512.png -------------------------------------------------------------------------------- /antz_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/antz_512.png.import -------------------------------------------------------------------------------- /assets/characterMedium/albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/albedo.png -------------------------------------------------------------------------------- /assets/characterMedium/albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/albedo.png.import -------------------------------------------------------------------------------- /assets/characterMedium/characterMedium.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/characterMedium.glb -------------------------------------------------------------------------------- /assets/characterMedium/characterMedium.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/characterMedium.glb.import -------------------------------------------------------------------------------- /assets/characterMedium/export_mesh.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/export_mesh.mesh -------------------------------------------------------------------------------- /assets/characterMedium/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/normals.png -------------------------------------------------------------------------------- /assets/characterMedium/normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/normals.png.import -------------------------------------------------------------------------------- /assets/characterMedium/offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/offsets.exr -------------------------------------------------------------------------------- /assets/characterMedium/offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/offsets.exr.import -------------------------------------------------------------------------------- /assets/characterMedium/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/palette.png -------------------------------------------------------------------------------- /assets/characterMedium/palette.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/palette.png.import -------------------------------------------------------------------------------- /assets/characterMedium/tintmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/tintmask.png -------------------------------------------------------------------------------- /assets/characterMedium/tintmask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/characterMedium/tintmask.png.import -------------------------------------------------------------------------------- /assets/mage/export-mesh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/export-mesh.res -------------------------------------------------------------------------------- /assets/mage/mage.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/mage.blend -------------------------------------------------------------------------------- /assets/mage/mage.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/mage.glb -------------------------------------------------------------------------------- /assets/mage/mage.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/mage.glb.import -------------------------------------------------------------------------------- /assets/mage/normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/normals.png -------------------------------------------------------------------------------- /assets/mage/normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/normals.png.import -------------------------------------------------------------------------------- /assets/mage/offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/offsets.exr -------------------------------------------------------------------------------- /assets/mage/offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/offsets.exr.import -------------------------------------------------------------------------------- /assets/mage/texture0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/texture0.png -------------------------------------------------------------------------------- /assets/mage/texture0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/mage/texture0.png.import -------------------------------------------------------------------------------- /assets/seats/chair.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/seats/chair.material -------------------------------------------------------------------------------- /assets/seats/concrete.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/seats/concrete.material -------------------------------------------------------------------------------- /assets/seats/seats.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/seats/seats.glb -------------------------------------------------------------------------------- /assets/seats/seats.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/assets/seats/seats.glb.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/default_env.tres -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /materials/clappers_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/materials/clappers_shadermaterial.tres -------------------------------------------------------------------------------- /materials/mage_shadermaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/materials/mage_shadermaterial.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/Clappers.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/scenes/Clappers.gd -------------------------------------------------------------------------------- /scenes/Clappers.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/scenes/Clappers.tscn -------------------------------------------------------------------------------- /scenes/mage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/scenes/mage.gd -------------------------------------------------------------------------------- /scenes/mage.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot-4.3-Vertex-Animation-Instancing-Demo/HEAD/scenes/mage.tscn --------------------------------------------------------------------------------