├── Assets ├── Res.meta ├── Res │ ├── Characters.meta │ └── Characters │ │ ├── yihu.meta │ │ └── yihu │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── yihu_body_0.asset │ │ ├── yihu_body_0.asset.meta │ │ ├── yihu_body_0.mat │ │ ├── yihu_body_0.mat.meta │ │ ├── yihu_body_0.png │ │ ├── yihu_body_0.png.meta │ │ ├── yihu_body_1.asset │ │ ├── yihu_body_1.asset.meta │ │ ├── yihu_body_1.mat │ │ ├── yihu_body_1.mat.meta │ │ ├── yihu_body_1.png │ │ ├── yihu_body_1.png.meta │ │ ├── yihu_body_2.asset │ │ ├── yihu_body_2.asset.meta │ │ ├── yihu_body_2.mat │ │ ├── yihu_body_2.mat.meta │ │ ├── yihu_body_2.png │ │ ├── yihu_body_2.png.meta │ │ ├── yihu_head_0.asset │ │ ├── yihu_head_0.asset.meta │ │ ├── yihu_head_0.mat │ │ ├── yihu_head_0.mat.meta │ │ ├── yihu_head_0.png │ │ ├── yihu_head_0.png.meta │ │ ├── yihu_weapon_0.asset │ │ ├── yihu_weapon_0.asset.meta │ │ ├── yihu_weapon_0.mat │ │ ├── yihu_weapon_0.mat.meta │ │ ├── yihu_weapon_0.tga │ │ ├── yihu_weapon_0.tga.meta │ │ ├── yihu_weapon_1.asset │ │ ├── yihu_weapon_1.asset.meta │ │ ├── yihu_weapon_1.mat │ │ ├── yihu_weapon_1.mat.meta │ │ ├── yihu_weapon_1.tga │ │ ├── yihu_weapon_1.tga.meta │ │ ├── yihu_weapon_2.asset │ │ ├── yihu_weapon_2.asset.meta │ │ ├── yihu_weapon_2.mat │ │ ├── yihu_weapon_2.mat.meta │ │ ├── yihu_weapon_2.tga │ │ └── yihu_weapon_2.tga.meta │ │ ├── yihu.prefab │ │ ├── yihu.prefab.meta │ │ ├── yihu@attack.FBX │ │ ├── yihu@attack.FBX.meta │ │ ├── yihu@dash.FBX │ │ ├── yihu@dash.FBX.meta │ │ ├── yihu@die.FBX │ │ ├── yihu@die.FBX.meta │ │ ├── yihu@dizzy.FBX │ │ ├── yihu@dizzy.FBX.meta │ │ ├── yihu@hit.FBX │ │ ├── yihu@hit.FBX.meta │ │ ├── yihu@idle.FBX │ │ ├── yihu@idle.FBX.meta │ │ ├── yihu@move.FBX │ │ ├── yihu@move.FBX.meta │ │ ├── yihu@win.FBX │ │ ├── yihu@win.FBX.meta │ │ ├── yihu_weapon_0.prefab │ │ ├── yihu_weapon_0.prefab.meta │ │ ├── yihu_weapon_1.prefab │ │ ├── yihu_weapon_1.prefab.meta │ │ ├── yihu_weapon_2.prefab │ │ └── yihu_weapon_2.prefab.meta ├── Resources.meta ├── Resources │ ├── Characters.meta │ ├── Characters │ │ ├── yihu.meta │ │ └── yihu │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── yihu_body_0.asset │ │ │ ├── yihu_body_0.asset.meta │ │ │ ├── yihu_body_0.mat │ │ │ ├── yihu_body_0.mat.meta │ │ │ ├── yihu_body_1.asset │ │ │ ├── yihu_body_1.asset.meta │ │ │ ├── yihu_body_1.mat │ │ │ ├── yihu_body_1.mat.meta │ │ │ ├── yihu_body_2.asset │ │ │ ├── yihu_body_2.asset.meta │ │ │ ├── yihu_body_2.mat │ │ │ ├── yihu_body_2.mat.meta │ │ │ ├── yihu_data.asset │ │ │ ├── yihu_data.asset.meta │ │ │ ├── yihu_head_0.asset │ │ │ ├── yihu_head_0.asset.meta │ │ │ ├── yihu_head_0.mat │ │ │ ├── yihu_head_0.mat.meta │ │ │ ├── yihu_skinning.asset │ │ │ ├── yihu_skinning.asset.meta │ │ │ ├── yihu_weapon_0.asset │ │ │ ├── yihu_weapon_0.asset.meta │ │ │ ├── yihu_weapon_0.mat │ │ │ ├── yihu_weapon_0.mat.meta │ │ │ ├── yihu_weapon_1.asset │ │ │ ├── yihu_weapon_1.asset.meta │ │ │ ├── yihu_weapon_1.mat │ │ │ ├── yihu_weapon_1.mat.meta │ │ │ ├── yihu_weapon_2.asset │ │ │ ├── yihu_weapon_2.asset.meta │ │ │ ├── yihu_weapon_2.mat │ │ │ └── yihu_weapon_2.mat.meta │ │ │ ├── yihu.prefab │ │ │ ├── yihu.prefab.meta │ │ │ ├── yihu_body_0.prefab │ │ │ ├── yihu_body_0.prefab.meta │ │ │ ├── yihu_body_1.prefab │ │ │ ├── yihu_body_1.prefab.meta │ │ │ ├── yihu_body_2.prefab │ │ │ ├── yihu_body_2.prefab.meta │ │ │ ├── yihu_head_0.prefab │ │ │ ├── yihu_head_0.prefab.meta │ │ │ ├── yihu_weapon_0.prefab │ │ │ ├── yihu_weapon_0.prefab.meta │ │ │ ├── yihu_weapon_1.prefab │ │ │ ├── yihu_weapon_1.prefab.meta │ │ │ ├── yihu_weapon_2.prefab │ │ │ └── yihu_weapon_2.prefab.meta │ ├── Shaders.meta │ └── Shaders │ │ ├── Toon_Animation.shader │ │ ├── Toon_Animation.shader.meta │ │ ├── Toon_Default.shader │ │ └── Toon_Default.shader.meta ├── Scripts.meta ├── Scripts │ ├── Editor.meta │ ├── Editor │ │ ├── GpuAnimationExporter.cs │ │ └── GpuAnimationExporter.cs.meta │ ├── GpuAnimation.cs │ ├── GpuAnimation.cs.meta │ ├── GpuAnimationClip.cs │ ├── GpuAnimationClip.cs.meta │ ├── GpuAnimationData.cs │ ├── GpuAnimationData.cs.meta │ ├── Main.cs │ └── Main.cs.meta ├── main.unity └── main.unity.meta ├── README.md └── Snapshots └── test.png /Assets/Res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res.meta -------------------------------------------------------------------------------- /Assets/Res/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.png -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_0.png.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.png -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_1.png.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.png -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_body_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_body_2.png.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.png -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_head_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_head_0.png.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.tga -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_0.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_0.tga.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.tga -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_1.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_1.tga.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.asset -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.asset.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.mat -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.mat.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.tga -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/Materials/yihu_weapon_2.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/Materials/yihu_weapon_2.tga.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu.prefab -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@attack.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@attack.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@attack.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@attack.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@dash.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@dash.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@dash.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@dash.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@die.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@die.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@die.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@die.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@dizzy.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@dizzy.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@dizzy.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@dizzy.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@hit.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@hit.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@hit.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@hit.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@idle.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@idle.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@idle.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@idle.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@move.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@move.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@move.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@move.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@win.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@win.FBX -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu@win.FBX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu@win.FBX.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_0.prefab -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_0.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_0.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_1.prefab -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_1.prefab.meta -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_2.prefab -------------------------------------------------------------------------------- /Assets/Res/Characters/yihu/yihu_weapon_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Res/Characters/yihu/yihu_weapon_2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_0.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_0.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_0.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_0.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_1.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_1.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_1.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_1.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_2.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_2.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_2.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_body_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_body_2.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_data.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_data.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_data.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_data.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_head_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_head_0.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_head_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_head_0.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_head_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_head_0.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_head_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_head_0.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_skinning.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_skinning.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_skinning.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_skinning.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_0.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_1.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.asset -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.asset.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.mat -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/Materials/yihu_weapon_2.mat.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_0.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_0.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_0.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_body_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_body_2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_head_0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_head_0.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_head_0.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_head_0.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_0.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_0.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_0.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_1.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_1.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Characters/yihu/yihu_weapon_2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Characters/yihu/yihu_weapon_2.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Shaders.meta -------------------------------------------------------------------------------- /Assets/Resources/Shaders/Toon_Animation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Shaders/Toon_Animation.shader -------------------------------------------------------------------------------- /Assets/Resources/Shaders/Toon_Animation.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Shaders/Toon_Animation.shader.meta -------------------------------------------------------------------------------- /Assets/Resources/Shaders/Toon_Default.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Shaders/Toon_Default.shader -------------------------------------------------------------------------------- /Assets/Resources/Shaders/Toon_Default.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Resources/Shaders/Toon_Default.shader.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GpuAnimationExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/Editor/GpuAnimationExporter.cs -------------------------------------------------------------------------------- /Assets/Scripts/Editor/GpuAnimationExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/Editor/GpuAnimationExporter.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/GpuAnimation.cs -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/GpuAnimation.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimationClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/GpuAnimationClip.cs -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimationClip.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3093af93ab054bca919b5afb20662ec3 3 | timeCreated: 1525233397 -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/GpuAnimationData.cs -------------------------------------------------------------------------------- /Assets/Scripts/GpuAnimationData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/GpuAnimationData.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Main.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Main:MonoBehaviour{ 4 | 5 | } 6 | -------------------------------------------------------------------------------- /Assets/Scripts/Main.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/Scripts/Main.cs.meta -------------------------------------------------------------------------------- /Assets/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/main.unity -------------------------------------------------------------------------------- /Assets/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Assets/main.unity.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/README.md -------------------------------------------------------------------------------- /Snapshots/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genechiu/GpuAnimation/HEAD/Snapshots/test.png --------------------------------------------------------------------------------