├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── Packages ├── .gitignore └── dev.hai-vr.cge │ ├── CGEDynamics.prefab │ ├── CGEDynamics.prefab.meta │ ├── CGELogoIcon.png │ ├── CGELogoIcon.png.meta │ ├── ComboGestureExpressions.prefab │ ├── ComboGestureExpressions.prefab.meta │ ├── Icons.meta │ ├── Icons │ ├── guide-16.png │ ├── guide-16.png.meta │ ├── guide-32.png │ ├── guide-32.png.meta │ ├── help-16.png │ └── help-16.png.meta │ ├── LegacyAssets.meta │ ├── LegacyAssets │ ├── Hai_ComboGesture_EmptyClip.anim │ ├── Hai_ComboGesture_EmptyClip.anim.meta │ ├── Hai_ComboGesture_FX_HideTransformsAndMuscles.mask │ ├── Hai_ComboGesture_FX_HideTransformsAndMuscles.mask.meta │ ├── Hai_ComboGesture_LWProxy.anim │ ├── Hai_ComboGesture_LWProxy.anim.meta │ ├── Hai_ComboGesture_LWSmoothOne.anim │ ├── Hai_ComboGesture_LWSmoothOne.anim.meta │ ├── Hai_ComboGesture_LWSmoothZero.anim │ ├── Hai_ComboGesture_LWSmoothZero.anim.meta │ ├── Hai_ComboGesture_Nothing.mask │ ├── Hai_ComboGesture_Nothing.mask.meta │ ├── Hai_ComboGesture_RWProxy.anim │ ├── Hai_ComboGesture_RWProxy.anim.meta │ ├── Hai_ComboGesture_RWSmoothOne.anim │ ├── Hai_ComboGesture_RWSmoothOne.anim.meta │ ├── Hai_ComboGesture_RWSmoothZero.anim │ └── Hai_ComboGesture_RWSmoothZero.anim.meta │ ├── Scripts.meta │ ├── Scripts │ ├── Components.meta │ ├── Components │ │ ├── CGE.Runtime.asmdef │ │ ├── CGE.Runtime.asmdef.meta │ │ ├── ComboGestureActivity.cs │ │ ├── ComboGestureActivity.cs.meta │ │ ├── ComboGestureCompiler.cs │ │ ├── ComboGestureCompiler.cs.meta │ │ ├── ComboGestureDynamics.cs │ │ ├── ComboGestureDynamics.cs.meta │ │ ├── ComboGestureIntegrator.cs │ │ ├── ComboGestureIntegrator.cs.meta │ │ ├── ComboGestureLimitedLipsync.cs │ │ ├── ComboGestureLimitedLipsync.cs.meta │ │ ├── ComboGestureMassiveBlend.cs │ │ ├── ComboGestureMassiveBlend.cs.meta │ │ ├── ComboGestureMoodSet.cs │ │ ├── ComboGestureMoodSet.cs.meta │ │ ├── ComboGesturePuppet.cs │ │ └── ComboGesturePuppet.cs.meta │ ├── Editor.meta │ └── Editor │ │ ├── CGE.Editor.asmdef │ │ ├── CGE.Editor.asmdef.meta │ │ ├── EditorUI.meta │ │ ├── EditorUI │ │ ├── CgeActivityEditorCombiner.cs │ │ ├── CgeActivityEditorCombiner.cs.meta │ │ ├── CgeActivityEditorDriver.cs │ │ ├── CgeActivityEditorDriver.cs.meta │ │ ├── CgeBlendTreeHandler.cs │ │ ├── CgeBlendTreeHandler.cs.meta │ │ ├── CgeEditorHandler.cs │ │ ├── CgeEditorHandler.cs.meta │ │ ├── CgeEditorWindow.cs │ │ ├── CgeEditorWindow.cs.meta │ │ ├── CgeLocale.cs │ │ ├── CgeLocale.cs.meta │ │ ├── CgeLocaleDefaults.cs │ │ ├── CgeLocaleDefaults.cs.meta │ │ ├── CgeLocalization.cs │ │ ├── CgeLocalization.cs.meta │ │ ├── CgePreviewHandler.cs │ │ ├── CgePreviewHandler.cs.meta │ │ ├── ComboGestureActivityEditor.cs │ │ ├── ComboGestureActivityEditor.cs.meta │ │ ├── ComboGestureCompilerEditor.cs │ │ ├── ComboGestureCompilerEditor.cs.meta │ │ ├── ComboGestureDynamicsEditor.cs │ │ ├── ComboGestureDynamicsEditor.cs.meta │ │ ├── ComboGestureIntegratorEditor.cs │ │ ├── ComboGestureIntegratorEditor.cs.meta │ │ ├── ComboGesturePuppetEditor.cs │ │ ├── ComboGesturePuppetEditor.cs.meta │ │ ├── Layouts.meta │ │ ├── Layouts │ │ │ ├── CgeLayoutCommon.cs │ │ │ ├── CgeLayoutCommon.cs.meta │ │ │ ├── CgeLayoutFaceExpressionCombiner.cs │ │ │ ├── CgeLayoutFaceExpressionCombiner.cs.meta │ │ │ ├── CgeLayoutManipulateTrees.cs │ │ │ ├── CgeLayoutManipulateTrees.cs.meta │ │ │ ├── CgeLayoutPreventEyesBlinking.cs │ │ │ ├── CgeLayoutPreventEyesBlinking.cs.meta │ │ │ ├── CgeLayoutSetFaceExpressions.cs │ │ │ ├── CgeLayoutSetFaceExpressions.cs.meta │ │ │ ├── CgeWindowHandler.cs │ │ │ └── CgeWindowHandler.cs.meta │ │ ├── Locale.meta │ │ └── Locale │ │ │ ├── cge.en.json │ │ │ ├── cge.en.json.meta │ │ │ ├── cge.ja.json │ │ │ └── cge.ja.json.meta │ │ ├── Internal.meta │ │ └── Internal │ │ ├── CgeAac.meta │ │ ├── CgeAac │ │ ├── CgeAac.cs │ │ ├── CgeAac.cs.meta │ │ ├── CgeAacAnimatorNode.cs │ │ ├── CgeAacAnimatorNode.cs.meta │ │ ├── CgeAacDefaultsProvider.cs │ │ ├── CgeAacDefaultsProvider.cs.meta │ │ ├── CgeAacFlAnimations.cs │ │ ├── CgeAacFlAnimations.cs.meta │ │ ├── CgeAacFlConditions.cs │ │ ├── CgeAacFlConditions.cs.meta │ │ ├── CgeAacFlStates.cs │ │ ├── CgeAacFlStates.cs.meta │ │ ├── CgeAac_LICENSE │ │ └── CgeAac_LICENSE.meta │ │ ├── CgeAnimationNeutralizer.cs │ │ ├── CgeAnimationNeutralizer.cs.meta │ │ ├── CgeAssetContainer.cs │ │ ├── CgeAssetContainer.cs.meta │ │ ├── CgeAvatarSnapshot.cs │ │ ├── CgeAvatarSnapshot.cs.meta │ │ ├── CgeBlendTreeAutoWeightCorrector.cs │ │ ├── CgeBlendTreeAutoWeightCorrector.cs.meta │ │ ├── CgeComboGestureCompilerInternal.cs │ │ ├── CgeComboGestureCompilerInternal.cs.meta │ │ ├── CgeConflictPrevention.cs │ │ ├── CgeConflictPrevention.cs.meta │ │ ├── CgeCurveKey.cs │ │ ├── CgeCurveKey.cs.meta │ │ ├── CgeExpressionCombiner.cs │ │ ├── CgeExpressionCombiner.cs.meta │ │ ├── CgeFeatureToggles.cs │ │ ├── CgeFeatureToggles.cs.meta │ │ ├── CgeIntermediateCombinator.cs │ │ ├── CgeIntermediateCombinator.cs.meta │ │ ├── CgeLayerForAnalogFistSmoothing.cs │ │ ├── CgeLayerForAnalogFistSmoothing.cs.meta │ │ ├── CgeLayerForBlinkingOverrideView.cs │ │ ├── CgeLayerForBlinkingOverrideView.cs.meta │ │ ├── CgeLayerForExpressionsView.cs │ │ ├── CgeLayerForExpressionsView.cs.meta │ │ ├── CgeLayerForVirtualActivity.cs │ │ ├── CgeLayerForVirtualActivity.cs.meta │ │ ├── CgeLayerForWeightCorrection.cs │ │ ├── CgeLayerForWeightCorrection.cs.meta │ │ ├── CgeManifestFromActivity.cs │ │ ├── CgeManifestFromActivity.cs.meta │ │ ├── CgeManifestFromMassiveBlend.cs │ │ ├── CgeManifestFromMassiveBlend.cs.meta │ │ ├── CgeManifestFromSingle.cs │ │ ├── CgeManifestFromSingle.cs.meta │ │ ├── CgeMaskApplicator.cs │ │ ├── CgeMaskApplicator.cs.meta │ │ ├── CgeMassiveBlendManifest.cs │ │ ├── CgeMassiveBlendManifest.cs.meta │ │ ├── CgePermutationManifest.cs │ │ ├── CgePermutationManifest.cs.meta │ │ ├── CgeQualifiedAnimation.cs │ │ ├── CgeQualifiedAnimation.cs.meta │ │ ├── CgeSharedLayerUtils.cs │ │ ├── CgeSharedLayerUtils.cs.meta │ │ ├── CgeSingleManifest.cs │ │ └── CgeSingleManifest.cs.meta │ ├── Shaders.meta │ ├── Shaders │ ├── HaiCgeGrayscale.shader │ └── HaiCgeGrayscale.shader.meta │ ├── package.json │ └── package.json.meta └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | !dev.hai-vr.cge/ 3 | -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/CGEDynamics.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/CGEDynamics.prefab -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/CGEDynamics.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/CGEDynamics.prefab.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/CGELogoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/CGELogoIcon.png -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/CGELogoIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/CGELogoIcon.png.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/ComboGestureExpressions.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/ComboGestureExpressions.prefab -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/ComboGestureExpressions.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/ComboGestureExpressions.prefab.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/guide-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/guide-16.png -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/guide-16.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/guide-16.png.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/guide-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/guide-32.png -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/guide-32.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/guide-32.png.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/help-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/help-16.png -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Icons/help-16.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Icons/help-16.png.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_EmptyClip.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_EmptyClip.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_EmptyClip.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_EmptyClip.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_FX_HideTransformsAndMuscles.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_FX_HideTransformsAndMuscles.mask -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_FX_HideTransformsAndMuscles.mask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_FX_HideTransformsAndMuscles.mask.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWProxy.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWProxy.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWProxy.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWProxy.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothOne.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothOne.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothOne.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothOne.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothZero.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothZero.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothZero.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_LWSmoothZero.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_Nothing.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_Nothing.mask -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_Nothing.mask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_Nothing.mask.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWProxy.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWProxy.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWProxy.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWProxy.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothOne.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothOne.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothOne.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothOne.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothZero.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothZero.anim -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothZero.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/LegacyAssets/Hai_ComboGesture_RWSmoothZero.anim.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd9eb79d18b24ede954d9915c5050172 3 | timeCreated: 1594580906 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/CGE.Runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/CGE.Runtime.asmdef -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/CGE.Runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/CGE.Runtime.asmdef.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureActivity.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureActivity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d2badf0290f49448345fff636b91b23 3 | timeCreated: 1593019729 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureCompiler.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureCompiler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureCompiler.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureDynamics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureDynamics.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureDynamics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f0e91d411664bc084e61c4ffc52cbd6 3 | timeCreated: 1651518339 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureIntegrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureIntegrator.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureIntegrator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0baa68b7b8cd44a49db19fd1d62286c1 3 | timeCreated: 1614939477 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureLimitedLipsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureLimitedLipsync.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureLimitedLipsync.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bee54e288dc9421b9071aa3b6ba935cc 3 | timeCreated: 1600966959 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMassiveBlend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMassiveBlend.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMassiveBlend.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b3de6083e23472ca7190881b71e5d8b 3 | timeCreated: 1618913080 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMoodSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMoodSet.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMoodSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGestureMoodSet.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGesturePuppet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Components/ComboGesturePuppet.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Components/ComboGesturePuppet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9da21d457dc40b8a8c446a8b52a69fb 3 | timeCreated: 1602633134 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/CGE.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/CGE.Editor.asmdef -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/CGE.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/CGE.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorCombiner.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorCombiner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 058c65af86b642b68caa495bb6b11354 3 | timeCreated: 1598040482 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorDriver.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeActivityEditorDriver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 593685d00776476d8fe3ec62d42820c4 3 | timeCreated: 1598033288 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeBlendTreeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeBlendTreeHandler.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeBlendTreeHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc2b34765ae7493090d2517a9eb24978 3 | timeCreated: 1602960869 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorHandler.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6285cb5fca25423d81a837ffac919719 3 | timeCreated: 1602893039 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorWindow.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeEditorWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caf762c6508b4bfdad35d457d7d8f02b 3 | timeCreated: 1597574854 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocale.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocale.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e374dd50c884dc8896d0fd6f4b23f71 3 | timeCreated: 1613912653 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocaleDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocaleDefaults.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocaleDefaults.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: badc23e4a1cf45219dce78cf985bc753 3 | timeCreated: 1614792853 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocalization.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgeLocalization.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd57df683cb4a60b8f27c3715800424 3 | timeCreated: 1613910824 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgePreviewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgePreviewHandler.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/CgePreviewHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985a03bb6d7c482e972925f21895ee23 3 | timeCreated: 1602845163 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureActivityEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureActivityEditor.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureActivityEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureActivityEditor.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureCompilerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureCompilerEditor.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureCompilerEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cdb832ff1d04b83998688981a9bb6d8 3 | timeCreated: 1593261966 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureDynamicsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureDynamicsEditor.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureDynamicsEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 557a5e6ad8574f288c0c670d6597a162 3 | timeCreated: 1651519803 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureIntegratorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureIntegratorEditor.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGestureIntegratorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a144f5c744844338d7234c7401bd286 3 | timeCreated: 1614939509 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGesturePuppetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGesturePuppetEditor.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/ComboGesturePuppetEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f0a2f5fd931419aa98f57646b1ac1c7 3 | timeCreated: 1603022722 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4291d19831d4ee8981da2a108617e95 3 | timeCreated: 1602801906 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutCommon.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95718e985da3497b98c4303ad449c4a5 3 | timeCreated: 1602801968 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutFaceExpressionCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutFaceExpressionCombiner.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutFaceExpressionCombiner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb6e99ceb8ac4f4186c625cd64f05e93 3 | timeCreated: 1602803823 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutManipulateTrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutManipulateTrees.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutManipulateTrees.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fe782af771a4e47adf9d9930c593fc9 3 | timeCreated: 1602960213 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutPreventEyesBlinking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutPreventEyesBlinking.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutPreventEyesBlinking.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fac7c4eee0046998481e14ff6bbdad4 3 | timeCreated: 1602801919 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutSetFaceExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutSetFaceExpressions.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeLayoutSetFaceExpressions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1f6feab398b4bbb8cc867bee8cd696d 3 | timeCreated: 1602955914 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeWindowHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeWindowHandler.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Layouts/CgeWindowHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bf4807eaa8a446e9c66653025dbfab3 3 | timeCreated: 1602843699 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.en.json -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.en.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 888ea6f759b14ab3a6e749f687cae361 3 | timeCreated: 1613913941 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.ja.json -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.ja.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/EditorUI/Locale/cge.ja.json.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a0a25e437946e09d72e5d34fa8c9ed 3 | timeCreated: 1594579632 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacAnimatorNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacAnimatorNode.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacAnimatorNode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacAnimatorNode.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacDefaultsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacDefaultsProvider.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacDefaultsProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacDefaultsProvider.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlAnimations.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlAnimations.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlAnimations.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlConditions.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlConditions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlConditions.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlStates.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlStates.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAacFlStates.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac_LICENSE -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac_LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAac/CgeAac_LICENSE.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAnimationNeutralizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAnimationNeutralizer.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAnimationNeutralizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bf9bbe0ef904c5e8c02c506d89bd972 3 | timeCreated: 1597184180 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAssetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAssetContainer.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAssetContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e0c51391307409db586d51d2f695242 3 | timeCreated: 1600816732 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAvatarSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAvatarSnapshot.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeAvatarSnapshot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5e1f7e037444b099d31db235c4fd7dd 3 | timeCreated: 1603995882 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeBlendTreeAutoWeightCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeBlendTreeAutoWeightCorrector.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeBlendTreeAutoWeightCorrector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d63418641e7e471b8d3bdd380b155883 3 | timeCreated: 1603027747 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeComboGestureCompilerInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeComboGestureCompilerInternal.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeComboGestureCompilerInternal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbb122508fd841b8b2621ec5b9f27a73 3 | timeCreated: 1594581990 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeConflictPrevention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeConflictPrevention.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeConflictPrevention.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7abefaee084db8b9f1f690aaaa4a30 3 | timeCreated: 1598559272 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeCurveKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeCurveKey.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeCurveKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16815332b2354274b4357a402399ce5d 3 | timeCreated: 1598045961 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeExpressionCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeExpressionCombiner.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeExpressionCombiner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ab638e7d9e4946a0e11c268d60fd02 3 | timeCreated: 1593556754 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeFeatureToggles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeFeatureToggles.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeFeatureToggles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd88377ee43041d48e411ee09d3f3f03 3 | timeCreated: 1595171205 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeIntermediateCombinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeIntermediateCombinator.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeIntermediateCombinator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeIntermediateCombinator.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForAnalogFistSmoothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForAnalogFistSmoothing.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForAnalogFistSmoothing.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f5925de27a949c7858df9b110b0715b 3 | timeCreated: 1614853715 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForBlinkingOverrideView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForBlinkingOverrideView.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForBlinkingOverrideView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66303f696c7041969bbe2277eeb7ac95 3 | timeCreated: 1600895310 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForExpressionsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForExpressionsView.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForExpressionsView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8de9c39569f7428e974840d7bcbb0fca 3 | timeCreated: 1600894699 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForVirtualActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForVirtualActivity.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForVirtualActivity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 593f5c7a4e134c06af72f54df3bbfc3d 3 | timeCreated: 1611034753 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForWeightCorrection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForWeightCorrection.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeLayerForWeightCorrection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ceda58cf3b745eca8c7877b0438f21f 3 | timeCreated: 1601919952 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromActivity.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromActivity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b98d5b926d124abcbadb1f2868248403 3 | timeCreated: 1602536445 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromMassiveBlend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromMassiveBlend.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromMassiveBlend.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e382958e8435480abfc6830948ac823f 3 | timeCreated: 1618913759 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromSingle.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeManifestFromSingle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de86d1db38c640e696798d93e940cec7 3 | timeCreated: 1602705967 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMaskApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMaskApplicator.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMaskApplicator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06137f48ed49458595f53face181ab54 3 | timeCreated: 1614988418 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMassiveBlendManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMassiveBlendManifest.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeMassiveBlendManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55eb2c2c4f0740b99ac13598af4e095b 3 | timeCreated: 1618913800 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgePermutationManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgePermutationManifest.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgePermutationManifest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ea022ca6a6745669d8fcaaf7b589d45 3 | timeCreated: 1602533245 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeQualifiedAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeQualifiedAnimation.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeQualifiedAnimation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 716bd9e3d65e468c9db0b319e516b339 3 | timeCreated: 1602536288 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSharedLayerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSharedLayerUtils.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSharedLayerUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4dd26ac7d9d457abeb494e0ae677961 3 | timeCreated: 1600894403 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSingleManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSingleManifest.cs -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSingleManifest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Scripts/Editor/Internal/CgeSingleManifest.cs.meta -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea84e4a168854f5ba7cb6d8fd462d84f 3 | timeCreated: 1651502125 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Shaders/HaiCgeGrayscale.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/Shaders/HaiCgeGrayscale.shader -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/Shaders/HaiCgeGrayscale.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 637ecba896da4ff39f12e94caa592dd6 3 | timeCreated: 1651502126 -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/package.json -------------------------------------------------------------------------------- /Packages/dev.hai-vr.cge/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/Packages/dev.hai-vr.cge/package.json.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hai-vr/combo-gesture-expressions-av3/HEAD/README.md --------------------------------------------------------------------------------