├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── godot_vat │ ├── VATMultiMeshInstance3D.svg │ ├── VATMultiMeshInstance3D.svg.import │ ├── godot_vat.gd │ ├── godot_vat.gd.uid │ ├── plugin.cfg │ ├── shaders │ ├── vat_multiple_anims.gdshader │ └── vat_multiple_anims.gdshader.uid │ ├── vat_multi_mesh_instance_3d.gd │ └── vat_multi_mesh_instance_3d.gd.uid ├── antz_512.png ├── antz_512.png.import ├── demo ├── AlphaTest.tscn ├── MultipleAnimations.tscn ├── alpha_test.gd ├── alpha_test.gd.uid ├── assets │ ├── images │ │ ├── AntzBanner1.png │ │ ├── AntzBanner1.png.import │ │ ├── texture_01.png │ │ └── texture_01.png.import │ └── models │ │ ├── skel_merged_Tracks.blend │ │ ├── skeleton_export.glb │ │ ├── skeleton_export.glb.import │ │ ├── skeleton_export_mesh.res │ │ ├── skeleton_normals.png │ │ ├── skeleton_normals.png.import │ │ ├── skeleton_offsets.exr │ │ ├── skeleton_offsets.exr.import │ │ ├── skeleton_texture.png │ │ └── skeleton_texture.png.import ├── multiple_animations.gd └── multiple_animations.gd.uid └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/README.md -------------------------------------------------------------------------------- /addons/godot_vat/VATMultiMeshInstance3D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/VATMultiMeshInstance3D.svg -------------------------------------------------------------------------------- /addons/godot_vat/VATMultiMeshInstance3D.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/VATMultiMeshInstance3D.svg.import -------------------------------------------------------------------------------- /addons/godot_vat/godot_vat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/godot_vat.gd -------------------------------------------------------------------------------- /addons/godot_vat/godot_vat.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bw611yb31nx71 2 | -------------------------------------------------------------------------------- /addons/godot_vat/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/plugin.cfg -------------------------------------------------------------------------------- /addons/godot_vat/shaders/vat_multiple_anims.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/shaders/vat_multiple_anims.gdshader -------------------------------------------------------------------------------- /addons/godot_vat/shaders/vat_multiple_anims.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://bvppykyi3ougu 2 | -------------------------------------------------------------------------------- /addons/godot_vat/vat_multi_mesh_instance_3d.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/addons/godot_vat/vat_multi_mesh_instance_3d.gd -------------------------------------------------------------------------------- /addons/godot_vat/vat_multi_mesh_instance_3d.gd.uid: -------------------------------------------------------------------------------- 1 | uid://damlqeu0m6ksk 2 | -------------------------------------------------------------------------------- /antz_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/antz_512.png -------------------------------------------------------------------------------- /antz_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/antz_512.png.import -------------------------------------------------------------------------------- /demo/AlphaTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/AlphaTest.tscn -------------------------------------------------------------------------------- /demo/MultipleAnimations.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/MultipleAnimations.tscn -------------------------------------------------------------------------------- /demo/alpha_test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/alpha_test.gd -------------------------------------------------------------------------------- /demo/alpha_test.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c08yo2clqj1sy 2 | -------------------------------------------------------------------------------- /demo/assets/images/AntzBanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/images/AntzBanner1.png -------------------------------------------------------------------------------- /demo/assets/images/AntzBanner1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/images/AntzBanner1.png.import -------------------------------------------------------------------------------- /demo/assets/images/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/images/texture_01.png -------------------------------------------------------------------------------- /demo/assets/images/texture_01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/images/texture_01.png.import -------------------------------------------------------------------------------- /demo/assets/models/skel_merged_Tracks.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skel_merged_Tracks.blend -------------------------------------------------------------------------------- /demo/assets/models/skeleton_export.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_export.glb -------------------------------------------------------------------------------- /demo/assets/models/skeleton_export.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_export.glb.import -------------------------------------------------------------------------------- /demo/assets/models/skeleton_export_mesh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_export_mesh.res -------------------------------------------------------------------------------- /demo/assets/models/skeleton_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_normals.png -------------------------------------------------------------------------------- /demo/assets/models/skeleton_normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_normals.png.import -------------------------------------------------------------------------------- /demo/assets/models/skeleton_offsets.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_offsets.exr -------------------------------------------------------------------------------- /demo/assets/models/skeleton_offsets.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_offsets.exr.import -------------------------------------------------------------------------------- /demo/assets/models/skeleton_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_texture.png -------------------------------------------------------------------------------- /demo/assets/models/skeleton_texture.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/assets/models/skeleton_texture.png.import -------------------------------------------------------------------------------- /demo/multiple_animations.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/demo/multiple_animations.gd -------------------------------------------------------------------------------- /demo/multiple_animations.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cxl7wmmuvbhox 2 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antzGames/Godot_Vertex_Animation_Textures_Plugin/HEAD/project.godot --------------------------------------------------------------------------------