├── .gitignore ├── Addon.meta ├── Example.meta ├── Example ├── Animated Character 1.meta ├── Animated Character 1 │ ├── auto.meta │ ├── auto │ │ ├── characterMediumDataPlayer.mat │ │ ├── characterMediumDataPlayer.mat.meta │ │ ├── characterMediumDataPlayer.mesh │ │ ├── characterMediumDataPlayer.mesh.meta │ │ ├── characterMediumPlayer.mat │ │ ├── characterMediumPlayer.mat.meta │ │ ├── characterMediumPlayer.mesh │ │ ├── characterMediumPlayer.mesh.meta │ │ ├── characterMediumRecorder.mesh │ │ └── characterMediumRecorder.mesh.meta │ ├── characterMedium.fbx │ ├── characterMedium.fbx.meta │ ├── skin.mat │ ├── skin.mat.meta │ ├── survivorMaleB.png │ └── survivorMaleB.png.meta ├── Example.unity ├── Example.unity.meta ├── Material.meta ├── Material │ ├── Motion.mat │ ├── Motion.mat.meta │ ├── Unlit.mat │ ├── Unlit.mat.meta │ ├── UnlitGamma.mat │ └── UnlitGamma.mat.meta ├── Motion.meta └── Motion │ ├── FancyFeet.mp4 │ ├── FancyFeet.mp4.meta │ ├── Floss.mp4 │ ├── Floss.mp4.meta │ ├── Run.controller │ ├── Run.controller.meta │ ├── run.fbx │ └── run.fbx.meta ├── GameView.png ├── LICENSE.txt ├── LICENSE.txt.meta ├── Material.meta ├── Material ├── Motion.renderTexture ├── Motion.renderTexture.meta ├── MotionDec.asset ├── MotionDec.asset.meta ├── MotionDec.mat ├── MotionDec.mat.meta ├── Resources.meta └── Resources │ ├── DataPlayer.mat │ ├── DataPlayer.mat.meta │ ├── MeshPlayer.mat │ ├── MeshPlayer.mat.meta │ ├── MeshRecorder.mat │ ├── MeshRecorder.mat.meta │ ├── MeshRecorderInst.mat │ └── MeshRecorderInst.mat.meta ├── README.md ├── README.md.meta ├── Script.meta ├── Script ├── Common.meta ├── Common │ ├── GPUReader.cs │ ├── GPUReader.cs.meta │ ├── HumanAxes.cs │ ├── HumanAxes.cs.meta │ ├── HumanPoser.cs │ ├── HumanPoser.cs.meta │ ├── MeshPlayerGen.cs │ ├── MeshPlayerGen.cs.meta │ ├── MeshRecorderGen.cs │ ├── MeshRecorderGen.cs.meta │ ├── MeshUtil.cs │ ├── MeshUtil.cs.meta │ ├── Morph.cs │ ├── Morph.cs.meta │ ├── MotionDecoder.cs │ ├── MotionDecoder.cs.meta │ ├── MotionLayout.cs │ ├── MotionLayout.cs.meta │ ├── ShaderImpl.cs │ ├── ShaderImpl.cs.meta │ ├── Skeleton.cs │ └── Skeleton.cs.meta ├── Editor.meta ├── Editor │ ├── AnimRecorder.cs │ ├── AnimRecorder.cs.meta │ ├── MeshPlayer.cs │ ├── MeshPlayer.cs.meta │ ├── MeshRecorder.cs │ ├── MeshRecorder.cs.meta │ ├── MorphSettingsEditor.cs │ ├── MorphSettingsEditor.cs.meta │ ├── ShaderMotion.Editor.asmdef │ └── ShaderMotion.Editor.asmdef.meta ├── Runtime.meta ├── Runtime │ ├── MorphSettings.cs │ ├── MorphSettings.cs.meta │ ├── MotionPlayer.cs │ └── MotionPlayer.cs.meta ├── ShaderMotion.asmdef └── ShaderMotion.asmdef.meta ├── Shader.meta ├── Shader ├── Codec.hlsl ├── Codec.hlsl.meta ├── DataPlayer.shader ├── DataPlayer.shader.meta ├── MeshPlayer.hlsl ├── MeshPlayer.hlsl.meta ├── MeshPlayer.shader ├── MeshPlayer.shader.meta ├── MeshRecorder.hlsl ├── MeshRecorder.hlsl.meta ├── MeshRecorder.shader ├── MeshRecorder.shader.meta ├── MeshRecorderInst.shader ├── MeshRecorderInst.shader.meta ├── Rotation.hlsl ├── Rotation.hlsl.meta ├── Skinning.hlsl ├── Skinning.hlsl.meta ├── UnlitGamma.shader ├── UnlitGamma.shader.meta ├── VideoDecoder.shader ├── VideoDecoder.shader.meta ├── VideoLayout.hlsl └── VideoLayout.hlsl.meta ├── VRC_Avatar_Addon.meta ├── VRC_Avatar_Addon ├── Animation.meta ├── Animation │ ├── CalibrateOff.anim │ ├── CalibrateOff.anim.meta │ ├── CalibrateOn.anim │ ├── CalibrateOn.anim.meta │ ├── Layer0.anim │ ├── Layer0.anim.meta │ ├── Layer1.anim │ ├── Layer1.anim.meta │ ├── Layer2.anim │ ├── Layer2.anim.meta │ ├── Layer3.anim │ ├── Layer3.anim.meta │ ├── OtherOff.anim │ ├── OtherOff.anim.meta │ ├── OtherOn.anim │ ├── OtherOn.anim.meta │ ├── PlayerOff.anim │ ├── PlayerOff.anim.meta │ ├── PlayerOn.anim │ ├── PlayerOn.anim.meta │ ├── RecorderOff.anim │ ├── RecorderOff.anim.meta │ ├── RecorderOn.anim │ └── RecorderOn.anim.meta ├── Editor.meta ├── Editor │ ├── AnimatorControllerUtil.cs │ ├── AnimatorControllerUtil.cs.meta │ ├── VRCA2Descriptor.cs │ ├── VRCA2Descriptor.cs.meta │ ├── VRCA3Descriptor.cs │ ├── VRCA3Descriptor.cs.meta │ ├── VRCASetup.cs │ └── VRCASetup.cs.meta ├── Material.meta ├── Material │ ├── Anchor.mat │ ├── Anchor.mat.meta │ ├── Anchor.png │ └── Anchor.png.meta ├── Resources.meta ├── Resources │ ├── SMVRCA.prefab │ ├── SMVRCA.prefab.meta │ ├── SMVRCAFX.controller │ ├── SMVRCAFX.controller.meta │ ├── SMVRCAMenu.asset │ ├── SMVRCAMenu.asset.meta │ ├── SMVRCAMenu2.asset │ ├── SMVRCAMenu2.asset.meta │ ├── SMVRCAMenu3.asset │ ├── SMVRCAMenu3.asset.meta │ ├── SMVRCAParams.asset │ ├── SMVRCAParams.asset.meta │ ├── SMVRCAPlayer.mat │ └── SMVRCAPlayer.mat.meta ├── Shader.meta └── Shader │ ├── MeshPlayerGlobal.shader │ └── MeshPlayerGlobal.shader.meta ├── VRC_World_Addon.meta └── VRC_World_Addon ├── MotionLink.meta ├── MotionLink ├── GrabMotionDec.shader ├── GrabMotionDec.shader.meta ├── MotionLink.mat ├── MotionLink.mat.meta ├── MotionLink.prefab └── MotionLink.prefab.meta ├── SampleWorld.unity ├── SampleWorld.unity.meta ├── UdonPlayer.meta └── UdonPlayer ├── DataRT.renderTexture ├── DataRT.renderTexture.meta ├── DataTex.asset ├── DataTex.asset.meta ├── Script.meta └── Script ├── CamRTReader.asset ├── CamRTReader.asset.meta ├── CamRTReader.cs ├── CamRTReader.cs.meta ├── UdonPlayer.asset ├── UdonPlayer.asset.meta ├── UdonPlayer.cs └── UdonPlayer.cs.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/.gitignore -------------------------------------------------------------------------------- /Addon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Addon.meta -------------------------------------------------------------------------------- /Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example.meta -------------------------------------------------------------------------------- /Example/Animated Character 1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumDataPlayer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumDataPlayer.mat -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumDataPlayer.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumDataPlayer.mat.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumDataPlayer.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumDataPlayer.mesh -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumDataPlayer.mesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumDataPlayer.mesh.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumPlayer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumPlayer.mat -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumPlayer.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumPlayer.mat.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumPlayer.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumPlayer.mesh -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumPlayer.mesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumPlayer.mesh.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumRecorder.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumRecorder.mesh -------------------------------------------------------------------------------- /Example/Animated Character 1/auto/characterMediumRecorder.mesh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/auto/characterMediumRecorder.mesh.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/characterMedium.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/characterMedium.fbx -------------------------------------------------------------------------------- /Example/Animated Character 1/characterMedium.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/characterMedium.fbx.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/skin.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/skin.mat -------------------------------------------------------------------------------- /Example/Animated Character 1/skin.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/skin.mat.meta -------------------------------------------------------------------------------- /Example/Animated Character 1/survivorMaleB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/survivorMaleB.png -------------------------------------------------------------------------------- /Example/Animated Character 1/survivorMaleB.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Animated Character 1/survivorMaleB.png.meta -------------------------------------------------------------------------------- /Example/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Example.unity -------------------------------------------------------------------------------- /Example/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Example.unity.meta -------------------------------------------------------------------------------- /Example/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material.meta -------------------------------------------------------------------------------- /Example/Material/Motion.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/Motion.mat -------------------------------------------------------------------------------- /Example/Material/Motion.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/Motion.mat.meta -------------------------------------------------------------------------------- /Example/Material/Unlit.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/Unlit.mat -------------------------------------------------------------------------------- /Example/Material/Unlit.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/Unlit.mat.meta -------------------------------------------------------------------------------- /Example/Material/UnlitGamma.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/UnlitGamma.mat -------------------------------------------------------------------------------- /Example/Material/UnlitGamma.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Material/UnlitGamma.mat.meta -------------------------------------------------------------------------------- /Example/Motion.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion.meta -------------------------------------------------------------------------------- /Example/Motion/FancyFeet.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/FancyFeet.mp4 -------------------------------------------------------------------------------- /Example/Motion/FancyFeet.mp4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/FancyFeet.mp4.meta -------------------------------------------------------------------------------- /Example/Motion/Floss.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/Floss.mp4 -------------------------------------------------------------------------------- /Example/Motion/Floss.mp4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/Floss.mp4.meta -------------------------------------------------------------------------------- /Example/Motion/Run.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/Run.controller -------------------------------------------------------------------------------- /Example/Motion/Run.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/Run.controller.meta -------------------------------------------------------------------------------- /Example/Motion/run.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/run.fbx -------------------------------------------------------------------------------- /Example/Motion/run.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Example/Motion/run.fbx.meta -------------------------------------------------------------------------------- /GameView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/GameView.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/LICENSE.txt.meta -------------------------------------------------------------------------------- /Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material.meta -------------------------------------------------------------------------------- /Material/Motion.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Motion.renderTexture -------------------------------------------------------------------------------- /Material/Motion.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Motion.renderTexture.meta -------------------------------------------------------------------------------- /Material/MotionDec.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/MotionDec.asset -------------------------------------------------------------------------------- /Material/MotionDec.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/MotionDec.asset.meta -------------------------------------------------------------------------------- /Material/MotionDec.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/MotionDec.mat -------------------------------------------------------------------------------- /Material/MotionDec.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/MotionDec.mat.meta -------------------------------------------------------------------------------- /Material/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources.meta -------------------------------------------------------------------------------- /Material/Resources/DataPlayer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/DataPlayer.mat -------------------------------------------------------------------------------- /Material/Resources/DataPlayer.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/DataPlayer.mat.meta -------------------------------------------------------------------------------- /Material/Resources/MeshPlayer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshPlayer.mat -------------------------------------------------------------------------------- /Material/Resources/MeshPlayer.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshPlayer.mat.meta -------------------------------------------------------------------------------- /Material/Resources/MeshRecorder.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshRecorder.mat -------------------------------------------------------------------------------- /Material/Resources/MeshRecorder.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshRecorder.mat.meta -------------------------------------------------------------------------------- /Material/Resources/MeshRecorderInst.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshRecorderInst.mat -------------------------------------------------------------------------------- /Material/Resources/MeshRecorderInst.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Material/Resources/MeshRecorderInst.mat.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/README.md.meta -------------------------------------------------------------------------------- /Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script.meta -------------------------------------------------------------------------------- /Script/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common.meta -------------------------------------------------------------------------------- /Script/Common/GPUReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/GPUReader.cs -------------------------------------------------------------------------------- /Script/Common/GPUReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/GPUReader.cs.meta -------------------------------------------------------------------------------- /Script/Common/HumanAxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/HumanAxes.cs -------------------------------------------------------------------------------- /Script/Common/HumanAxes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/HumanAxes.cs.meta -------------------------------------------------------------------------------- /Script/Common/HumanPoser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/HumanPoser.cs -------------------------------------------------------------------------------- /Script/Common/HumanPoser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/HumanPoser.cs.meta -------------------------------------------------------------------------------- /Script/Common/MeshPlayerGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshPlayerGen.cs -------------------------------------------------------------------------------- /Script/Common/MeshPlayerGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshPlayerGen.cs.meta -------------------------------------------------------------------------------- /Script/Common/MeshRecorderGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshRecorderGen.cs -------------------------------------------------------------------------------- /Script/Common/MeshRecorderGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshRecorderGen.cs.meta -------------------------------------------------------------------------------- /Script/Common/MeshUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshUtil.cs -------------------------------------------------------------------------------- /Script/Common/MeshUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MeshUtil.cs.meta -------------------------------------------------------------------------------- /Script/Common/Morph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/Morph.cs -------------------------------------------------------------------------------- /Script/Common/Morph.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/Morph.cs.meta -------------------------------------------------------------------------------- /Script/Common/MotionDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MotionDecoder.cs -------------------------------------------------------------------------------- /Script/Common/MotionDecoder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MotionDecoder.cs.meta -------------------------------------------------------------------------------- /Script/Common/MotionLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MotionLayout.cs -------------------------------------------------------------------------------- /Script/Common/MotionLayout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/MotionLayout.cs.meta -------------------------------------------------------------------------------- /Script/Common/ShaderImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/ShaderImpl.cs -------------------------------------------------------------------------------- /Script/Common/ShaderImpl.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/ShaderImpl.cs.meta -------------------------------------------------------------------------------- /Script/Common/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/Skeleton.cs -------------------------------------------------------------------------------- /Script/Common/Skeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Common/Skeleton.cs.meta -------------------------------------------------------------------------------- /Script/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor.meta -------------------------------------------------------------------------------- /Script/Editor/AnimRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/AnimRecorder.cs -------------------------------------------------------------------------------- /Script/Editor/AnimRecorder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/AnimRecorder.cs.meta -------------------------------------------------------------------------------- /Script/Editor/MeshPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MeshPlayer.cs -------------------------------------------------------------------------------- /Script/Editor/MeshPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MeshPlayer.cs.meta -------------------------------------------------------------------------------- /Script/Editor/MeshRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MeshRecorder.cs -------------------------------------------------------------------------------- /Script/Editor/MeshRecorder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MeshRecorder.cs.meta -------------------------------------------------------------------------------- /Script/Editor/MorphSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MorphSettingsEditor.cs -------------------------------------------------------------------------------- /Script/Editor/MorphSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/MorphSettingsEditor.cs.meta -------------------------------------------------------------------------------- /Script/Editor/ShaderMotion.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/ShaderMotion.Editor.asmdef -------------------------------------------------------------------------------- /Script/Editor/ShaderMotion.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Editor/ShaderMotion.Editor.asmdef.meta -------------------------------------------------------------------------------- /Script/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Runtime.meta -------------------------------------------------------------------------------- /Script/Runtime/MorphSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Runtime/MorphSettings.cs -------------------------------------------------------------------------------- /Script/Runtime/MorphSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Runtime/MorphSettings.cs.meta -------------------------------------------------------------------------------- /Script/Runtime/MotionPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Runtime/MotionPlayer.cs -------------------------------------------------------------------------------- /Script/Runtime/MotionPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/Runtime/MotionPlayer.cs.meta -------------------------------------------------------------------------------- /Script/ShaderMotion.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ShaderMotion" 3 | } 4 | -------------------------------------------------------------------------------- /Script/ShaderMotion.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Script/ShaderMotion.asmdef.meta -------------------------------------------------------------------------------- /Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader.meta -------------------------------------------------------------------------------- /Shader/Codec.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Codec.hlsl -------------------------------------------------------------------------------- /Shader/Codec.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Codec.hlsl.meta -------------------------------------------------------------------------------- /Shader/DataPlayer.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/DataPlayer.shader -------------------------------------------------------------------------------- /Shader/DataPlayer.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/DataPlayer.shader.meta -------------------------------------------------------------------------------- /Shader/MeshPlayer.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshPlayer.hlsl -------------------------------------------------------------------------------- /Shader/MeshPlayer.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshPlayer.hlsl.meta -------------------------------------------------------------------------------- /Shader/MeshPlayer.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshPlayer.shader -------------------------------------------------------------------------------- /Shader/MeshPlayer.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshPlayer.shader.meta -------------------------------------------------------------------------------- /Shader/MeshRecorder.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorder.hlsl -------------------------------------------------------------------------------- /Shader/MeshRecorder.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorder.hlsl.meta -------------------------------------------------------------------------------- /Shader/MeshRecorder.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorder.shader -------------------------------------------------------------------------------- /Shader/MeshRecorder.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorder.shader.meta -------------------------------------------------------------------------------- /Shader/MeshRecorderInst.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorderInst.shader -------------------------------------------------------------------------------- /Shader/MeshRecorderInst.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/MeshRecorderInst.shader.meta -------------------------------------------------------------------------------- /Shader/Rotation.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Rotation.hlsl -------------------------------------------------------------------------------- /Shader/Rotation.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Rotation.hlsl.meta -------------------------------------------------------------------------------- /Shader/Skinning.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Skinning.hlsl -------------------------------------------------------------------------------- /Shader/Skinning.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/Skinning.hlsl.meta -------------------------------------------------------------------------------- /Shader/UnlitGamma.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/UnlitGamma.shader -------------------------------------------------------------------------------- /Shader/UnlitGamma.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/UnlitGamma.shader.meta -------------------------------------------------------------------------------- /Shader/VideoDecoder.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/VideoDecoder.shader -------------------------------------------------------------------------------- /Shader/VideoDecoder.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/VideoDecoder.shader.meta -------------------------------------------------------------------------------- /Shader/VideoLayout.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/VideoLayout.hlsl -------------------------------------------------------------------------------- /Shader/VideoLayout.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/Shader/VideoLayout.hlsl.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/CalibrateOff.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/CalibrateOff.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/CalibrateOff.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/CalibrateOff.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/CalibrateOn.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/CalibrateOn.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/CalibrateOn.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/CalibrateOn.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer0.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer0.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer0.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer0.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer1.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer1.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer1.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer1.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer2.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer2.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer2.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer2.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer3.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer3.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/Layer3.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/Layer3.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/OtherOff.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/OtherOff.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/OtherOff.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/OtherOff.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/OtherOn.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/OtherOn.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/OtherOn.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/OtherOn.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/PlayerOff.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/PlayerOff.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/PlayerOff.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/PlayerOff.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/PlayerOn.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/PlayerOn.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/PlayerOn.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/PlayerOn.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/RecorderOff.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/RecorderOff.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/RecorderOff.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/RecorderOff.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/RecorderOn.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/RecorderOn.anim -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Animation/RecorderOn.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Animation/RecorderOn.anim.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/AnimatorControllerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/AnimatorControllerUtil.cs -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/AnimatorControllerUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/AnimatorControllerUtil.cs.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCA2Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCA2Descriptor.cs -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCA2Descriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCA2Descriptor.cs.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCA3Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCA3Descriptor.cs -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCA3Descriptor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCA3Descriptor.cs.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCASetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCASetup.cs -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Editor/VRCASetup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Editor/VRCASetup.cs.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Material.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Material/Anchor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Material/Anchor.mat -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Material/Anchor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Material/Anchor.mat.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Material/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Material/Anchor.png -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Material/Anchor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Material/Anchor.png.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCA.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCA.prefab -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCA.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCA.prefab.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAFX.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAFX.controller -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAFX.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAFX.controller.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu.asset -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu.asset.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu2.asset -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu2.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu2.asset.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu3.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu3.asset -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAMenu3.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAMenu3.asset.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAParams.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAParams.asset -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAParams.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAParams.asset.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAPlayer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAPlayer.mat -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Resources/SMVRCAPlayer.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Resources/SMVRCAPlayer.mat.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Shader.meta -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Shader/MeshPlayerGlobal.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Shader/MeshPlayerGlobal.shader -------------------------------------------------------------------------------- /VRC_Avatar_Addon/Shader/MeshPlayerGlobal.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_Avatar_Addon/Shader/MeshPlayerGlobal.shader.meta -------------------------------------------------------------------------------- /VRC_World_Addon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon.meta -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink.meta -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/GrabMotionDec.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/GrabMotionDec.shader -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/GrabMotionDec.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/GrabMotionDec.shader.meta -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/MotionLink.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/MotionLink.mat -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/MotionLink.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/MotionLink.mat.meta -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/MotionLink.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/MotionLink.prefab -------------------------------------------------------------------------------- /VRC_World_Addon/MotionLink/MotionLink.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/MotionLink/MotionLink.prefab.meta -------------------------------------------------------------------------------- /VRC_World_Addon/SampleWorld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/SampleWorld.unity -------------------------------------------------------------------------------- /VRC_World_Addon/SampleWorld.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/SampleWorld.unity.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/DataRT.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/DataRT.renderTexture -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/DataRT.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/DataRT.renderTexture.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/DataTex.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/DataTex.asset -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/DataTex.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/DataTex.asset.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/CamRTReader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/CamRTReader.asset -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/CamRTReader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/CamRTReader.asset.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/CamRTReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/CamRTReader.cs -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/CamRTReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/CamRTReader.cs.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/UdonPlayer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/UdonPlayer.asset -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/UdonPlayer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/UdonPlayer.asset.meta -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/UdonPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/UdonPlayer.cs -------------------------------------------------------------------------------- /VRC_World_Addon/UdonPlayer/Script/UdonPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuteWaterBeary/ShaderMotion/HEAD/VRC_World_Addon/UdonPlayer/Script/UdonPlayer.cs.meta --------------------------------------------------------------------------------