├── .editorconfig ├── .gitignore ├── .releaserc ├── .travis.yml ├── Assets ├── Examples.meta ├── Examples │ ├── AnimatorPlayback.meta │ └── AnimatorPlayback │ │ ├── AnimatorExample.controller │ │ ├── AnimatorExample.controller.meta │ │ ├── AnimatorPlaybackExample.cs │ │ ├── AnimatorPlaybackExample.cs.meta │ │ ├── Default.unity │ │ ├── Default.unity.meta │ │ ├── FadeSquare.anim │ │ ├── FadeSquare.anim.meta │ │ ├── PlaybackExample.asset │ │ ├── PlaybackExample.asset.meta │ │ ├── Square.png │ │ └── Square.png.meta ├── Resources.meta ├── Resources │ ├── AnimatorTesting.meta │ └── AnimatorTesting │ │ ├── AnimatorStub.prefab │ │ ├── AnimatorStub.prefab.meta │ │ ├── AnimatorStubCtrl.controller │ │ └── AnimatorStubCtrl.controller.meta ├── com.fluid.unity-animator-helpers.meta └── com.fluid.unity-animator-helpers │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ └── com.fluid.unity-animator-helpers.md │ ├── Editor.meta │ ├── Editor │ ├── CustomEditors.meta │ ├── CustomEditors │ │ ├── AnimatorPlayback.meta │ │ └── AnimatorPlayback │ │ │ ├── AnimatorPlaybackEditor.cs │ │ │ ├── AnimatorPlaybackEditor.cs.meta │ │ │ ├── SortableListAnimatorVariable.cs │ │ │ └── SortableListAnimatorVariable.cs.meta │ ├── com.fluid.unity-animator-helpers.Editor.asmdef │ └── com.fluid.unity-animator-helpers.Editor.asmdef.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── AnimatorBehaviors.meta │ ├── AnimatorBehaviors │ │ ├── AnimatorActionBase.cs │ │ ├── AnimatorActionBase.cs.meta │ │ ├── RandomSpeed.cs │ │ ├── RandomSpeed.cs.meta │ │ ├── RandomStartTime.cs │ │ ├── RandomStartTime.cs.meta │ │ ├── SetVar.meta │ │ ├── SetVar │ │ │ ├── Random.meta │ │ │ ├── Random │ │ │ │ ├── SetVarRandomBool.cs │ │ │ │ ├── SetVarRandomBool.cs.meta │ │ │ │ ├── SetVarRandomFloat.cs │ │ │ │ ├── SetVarRandomFloat.cs.meta │ │ │ │ ├── SetVarRandomInt.cs │ │ │ │ └── SetVarRandomInt.cs.meta │ │ │ ├── SetVarBase.cs │ │ │ ├── SetVarBase.cs.meta │ │ │ ├── SetVarBool.cs │ │ │ ├── SetVarBool.cs.meta │ │ │ ├── SetVarFloat.cs │ │ │ ├── SetVarFloat.cs.meta │ │ │ ├── SetVarInt.cs │ │ │ └── SetVarInt.cs.meta │ │ ├── StateMachineBehaviorEvent.cs │ │ └── StateMachineBehaviorEvent.cs.meta │ ├── AnimatorHelperRuntime.meta │ ├── AnimatorHelperRuntime │ │ ├── AnimatorHelperRuntime.cs │ │ └── AnimatorHelperRuntime.cs.meta │ ├── AnimatorPlayback.meta │ ├── AnimatorPlayback │ │ ├── AnimatorPlayback.cs │ │ ├── AnimatorPlayback.cs.meta │ │ ├── IAnimatorPlayback.cs │ │ └── IAnimatorPlayback.cs.meta │ ├── Conditions.meta │ ├── Conditions │ │ ├── Condition.cs │ │ ├── Condition.cs.meta │ │ ├── ConditionVarType.cs │ │ ├── ConditionVarType.cs.meta │ │ ├── OperatorAll.cs │ │ └── OperatorAll.cs.meta │ ├── HasParameter.meta │ ├── HasParameter │ │ ├── AnimatorParameters.cs │ │ ├── AnimatorParameters.cs.meta │ │ ├── AnimatorParametersCollection.cs │ │ ├── AnimatorParametersCollection.cs.meta │ │ ├── HasParametersExtensions.cs │ │ ├── HasParametersExtensions.cs.meta │ │ ├── KeyValue.cs │ │ ├── KeyValue.cs.meta │ │ ├── Parameters.cs │ │ └── Parameters.cs.meta │ ├── Variables.meta │ ├── Variables │ │ ├── VarBase.cs │ │ ├── VarBase.cs.meta │ │ ├── VarBool.cs │ │ ├── VarBool.cs.meta │ │ ├── VarFloat.cs │ │ ├── VarFloat.cs.meta │ │ ├── VarInt.cs │ │ ├── VarInt.cs.meta │ │ ├── VarTrigger.cs │ │ └── VarTrigger.cs.meta │ ├── com.fluid.unity-animator-helpers.asmdef │ └── com.fluid.unity-animator-helpers.asmdef.meta │ ├── Tests.meta │ ├── Tests │ ├── Editor.meta │ ├── Editor │ │ ├── AnimatorPlayback.meta │ │ ├── AnimatorPlayback │ │ │ ├── TestAnimatorPlayback.cs │ │ │ └── TestAnimatorPlayback.cs.meta │ │ ├── AnimatorStub.meta │ │ ├── AnimatorStub │ │ │ ├── TestAnimatorStub.cs │ │ │ └── TestAnimatorStub.cs.meta │ │ ├── HasParameter.meta │ │ ├── HasParameter │ │ │ ├── TestAnimatorParameters.cs │ │ │ ├── TestAnimatorParameters.cs.meta │ │ │ ├── TestAnimatorParametersCollection.cs │ │ │ ├── TestAnimatorParametersCollection.cs.meta │ │ │ ├── TestHasParametersExtensions.cs │ │ │ ├── TestHasParametersExtensions.cs.meta │ │ │ ├── TestHasParametersExtensionsStressTests.cs │ │ │ ├── TestHasParametersExtensionsStressTests.cs.meta │ │ │ ├── TestParameters.cs │ │ │ └── TestParameters.cs.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── AnimatorStub.cs │ │ │ └── AnimatorStub.cs.meta │ │ ├── com.fluid.unity-animator-helpers.Editor.Tests.asmdef │ │ └── com.fluid.unity-animator-helpers.Editor.Tests.asmdef.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── TestAnimatorPlayback.cs │ │ ├── TestAnimatorPlayback.cs.meta │ │ ├── com.fluid.unity-animator-helpers.Tests.asmdef │ │ └── com.fluid.unity-animator-helpers.Tests.asmdef.meta │ ├── package.json │ └── package.json.meta ├── LICENSE ├── LICENSE.md ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── animator-helpers.png ├── commitlint.config.js ├── package.json ├── playback-helper-example.png └── publish-nightly.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/.releaserc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/AnimatorExample.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/AnimatorExample.controller -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/AnimatorExample.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/AnimatorExample.controller.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/AnimatorPlaybackExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/AnimatorPlaybackExample.cs -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/AnimatorPlaybackExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/AnimatorPlaybackExample.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/Default.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/Default.unity -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/Default.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/Default.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/FadeSquare.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/FadeSquare.anim -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/FadeSquare.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/FadeSquare.anim.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/PlaybackExample.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/PlaybackExample.asset -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/PlaybackExample.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/PlaybackExample.asset.meta -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/Square.png -------------------------------------------------------------------------------- /Assets/Examples/AnimatorPlayback/Square.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Examples/AnimatorPlayback/Square.png.meta -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources.meta -------------------------------------------------------------------------------- /Assets/Resources/AnimatorTesting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources/AnimatorTesting.meta -------------------------------------------------------------------------------- /Assets/Resources/AnimatorTesting/AnimatorStub.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources/AnimatorTesting/AnimatorStub.prefab -------------------------------------------------------------------------------- /Assets/Resources/AnimatorTesting/AnimatorStub.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources/AnimatorTesting/AnimatorStub.prefab.meta -------------------------------------------------------------------------------- /Assets/Resources/AnimatorTesting/AnimatorStubCtrl.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources/AnimatorTesting/AnimatorStubCtrl.controller -------------------------------------------------------------------------------- /Assets/Resources/AnimatorTesting/AnimatorStubCtrl.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/Resources/AnimatorTesting/AnimatorStubCtrl.controller.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/CHANGELOG.md -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Documentation~/com.fluid.unity-animator-helpers.md: -------------------------------------------------------------------------------- 1 | Documentation beyond README.md goes here. 2 | -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/AnimatorPlaybackEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/AnimatorPlaybackEditor.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/AnimatorPlaybackEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/AnimatorPlaybackEditor.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/SortableListAnimatorVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/SortableListAnimatorVariable.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/SortableListAnimatorVariable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/CustomEditors/AnimatorPlayback/SortableListAnimatorVariable.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/com.fluid.unity-animator-helpers.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/com.fluid.unity-animator-helpers.Editor.asmdef -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Editor/com.fluid.unity-animator-helpers.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Editor/com.fluid.unity-animator-helpers.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/LICENSE.md: -------------------------------------------------------------------------------- 1 | Edit LICENSE.md in root, contents will be replaced. 2 | -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/LICENSE.md.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/README.md: -------------------------------------------------------------------------------- 1 | Edit README.md in root, contents will be replaced. 2 | -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/README.md.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/AnimatorActionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/AnimatorActionBase.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/AnimatorActionBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/AnimatorActionBase.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomSpeed.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomSpeed.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a39ba37013e74aabb75f5116f86e6da1 3 | timeCreated: 1510206867 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomStartTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomStartTime.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/RandomStartTime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9e7babc33a24bdca64c82330151403e 3 | timeCreated: 1510206964 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e0a450aeeb43acb7039dfdc2a017df 3 | timeCreated: 1510205128 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a226eecbc71c4f10820a47aafad2a55c 3 | timeCreated: 1510205913 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomBool.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomBool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomBool.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomFloat.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1446146d4f764524a88d8b58dc108b07 3 | timeCreated: 1510206103 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomInt.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/Random/SetVarRandomInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59623de0e6c243f782b3acd9535d61cb 3 | timeCreated: 1510206581 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBase.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad2ec8025cef43d898985295f8b9a2fa 3 | timeCreated: 1510204576 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBool.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarBool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfe299efb6c44af29bf73ad6a4ed73c1 3 | timeCreated: 1510205202 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarFloat.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66333b8c7f194f12b40c0c2cf5c53d91 3 | timeCreated: 1510205148 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarInt.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/SetVar/SetVarInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1fb264f4bd7461999bdde728f95ae24 3 | timeCreated: 1510205238 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/StateMachineBehaviorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/StateMachineBehaviorEvent.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorBehaviors/StateMachineBehaviorEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f28084b1bf4e28927f61d9eaf76335 3 | timeCreated: 1510200706 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorHelperRuntime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d99ba8900a6488dbe212301152b4cbe 3 | timeCreated: 1514432326 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorHelperRuntime/AnimatorHelperRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorHelperRuntime/AnimatorHelperRuntime.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorHelperRuntime/AnimatorHelperRuntime.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a7afd3e1f2c4d9ab60e3e9a23e39fd8 3 | timeCreated: 1514432336 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/AnimatorPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/AnimatorPlayback.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/AnimatorPlayback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/AnimatorPlayback.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/IAnimatorPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/IAnimatorPlayback.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/AnimatorPlayback/IAnimatorPlayback.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bcde7101d484e3faa881f5300ad8198 3 | timeCreated: 1574025387 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Conditions.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/Condition.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/Condition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/Condition.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/ConditionVarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/ConditionVarType.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/ConditionVarType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 553afec6140d40aca021bcde5b57920b 3 | timeCreated: 1510112857 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/OperatorAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/OperatorAll.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Conditions/OperatorAll.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9092b386afa242bf81391f3a849d97ea 3 | timeCreated: 1510113781 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 280309cb8dae452492ab598df745fc3a 3 | timeCreated: 1514445879 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParameters.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cfbc22467084aaa9a703a6c04fc74f9 3 | timeCreated: 1514446909 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParametersCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParametersCollection.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/AnimatorParametersCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3268d3df677439d8f998ca83031a577 3 | timeCreated: 1514447432 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/HasParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/HasParametersExtensions.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/HasParametersExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/HasParametersExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/KeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/KeyValue.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/KeyValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae321c3bd7dd4bf3b93f0ef1653dd98f 3 | timeCreated: 1514446492 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/Parameters.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/HasParameter/Parameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a812e6dd98a744eb975511a1d2b8f89c 3 | timeCreated: 1514446297 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBase.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBase.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBool.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarBool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd3e62dbb384597b06a879fc5b67100 3 | timeCreated: 1509772070 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarFloat.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarFloat.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8df29ff201ec4cbf8ae3350826d20895 3 | timeCreated: 1509772718 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarInt.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarInt.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61fc1055407e45bd854559da24350941 3 | timeCreated: 1509772557 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarTrigger.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/Variables/VarTrigger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30a1bac696a04b12832c35c6f6f662b6 3 | timeCreated: 1509772447 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/com.fluid.unity-animator-helpers.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/com.fluid.unity-animator-helpers.asmdef -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Runtime/com.fluid.unity-animator-helpers.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Runtime/com.fluid.unity-animator-helpers.asmdef.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback/TestAnimatorPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback/TestAnimatorPlayback.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback/TestAnimatorPlayback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorPlayback/TestAnimatorPlayback.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorStub.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 398b717c3ad8425b9f5e8f7c29fc0040 3 | timeCreated: 1514425430 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorStub/TestAnimatorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorStub/TestAnimatorStub.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/AnimatorStub/TestAnimatorStub.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a7ff51069de4853993454e05329a7ab 3 | timeCreated: 1514422879 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec808eee2e764200abc2b1abb1643ae6 3 | timeCreated: 1514504311 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParameters.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfd3f899a0e44f65b01f33bdf4c04dc4 3 | timeCreated: 1514505628 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParametersCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParametersCollection.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestAnimatorParametersCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66cf147f67cf45f893e04221ee08c945 3 | timeCreated: 1514506980 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensions.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57b9372d955542df993f522c1a9c9256 3 | timeCreated: 1514508493 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensionsStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensionsStressTests.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestHasParametersExtensionsStressTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4d53d6b3f5c48ba86ebe3925ca92b3d 3 | timeCreated: 1514508532 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestParameters.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/HasParameter/TestParameters.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90ba4c81723b4e7e957382cead9ace08 3 | timeCreated: 1514504351 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d2746f3628f40c7b8ddcf035be4a137 3 | timeCreated: 1514425299 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/Utilities/AnimatorStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/Utilities/AnimatorStub.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/Utilities/AnimatorStub.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9867d31a1c2d4da593fcc61ce27f393a 3 | timeCreated: 1514425341 -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/com.fluid.unity-animator-helpers.Editor.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/com.fluid.unity-animator-helpers.Editor.Tests.asmdef -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Editor/com.fluid.unity-animator-helpers.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Editor/com.fluid.unity-animator-helpers.Editor.Tests.asmdef.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Runtime.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Runtime/TestAnimatorPlayback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Runtime/TestAnimatorPlayback.cs -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Runtime/TestAnimatorPlayback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Runtime/TestAnimatorPlayback.cs.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Runtime/com.fluid.unity-animator-helpers.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Runtime/com.fluid.unity-animator-helpers.Tests.asmdef -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/Tests/Runtime/com.fluid.unity-animator-helpers.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/Tests/Runtime/com.fluid.unity-animator-helpers.Tests.asmdef.meta -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/package.json -------------------------------------------------------------------------------- /Assets/com.fluid.unity-animator-helpers/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Assets/com.fluid.unity-animator-helpers/package.json.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/README.md -------------------------------------------------------------------------------- /animator-helpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/animator-helpers.png -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']}; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/package.json -------------------------------------------------------------------------------- /playback-helper-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/playback-helper-example.png -------------------------------------------------------------------------------- /publish-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashblue/unity-animator-helpers/HEAD/publish-nightly.sh --------------------------------------------------------------------------------