├── .github └── workflows │ └── release.yml ├── .gitignore ├── Assets ├── .gitkeep ├── Clip.anim ├── Clip.anim.meta ├── Controller.controller ├── Controller.controller.meta ├── VRCExpressionParameters.asset ├── VRCExpressionParameters.asset.meta ├── VRCExpressionsMenu.asset ├── VRCExpressionsMenu.asset.meta ├── main.unity └── main.unity.meta ├── LICENSE ├── Packages ├── .gitignore ├── com.vrchat.core.bootstrap │ ├── Editor.meta │ ├── Editor │ │ ├── Bootstrap.cs │ │ ├── Bootstrap.cs.meta │ │ ├── VRChat.Bootstrapper.Editor.asmdef │ │ └── VRChat.Bootstrapper.Editor.asmdef.meta │ ├── License.md │ ├── License.md.meta │ ├── package.json │ └── package.json.meta ├── dev.logilabo.parameter-smoother │ ├── Editor.meta │ ├── Editor │ │ ├── ParameterSmoother.Editor.asmdef │ │ ├── ParameterSmoother.Editor.asmdef.meta │ │ ├── ParameterSmootherEditor.cs │ │ ├── ParameterSmootherEditor.cs.meta │ │ ├── ParameterSmootherPass.cs │ │ ├── ParameterSmootherPass.cs.meta │ │ ├── PluginDefinition.cs │ │ └── PluginDefinition.cs.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── ParameterSmoother.Runtime.asmdef │ │ ├── ParameterSmoother.Runtime.asmdef.meta │ │ ├── ParameterSmoother.cs │ │ └── ParameterSmoother.cs.meta │ ├── package.json │ └── package.json.meta ├── manifest.json ├── packages-lock.json └── vpm-manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ └── com.vrchat.base │ │ └── settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Assets/Clip.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/Clip.anim -------------------------------------------------------------------------------- /Assets/Clip.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/Clip.anim.meta -------------------------------------------------------------------------------- /Assets/Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/Controller.controller -------------------------------------------------------------------------------- /Assets/Controller.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/Controller.controller.meta -------------------------------------------------------------------------------- /Assets/VRCExpressionParameters.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/VRCExpressionParameters.asset -------------------------------------------------------------------------------- /Assets/VRCExpressionParameters.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/VRCExpressionParameters.asset.meta -------------------------------------------------------------------------------- /Assets/VRCExpressionsMenu.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/VRCExpressionsMenu.asset -------------------------------------------------------------------------------- /Assets/VRCExpressionsMenu.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/VRCExpressionsMenu.asset.meta -------------------------------------------------------------------------------- /Assets/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/main.unity -------------------------------------------------------------------------------- /Assets/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Assets/main.unity.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | !dev.logilabo.parameter-smoother 3 | -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/Editor.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/License.md -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/License.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/License.md.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/package.json -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/com.vrchat.core.bootstrap/package.json.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmoother.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmoother.Editor.asmdef -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmoother.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmoother.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherEditor.cs -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherEditor.cs.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherPass.cs -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherPass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/ParameterSmootherPass.cs.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/PluginDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/PluginDefinition.cs -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Editor/PluginDefinition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Editor/PluginDefinition.cs.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Runtime.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.Runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.Runtime.asmdef -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.Runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.Runtime.asmdef.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.cs -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/Runtime/ParameterSmoother.cs.meta -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/package.json -------------------------------------------------------------------------------- /Packages/dev.logilabo.parameter-smoother/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/dev.logilabo.parameter-smoother/package.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /Packages/vpm-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/Packages/vpm-manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.vrchat.base/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/Packages/com.vrchat.base/settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logicmachine/avatar-parameter-smoother/HEAD/README.md --------------------------------------------------------------------------------