├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── Package ├── ACKNOWLEDGMENTS.md ├── ACKNOWLEDGMENTS.md.meta ├── Editor Resources.meta ├── Editor Resources │ ├── ScriptIcons.meta │ └── ScriptIcons │ │ ├── animation-database.png │ │ ├── animation-database.png.meta │ │ ├── command-database.png │ │ ├── command-database.png.meta │ │ ├── command.png │ │ ├── command.png.meta │ │ ├── hide-anim.png │ │ ├── hide-anim.png.meta │ │ ├── hide-database.png │ │ ├── hide-database.png.meta │ │ ├── show-anim.png │ │ ├── show-anim.png.meta │ │ ├── show-database.png │ │ └── show-database.png.meta ├── Editor.meta ├── Editor │ ├── GenericAnimation.meta │ ├── GenericAnimation │ │ ├── AnimationStepDrawer.cs │ │ ├── AnimationStepDrawer.cs.meta │ │ ├── ColorOverrideDrawer.cs │ │ ├── ColorOverrideDrawer.cs.meta │ │ ├── EditorFriendlyCharDataModifiersDrawer.cs │ │ ├── EditorFriendlyCharDataModifiersDrawer.cs.meta │ │ ├── GenericAnimationEditor.cs │ │ ├── GenericAnimationEditor.cs.meta │ │ ├── RotationDrawer.cs │ │ └── RotationDrawer.cs.meta │ ├── OffsetBundleDrawer.cs │ ├── OffsetBundleDrawer.cs.meta │ ├── OffsetTypeDrawer.cs │ ├── OffsetTypeDrawer.cs.meta │ ├── PowerEnumDrawer.cs │ ├── PowerEnumDrawer.cs.meta │ ├── Settings & Preferences.meta │ ├── Settings & Preferences │ │ ├── TMPEffectsSettingsEditor.cs │ │ └── TMPEffectsSettingsEditor.cs.meta │ ├── Stack.meta │ ├── Stack │ │ ├── AnimPrefixTupleDrawer.cs │ │ ├── AnimPrefixTupleDrawer.cs.meta │ │ ├── AnimationStackObjectEditor.cs │ │ └── AnimationStackObjectEditor.cs.meta │ ├── TMPAnimation Editor.meta │ ├── TMPAnimation Editor │ │ ├── TMPAnimationEditor.cs │ │ ├── TMPAnimationEditor.cs.meta │ │ ├── TMPAnimationEditorBase.cs │ │ ├── TMPAnimationEditorBase.cs.meta │ │ ├── TMPHideAnimationEditor.cs │ │ ├── TMPHideAnimationEditor.cs.meta │ │ ├── TMPSceneAnimationEditor.cs │ │ ├── TMPSceneAnimationEditor.cs.meta │ │ ├── TMPSceneHideAnimationEditor.cs │ │ ├── TMPSceneHideAnimationEditor.cs.meta │ │ ├── TMPSceneShowAnimationEditor.cs │ │ ├── TMPSceneShowAnimationEditor.cs.meta │ │ ├── TMPShowAnimationEditor.cs │ │ └── TMPShowAnimationEditor.cs.meta │ ├── TMPAnimatorDatabaseEditor.cs │ ├── TMPAnimatorDatabaseEditor.cs.meta │ ├── TMPAnimatorEditor.cs │ ├── TMPAnimatorEditor.cs.meta │ ├── TMPBasicAnimationDatabaseEditor.cs │ ├── TMPBasicAnimationDatabaseEditor.cs.meta │ ├── TMPBlendCurveDrawer.cs │ ├── TMPBlendCurveDrawer.cs.meta │ ├── TMPCommandDatabaseEditor.cs │ ├── TMPCommandDatabaseEditor.cs.meta │ ├── TMPEffects.Editor.asmdef │ ├── TMPEffects.Editor.asmdef.meta │ ├── TMPGenericSceneCommandDrawer.cs │ ├── TMPGenericSceneCommandDrawer.cs.meta │ ├── TMPHideAnimationDatabaseEditor.cs │ ├── TMPHideAnimationDatabaseEditor.cs.meta │ ├── TMPKeywordDatabaseEditor.cs │ ├── TMPKeywordDatabaseEditor.cs.meta │ ├── TMPSceneCommandWrapperDrawer.cs │ ├── TMPSceneCommandWrapperDrawer.cs.meta │ ├── TMPShowAnimationDatabaseEditor.cs │ ├── TMPShowAnimationDatabaseEditor.cs.meta │ ├── TMPWriterEditor.cs │ ├── TMPWriterEditor.cs.meta │ ├── Timeline.meta │ ├── Timeline │ │ ├── ClipAction.meta │ │ ├── ClipAction │ │ │ ├── CopyInitialModifiersFromPreviousClip.cs │ │ │ ├── CopyInitialModifiersFromPreviousClip.cs.meta │ │ │ ├── CopyInitialModifiersOfNextClipIntoModifiersClipAction.cs │ │ │ └── CopyInitialModifiersOfNextClipIntoModifiersClipAction.cs.meta │ │ ├── ExportToGenericUtilityWindow.cs │ │ ├── ExportToGenericUtilityWindow.cs.meta │ │ ├── KeyFrameEditorWindow.cs │ │ ├── KeyFrameEditorWindow.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── MarkerIcons.meta │ │ │ └── MarkerIcons │ │ │ │ ├── animator-resetanimations.png │ │ │ │ ├── animator-resetanimations.png.meta │ │ │ │ ├── animator-settings.png │ │ │ │ ├── animator-settings.png.meta │ │ │ │ ├── animator-start.png │ │ │ │ ├── animator-start.png.meta │ │ │ │ ├── animator-stop.png │ │ │ │ ├── animator-stop.png.meta │ │ │ │ ├── animator-updateonce.png │ │ │ │ ├── animator-updateonce.png.meta │ │ │ │ ├── writer-play.png │ │ │ │ ├── writer-play.png.meta │ │ │ │ ├── writer-reset.png │ │ │ │ ├── writer-reset.png.meta │ │ │ │ ├── writer-restart.png │ │ │ │ ├── writer-restart.png.meta │ │ │ │ ├── writer-settings.png │ │ │ │ ├── writer-settings.png.meta │ │ │ │ ├── writer-skip.png │ │ │ │ ├── writer-skip.png.meta │ │ │ │ ├── writer-stop.png │ │ │ │ ├── writer-stop.png.meta │ │ │ │ ├── writer-wait.png │ │ │ │ ├── writer-wait.png.meta │ │ │ │ ├── writer.png │ │ │ │ └── writer.png.meta │ │ ├── TMPAnimationClipEditor.cs │ │ ├── TMPAnimationClipEditor.cs.meta │ │ ├── TMPAnimationClipInspectorEditor.cs │ │ ├── TMPAnimationClipInspectorEditor.cs.meta │ │ ├── TMPAnimatorMarkerEditor.cs │ │ ├── TMPAnimatorMarkerEditor.cs.meta │ │ ├── TMPEffects.Timeline.Editor.asmdef │ │ ├── TMPEffects.Timeline.Editor.asmdef.meta │ │ ├── TMPEffectsTimelineActions.cs │ │ ├── TMPEffectsTimelineActions.cs.meta │ │ ├── TMPMeshModifierClipEditor.cs │ │ ├── TMPMeshModifierClipEditor.cs.meta │ │ ├── TMPWriterMarkerEditor.cs │ │ ├── TMPWriterMarkerEditor.cs.meta │ │ ├── TimelineAnimationStepDrawer.cs │ │ ├── TimelineAnimationStepDrawer.cs.meta │ │ ├── TimelineUtility.cs │ │ └── TimelineUtility.cs.meta │ ├── TypedVectorDrawer.cs │ └── TypedVectorDrawer.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── Resources.meta ├── Resources │ ├── PlayerIcons.meta │ ├── PlayerIcons │ │ ├── pausebutton.png │ │ ├── pausebutton.png.meta │ │ ├── playButton.png │ │ ├── playButton.png.meta │ │ ├── resetButton.png │ │ ├── resetButton.png.meta │ │ ├── skipButton.png │ │ ├── skipButton.png.meta │ │ ├── stopButton.png │ │ └── stopButton.png.meta │ ├── TMPEffects Required Resources.unitypackage │ ├── TMPEffects Required Resources.unitypackage.meta │ ├── Text (TMP)Timeline.playable │ └── Text (TMP)Timeline.playable.meta ├── Runtime.meta ├── Runtime │ ├── CharData.meta │ ├── CharData │ │ ├── CharData.cs │ │ ├── CharData.cs.meta │ │ ├── Info.cs │ │ ├── Info.cs.meta │ │ ├── Mesh Modifiers.meta │ │ ├── Mesh Modifiers │ │ │ ├── CharDataModifiers.cs │ │ │ ├── CharDataModifiers.cs.meta │ │ │ ├── ColorOverride.cs │ │ │ ├── ColorOverride.cs.meta │ │ │ ├── EditorFriendlyCharDataModifiers.cs │ │ │ ├── EditorFriendlyCharDataModifiers.cs.meta │ │ │ ├── Rotation.cs │ │ │ ├── Rotation.cs.meta │ │ │ ├── TMPCharacterModifiers.cs │ │ │ ├── TMPCharacterModifiers.cs.meta │ │ │ ├── TMPMeshModifiers.cs │ │ │ ├── TMPMeshModifiers.cs.meta │ │ │ ├── Vector3Override.cs │ │ │ └── Vector3Override.cs.meta │ │ ├── ReadOnlyVertexData.cs │ │ ├── ReadOnlyVertexData.cs.meta │ │ ├── VertexData.cs │ │ ├── VertexData.cs.meta │ │ ├── VisibilityState.cs │ │ └── VisibilityState.cs.meta │ ├── Components.meta │ ├── Components │ │ ├── TMPAnimator.meta │ │ ├── TMPAnimator │ │ │ ├── AnimationCacher.cs │ │ │ ├── AnimationCacher.cs.meta │ │ │ ├── AnimationDatabase.cs │ │ │ ├── AnimationDatabase.cs.meta │ │ │ ├── AnimationUpdater.cs │ │ │ ├── AnimationUpdater.cs.meta │ │ │ ├── AnimatorContext.cs │ │ │ ├── AnimatorContext.cs.meta │ │ │ ├── CachedAnimation.cs │ │ │ ├── CachedAnimation.cs.meta │ │ │ ├── DummyDatabase.cs │ │ │ ├── DummyDatabase.cs.meta │ │ │ ├── IAnimatorContext.cs │ │ │ ├── IAnimatorContext.cs.meta │ │ │ ├── ReadOnlyAnimatorContext.cs │ │ │ ├── ReadOnlyAnimatorContext.cs.meta │ │ │ ├── SegmentData.cs │ │ │ ├── SegmentData.cs.meta │ │ │ ├── TMPAnimationType.cs │ │ │ ├── TMPAnimationType.cs.meta │ │ │ ├── TMPAnimator.cs │ │ │ ├── TMPAnimator.cs.meta │ │ │ ├── TMPAnimatorUpdater.cs │ │ │ ├── TMPAnimatorUpdater.cs.meta │ │ │ ├── UpdateFrom.cs │ │ │ └── UpdateFrom.cs.meta │ │ ├── TMPEffectComponent.cs │ │ ├── TMPEffectComponent.cs.meta │ │ ├── TMPMediator.meta │ │ ├── TMPMediator │ │ │ ├── TMPMediator.cs │ │ │ ├── TMPMediator.cs.meta │ │ │ ├── TMPMediatorManager.cs │ │ │ └── TMPMediatorManager.cs.meta │ │ ├── TMPWriter.meta │ │ └── TMPWriter │ │ │ ├── CachedCommand.cs │ │ │ ├── CachedCommand.cs.meta │ │ │ ├── CachedEvent.cs │ │ │ ├── CachedEvent.cs.meta │ │ │ ├── CommandCacher.cs │ │ │ ├── CommandCacher.cs.meta │ │ │ ├── CommandContext.cs │ │ │ ├── CommandContext.cs.meta │ │ │ ├── CommandDatabase.cs │ │ │ ├── CommandDatabase.cs.meta │ │ │ ├── EventCacher.cs │ │ │ ├── EventCacher.cs.meta │ │ │ ├── ICachedInvokable.cs │ │ │ ├── ICachedInvokable.cs.meta │ │ │ ├── ICommandContext.cs │ │ │ ├── ICommandContext.cs.meta │ │ │ ├── ReadOnlyCommandContext.cs │ │ │ ├── ReadOnlyCommandContext.cs.meta │ │ │ ├── TMPWriter.cs │ │ │ └── TMPWriter.cs.meta │ ├── Databases.meta │ ├── Databases │ │ ├── AnimationDatabase.meta │ │ ├── AnimationDatabase │ │ │ ├── TMPAnimationDatabase.cs │ │ │ ├── TMPAnimationDatabase.cs.meta │ │ │ ├── TMPAnimationDatabaseBase.cs │ │ │ ├── TMPAnimationDatabaseBase.cs.meta │ │ │ ├── TMPBasicAnimationDatabase.cs │ │ │ ├── TMPBasicAnimationDatabase.cs.meta │ │ │ ├── TMPHideAnimationDatabase.cs │ │ │ ├── TMPHideAnimationDatabase.cs.meta │ │ │ ├── TMPShowAnimationDatabase.cs │ │ │ └── TMPShowAnimationDatabase.cs.meta │ │ ├── CommandDatabase.meta │ │ ├── CommandDatabase │ │ │ ├── TMPCommandDatabase.cs │ │ │ └── TMPCommandDatabase.cs.meta │ │ ├── ITMPEffectDatabase.cs │ │ ├── ITMPEffectDatabase.cs.meta │ │ ├── KeywordDatabase.meta │ │ ├── KeywordDatabase │ │ │ ├── CompositeTMPKeywordDatabase.cs │ │ │ ├── CompositeTMPKeywordDatabase.cs.meta │ │ │ ├── ITMPKeywordDatabase.cs │ │ │ ├── ITMPKeywordDatabase.cs.meta │ │ │ ├── TMPKeywordDatabase.cs │ │ │ ├── TMPKeywordDatabase.cs.meta │ │ │ ├── TMPKeywordDatabaseBase.cs │ │ │ ├── TMPKeywordDatabaseBase.cs.meta │ │ │ ├── TMPSceneKeywordDatabase.cs │ │ │ ├── TMPSceneKeywordDatabase.cs.meta │ │ │ ├── TMPSceneKeywordDatabaseBase.cs │ │ │ └── TMPSceneKeywordDatabaseBase.cs.meta │ │ ├── TMPEffectDatabase.cs │ │ └── TMPEffectDatabase.cs.meta │ ├── EffectCategories.meta │ ├── EffectCategories │ │ ├── EffectCategory.cs │ │ ├── EffectCategory.cs.meta │ │ ├── TMPAnimationCategory.cs │ │ ├── TMPAnimationCategory.cs.meta │ │ ├── TMPCommandCategory.cs │ │ ├── TMPCommandCategory.cs.meta │ │ ├── TMPEventCategory.cs │ │ └── TMPEventCategory.cs.meta │ ├── Effects.meta │ ├── Effects │ │ ├── TMPAnimations.meta │ │ ├── TMPAnimations │ │ │ ├── AnimationContext.cs │ │ │ ├── AnimationContext.cs.meta │ │ │ ├── AnimationCurveUtility.cs │ │ │ ├── AnimationCurveUtility.cs.meta │ │ │ ├── AnimationStep.cs │ │ │ ├── AnimationStep.cs.meta │ │ │ ├── Basic Animations.meta │ │ │ ├── Basic Animations │ │ │ │ ├── CharAnimation.cs │ │ │ │ ├── CharAnimation.cs.meta │ │ │ │ ├── ContPivotAnimation.cs │ │ │ │ ├── ContPivotAnimation.cs.meta │ │ │ │ ├── DangleAnimation.cs │ │ │ │ ├── DangleAnimation.cs.meta │ │ │ │ ├── FadeAnimation.cs │ │ │ │ ├── FadeAnimation.cs.meta │ │ │ │ ├── FunkyAnimation.cs │ │ │ │ ├── FunkyAnimation.cs.meta │ │ │ │ ├── GenericAnimation.cs │ │ │ │ ├── GenericAnimation.cs.meta │ │ │ │ ├── GrowAnimation.cs │ │ │ │ ├── GrowAnimation.cs.meta │ │ │ │ ├── PaletteAnimation.cs │ │ │ │ ├── PaletteAnimation.cs.meta │ │ │ │ ├── PivotAnimation.cs │ │ │ │ ├── PivotAnimation.cs.meta │ │ │ │ ├── ShakeAnimation.cs │ │ │ │ ├── ShakeAnimation.cs.meta │ │ │ │ ├── ShearAnimation.cs │ │ │ │ ├── ShearAnimation.cs.meta │ │ │ │ ├── SketchyAnimation.cs │ │ │ │ ├── SketchyAnimation.cs.meta │ │ │ │ ├── SpreadAnimation.cs │ │ │ │ ├── SpreadAnimation.cs.meta │ │ │ │ ├── SpriteAnimation.cs │ │ │ │ ├── SpriteAnimation.cs.meta │ │ │ │ ├── WaveAnimation.cs │ │ │ │ └── WaveAnimation.cs.meta │ │ │ ├── Hide Animations.meta │ │ │ ├── Hide Animations │ │ │ │ ├── CharHideAnimation.cs │ │ │ │ ├── CharHideAnimation.cs.meta │ │ │ │ ├── CurveHideAnimation.cs │ │ │ │ ├── CurveHideAnimation.cs.meta │ │ │ │ ├── DummyHideAnimation.cs │ │ │ │ ├── DummyHideAnimation.cs.meta │ │ │ │ ├── FadeHideAnimation.cs │ │ │ │ ├── FadeHideAnimation.cs.meta │ │ │ │ ├── GenericHideAnimation.cs │ │ │ │ ├── GenericHideAnimation.cs.meta │ │ │ │ ├── GrowHideAnimation.cs │ │ │ │ ├── GrowHideAnimation.cs.meta │ │ │ │ ├── MoveInHideAnimation.cs │ │ │ │ ├── MoveInHideAnimation.cs.meta │ │ │ │ ├── PivotHideAnimation.cs │ │ │ │ ├── PivotHideAnimation.cs.meta │ │ │ │ ├── ShakeHideAnimation.cs │ │ │ │ ├── ShakeHideAnimation.cs.meta │ │ │ │ ├── SpreadHideAnimation.cs │ │ │ │ └── SpreadHideAnimation.cs.meta │ │ │ ├── IAnimationContext.cs │ │ │ ├── IAnimationContext.cs.meta │ │ │ ├── ITMPAnimation.cs │ │ │ ├── ITMPAnimation.cs.meta │ │ │ ├── ReadOnlyAnimationContext.cs │ │ │ ├── ReadOnlyAnimationContext.cs.meta │ │ │ ├── Show Animations.meta │ │ │ ├── Show Animations │ │ │ │ ├── CharShowAnimation.cs │ │ │ │ ├── CharShowAnimation.cs.meta │ │ │ │ ├── CurveShowAnimation.cs │ │ │ │ ├── CurveShowAnimation.cs.meta │ │ │ │ ├── DummyShowAnimation.cs │ │ │ │ ├── DummyShowAnimation.cs.meta │ │ │ │ ├── FadeShowAnimation.cs │ │ │ │ ├── FadeShowAnimation.cs.meta │ │ │ │ ├── GenericShowAnimation.cs │ │ │ │ ├── GenericShowAnimation.cs.meta │ │ │ │ ├── GrowShowAnimation.cs │ │ │ │ ├── GrowShowAnimation.cs.meta │ │ │ │ ├── MoveInShowAnimation.cs │ │ │ │ ├── MoveInShowAnimation.cs.meta │ │ │ │ ├── PivotShowAnimation.cs │ │ │ │ ├── PivotShowAnimation.cs.meta │ │ │ │ ├── ShakeShowAnimation.cs │ │ │ │ ├── ShakeShowAnimation.cs.meta │ │ │ │ ├── SpreadShowAnimation.cs │ │ │ │ └── SpreadShowAnimation.cs.meta │ │ │ ├── Stack.meta │ │ │ ├── Stack │ │ │ │ ├── AnimationStack.cs │ │ │ │ ├── AnimationStack.cs.meta │ │ │ │ ├── AnimationStackObject.cs │ │ │ │ ├── AnimationStackObject.cs.meta │ │ │ │ ├── HideAnimationStackObject.cs │ │ │ │ ├── HideAnimationStackObject.cs.meta │ │ │ │ ├── ShowAnimationStackObject.cs │ │ │ │ └── ShowAnimationStackObject.cs.meta │ │ │ ├── TMPAnimation.cs │ │ │ ├── TMPAnimation.cs.meta │ │ │ ├── TMPAnimationUtility.cs │ │ │ ├── TMPAnimationUtility.cs.meta │ │ │ ├── TMPHideAnimation.cs │ │ │ ├── TMPHideAnimation.cs.meta │ │ │ ├── TMPShowAnimation.cs │ │ │ └── TMPShowAnimation.cs.meta │ │ ├── TMPCommands.meta │ │ ├── TMPCommands │ │ │ ├── Commands.meta │ │ │ ├── Commands │ │ │ │ ├── DebugCommand.cs │ │ │ │ ├── DebugCommand.cs.meta │ │ │ │ ├── DelayCommand.cs │ │ │ │ ├── DelayCommand.cs.meta │ │ │ │ ├── ShowCommand.cs │ │ │ │ ├── ShowCommand.cs.meta │ │ │ │ ├── SkippableCommand.cs │ │ │ │ ├── SkippableCommand.cs.meta │ │ │ │ ├── WaitCommand.cs │ │ │ │ └── WaitCommand.cs.meta │ │ │ ├── ITMPCommand.cs │ │ │ ├── ITMPCommand.cs.meta │ │ │ ├── TMPCommand.cs │ │ │ ├── TMPCommand.cs.meta │ │ │ ├── TMPCommandArgs.cs │ │ │ ├── TMPCommandArgs.cs.meta │ │ │ ├── TMPGenericSceneCommand.cs │ │ │ ├── TMPGenericSceneCommand.cs.meta │ │ │ ├── TMPSceneCommand.cs │ │ │ ├── TMPSceneCommand.cs.meta │ │ │ ├── TMPSceneCommandWrapper.cs │ │ │ ├── TMPSceneCommandWrapper.cs.meta │ │ │ ├── TagType.cs │ │ │ └── TagType.cs.meta │ │ ├── TMPEvents.meta │ │ ├── TMPEvents │ │ │ ├── TMPEvent.cs │ │ │ ├── TMPEvent.cs.meta │ │ │ ├── TMPEventArgs.cs │ │ │ └── TMPEventArgs.cs.meta │ │ ├── TMPSceneAnimations.meta │ │ └── TMPSceneAnimations │ │ │ ├── TMPSceneAnimation.cs │ │ │ ├── TMPSceneAnimation.cs.meta │ │ │ ├── TMPSceneAnimationBase.cs │ │ │ ├── TMPSceneAnimationBase.cs.meta │ │ │ ├── TMPSceneHideAnimation.cs │ │ │ ├── TMPSceneHideAnimation.cs.meta │ │ │ ├── TMPSceneShowAnimation.cs │ │ │ └── TMPSceneShowAnimation.cs.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── Extensions.cs │ │ └── Extensions.cs.meta │ ├── Internals.cs │ ├── Internals.cs.meta │ ├── ObjectChangedEvent.meta │ ├── ObjectChangedEvent │ │ ├── INotifyObjectChanged.cs │ │ ├── INotifyObjectChanged.cs.meta │ │ ├── ObjectChangedEventHandler.cs │ │ ├── ObjectChangedEventHandler.cs.meta │ │ ├── TMPEffects.NotifyObjectChanged.asmdef │ │ └── TMPEffects.NotifyObjectChanged.asmdef.meta │ ├── Parameters.meta │ ├── Parameters │ │ ├── Attributes.meta │ │ ├── Attributes │ │ │ ├── TMPParameterBundleAttribute.cs │ │ │ ├── TMPParameterBundleAttribute.cs.meta │ │ │ ├── TMPParameterBundleField.cs │ │ │ ├── TMPParameterBundleField.cs.meta │ │ │ ├── TMPParameterTypeAttribute.cs │ │ │ └── TMPParameterTypeAttribute.cs.meta │ │ ├── Bundles.meta │ │ ├── Bundles │ │ │ ├── TMPBlendCurve.cs │ │ │ ├── TMPBlendCurve.cs.meta │ │ │ ├── Wave.cs │ │ │ └── Wave.cs.meta │ │ ├── ITMPParameterValidator.cs │ │ ├── ITMPParameterValidator.cs.meta │ │ ├── ParameterParsing.cs │ │ ├── ParameterParsing.cs.meta │ │ ├── TMPParameterTypes.cs │ │ ├── TMPParameterTypes.cs.meta │ │ ├── TMPParameterUtility.cs │ │ ├── TMPParameterUtility.cs.meta │ │ ├── Types.meta │ │ └── Types │ │ │ ├── Offset.meta │ │ │ └── Offset │ │ │ ├── ITMPOffsetProvider.cs │ │ │ ├── ITMPOffsetProvider.cs.meta │ │ │ ├── OffsetBundle.cs │ │ │ ├── OffsetBundle.cs.meta │ │ │ ├── OffsetTypePowerEnum.cs │ │ │ ├── OffsetTypePowerEnum.cs.meta │ │ │ ├── PowerEnum.cs │ │ │ ├── PowerEnum.cs.meta │ │ │ ├── SceneOffsetBundle.cs │ │ │ ├── SceneOffsetBundle.cs.meta │ │ │ ├── SceneOffsetTypePowerEnum.cs │ │ │ ├── SceneOffsetTypePowerEnum.cs.meta │ │ │ ├── TMPOffsetProvider.cs │ │ │ ├── TMPOffsetProvider.cs.meta │ │ │ ├── TMPSceneOffsetProvider.cs │ │ │ └── TMPSceneOffsetProvider.cs.meta │ ├── SerializedDictionary.meta │ ├── SerializedDictionary │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Assets.meta │ │ │ ├── Assets │ │ │ │ ├── BurgerMenu@2x.png │ │ │ │ ├── BurgerMenu@2x.png.meta │ │ │ │ ├── KeysGeneratorSelectorWindow.uss │ │ │ │ ├── KeysGeneratorSelectorWindow.uss.meta │ │ │ │ ├── KeysGeneratorSelectorWindow.uxml │ │ │ │ └── KeysGeneratorSelectorWindow.uxml.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Data.meta │ │ │ │ ├── Data │ │ │ │ │ ├── ElementData.cs │ │ │ │ │ ├── ElementData.cs.meta │ │ │ │ │ ├── ElementSettings.cs │ │ │ │ │ ├── ElementSettings.cs.meta │ │ │ │ │ ├── PropertyData.cs │ │ │ │ │ └── PropertyData.cs.meta │ │ │ │ ├── DisplayType.cs │ │ │ │ ├── DisplayType.cs.meta │ │ │ │ ├── KeyListGenerators.meta │ │ │ │ ├── KeyListGenerators │ │ │ │ │ ├── Implementors.meta │ │ │ │ │ ├── Implementors │ │ │ │ │ │ ├── EnumGenerator.cs │ │ │ │ │ │ ├── EnumGenerator.cs.meta │ │ │ │ │ │ ├── IntRangeGenerator.cs │ │ │ │ │ │ ├── IntRangeGenerator.cs.meta │ │ │ │ │ │ ├── IntSteppingGenerator.cs │ │ │ │ │ │ └── IntSteppingGenerator.cs.meta │ │ │ │ │ ├── KeyListGenerator.cs │ │ │ │ │ ├── KeyListGenerator.cs.meta │ │ │ │ │ ├── KeyListGeneratorAttribute.cs │ │ │ │ │ ├── KeyListGeneratorAttribute.cs.meta │ │ │ │ │ ├── KeyListGeneratorCache.cs │ │ │ │ │ ├── KeyListGeneratorCache.cs.meta │ │ │ │ │ ├── KeyListGeneratorData.cs │ │ │ │ │ ├── KeyListGeneratorData.cs.meta │ │ │ │ │ ├── KeyListGeneratorEditor.cs │ │ │ │ │ ├── KeyListGeneratorEditor.cs.meta │ │ │ │ │ ├── KeyListGeneratorSelectorWindow.cs │ │ │ │ │ ├── KeyListGeneratorSelectorWindow.cs.meta │ │ │ │ │ ├── ModificationType.cs │ │ │ │ │ └── ModificationType.cs.meta │ │ │ │ ├── PagingElement.cs │ │ │ │ ├── PagingElement.cs.meta │ │ │ │ ├── Search.meta │ │ │ │ ├── Search │ │ │ │ │ ├── Matchers.meta │ │ │ │ │ ├── Matchers │ │ │ │ │ │ ├── EnumMatcher.cs │ │ │ │ │ │ ├── EnumMatcher.cs.meta │ │ │ │ │ │ ├── Matcher.cs │ │ │ │ │ │ ├── Matcher.cs.meta │ │ │ │ │ │ ├── Matchers.cs │ │ │ │ │ │ ├── Matchers.cs.meta │ │ │ │ │ │ ├── NumericMatcher.cs │ │ │ │ │ │ ├── NumericMatcher.cs.meta │ │ │ │ │ │ ├── StringMatcher.cs │ │ │ │ │ │ └── StringMatcher.cs.meta │ │ │ │ │ ├── PropertySearchResult.cs │ │ │ │ │ ├── PropertySearchResult.cs.meta │ │ │ │ │ ├── SearchQuery.cs │ │ │ │ │ ├── SearchQuery.cs.meta │ │ │ │ │ ├── SearchResultEntry.cs │ │ │ │ │ └── SearchResultEntry.cs.meta │ │ │ │ ├── SerializedDictionaryDrawer.cs │ │ │ │ ├── SerializedDictionaryDrawer.cs.meta │ │ │ │ ├── SerializedDictionaryInstanceDrawer.cs │ │ │ │ ├── SerializedDictionaryInstanceDrawer.cs.meta │ │ │ │ ├── SerializedObservableDictionaryDrawer.cs │ │ │ │ ├── SerializedObservableDictionaryDrawer.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ │ ├── EditorUserSettings.cs │ │ │ │ │ ├── EditorUserSettings.cs.meta │ │ │ │ │ ├── EditorUserSettingsProvider.cs │ │ │ │ │ └── EditorUserSettingsProvider.cs.meta │ │ │ │ ├── States.meta │ │ │ │ ├── States │ │ │ │ │ ├── DefaultListState.cs │ │ │ │ │ ├── DefaultListState.cs.meta │ │ │ │ │ ├── ListState.cs │ │ │ │ │ ├── ListState.cs.meta │ │ │ │ │ ├── SearchListState.cs │ │ │ │ │ └── SearchListState.cs.meta │ │ │ │ ├── Utility.meta │ │ │ │ └── Utility │ │ │ │ │ ├── GUIEnabledScope.cs │ │ │ │ │ ├── GUIEnabledScope.cs.meta │ │ │ │ │ ├── LabelWidth.cs │ │ │ │ │ ├── LabelWidth.cs.meta │ │ │ │ │ ├── RectUtility.cs │ │ │ │ │ ├── RectUtility.cs.meta │ │ │ │ │ ├── SCEditorUtility.cs │ │ │ │ │ ├── SCEditorUtility.cs.meta │ │ │ │ │ ├── SCEnumUtility.cs │ │ │ │ │ └── SCEnumUtility.cs.meta │ │ │ ├── TMPEffects.SerializedCollections.Editor.asmdef │ │ │ └── TMPEffects.SerializedCollections.Editor.asmdef.meta │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── LookupTables.meta │ │ │ ├── LookupTables │ │ │ ├── DictionaryLookupTable.cs │ │ │ ├── DictionaryLookupTable.cs.meta │ │ │ ├── IKeyable.cs │ │ │ └── IKeyable.cs.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── SerializedCollectionsUtility.cs │ │ │ ├── SerializedCollectionsUtility.cs.meta │ │ │ ├── SerializedDictionary.cs │ │ │ ├── SerializedDictionary.cs.meta │ │ │ ├── SerializedDictionaryAttribute.cs │ │ │ ├── SerializedDictionaryAttribute.cs.meta │ │ │ ├── SerializedKeyValuePair.cs │ │ │ └── SerializedKeyValuePair.cs.meta │ │ │ ├── TMPEffects.SerializedCollections.asmdef │ │ │ └── TMPEffects.SerializedCollections.asmdef.meta │ ├── TMPEffects.asmdef │ ├── TMPEffects.asmdef.meta │ ├── TMPEffectsBugReport.cs │ ├── TMPEffectsBugReport.cs.meta │ ├── TMPEffectsResourceImporter.cs │ ├── TMPEffectsResourceImporter.cs.meta │ ├── TMPEffectsSettings.cs │ ├── TMPEffectsSettings.cs.meta │ ├── Tags.meta │ ├── Tags │ │ ├── CachedCollection.cs │ │ ├── CachedCollection.cs.meta │ │ ├── ITMPPrefixSupplier.cs │ │ ├── ITMPPrefixSupplier.cs.meta │ │ ├── ITMPTagValidator.cs │ │ ├── ITMPTagValidator.cs.meta │ │ ├── ITagCacher.cs │ │ ├── ITagCacher.cs.meta │ │ ├── ITagWrapper.cs │ │ ├── ITagWrapper.cs.meta │ │ ├── TMPEffectTag.cs │ │ ├── TMPEffectTag.cs.meta │ │ ├── TMPEffectTagIndices.cs │ │ ├── TMPEffectTagIndices.cs.meta │ │ ├── TMPEffectTagTuple.cs │ │ ├── TMPEffectTagTuple.cs.meta │ │ ├── TagCollection.meta │ │ └── TagCollection │ │ │ ├── IReadOnlyTagCollection.cs │ │ │ ├── IReadOnlyTagCollection.cs.meta │ │ │ ├── ITagCollection.cs │ │ │ ├── ITagCollection.cs.meta │ │ │ ├── ITagCollectionManager.cs │ │ │ ├── ITagCollectionManager.cs.meta │ │ │ ├── ObservableTagCollection.cs │ │ │ ├── ObservableTagCollection.cs.meta │ │ │ ├── ReadOnlyTagCollection.cs │ │ │ ├── ReadOnlyTagCollection.cs.meta │ │ │ ├── TagCollection.cs │ │ │ ├── TagCollection.cs.meta │ │ │ ├── TagCollectionManager.cs │ │ │ └── TagCollectionManager.cs.meta │ ├── TextProcessing.meta │ ├── TextProcessing │ │ ├── ParsingUtility.cs │ │ ├── ParsingUtility.cs.meta │ │ ├── TMPEffectsTextProcessor.cs │ │ ├── TMPEffectsTextProcessor.cs.meta │ │ ├── TagProcessor.cs │ │ ├── TagProcessor.cs.meta │ │ ├── TagProcessorManager.cs │ │ └── TagProcessorManager.cs.meta │ ├── Timeline.meta │ └── Timeline │ │ ├── Behaviors.meta │ │ ├── Behaviors │ │ ├── TMPAnimationBehaviour.cs │ │ ├── TMPAnimationBehaviour.cs.meta │ │ ├── TMPMeshModifierBehaviour.cs │ │ └── TMPMeshModifierBehaviour.cs.meta │ │ ├── Clips.meta │ │ ├── Clips │ │ ├── TMPAnimationClip.cs │ │ ├── TMPAnimationClip.cs.meta │ │ ├── TMPMeshModifierClip.cs │ │ └── TMPMeshModifierClip.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── Internals.cs │ │ ├── Internals.cs.meta │ │ ├── Markers.meta │ │ ├── Markers │ │ ├── TMPAnimatorMarks.meta │ │ ├── TMPAnimatorMarks │ │ │ ├── TMPAnimatorMarkReceiver.cs │ │ │ ├── TMPAnimatorMarkReceiver.cs.meta │ │ │ ├── TMPResetAnimationsMarker.cs │ │ │ ├── TMPResetAnimationsMarker.cs.meta │ │ │ ├── TMPResetTimeMarker.cs │ │ │ ├── TMPResetTimeMarker.cs.meta │ │ │ ├── TMPSetUpdateFromMarker.cs │ │ │ ├── TMPSetUpdateFromMarker.cs.meta │ │ │ ├── TMPStartAnimatingMarker.cs │ │ │ ├── TMPStartAnimatingMarker.cs.meta │ │ │ ├── TMPStopAnimatingMarker.cs │ │ │ ├── TMPStopAnimatingMarker.cs.meta │ │ │ ├── TMPUpdateAnimationsMarker.cs │ │ │ └── TMPUpdateAnimationsMarker.cs.meta │ │ ├── TMPEffectsMark.cs │ │ ├── TMPEffectsMark.cs.meta │ │ ├── TMPWriterMarks.meta │ │ └── TMPWriterMarks │ │ │ ├── TMPResetWriterMarker.cs │ │ │ ├── TMPResetWriterMarker.cs.meta │ │ │ ├── TMPRestartWriterMarker.cs │ │ │ ├── TMPRestartWriterMarker.cs.meta │ │ │ ├── TMPSkipWriterMarker.cs │ │ │ ├── TMPSkipWriterMarker.cs.meta │ │ │ ├── TMPStartWriterMarker.cs │ │ │ ├── TMPStartWriterMarker.cs.meta │ │ │ ├── TMPStopWriterMarker.cs │ │ │ ├── TMPStopWriterMarker.cs.meta │ │ │ ├── TMPWriterMarkReceiver.cs │ │ │ ├── TMPWriterMarkReceiver.cs.meta │ │ │ ├── TMPWriterResetWaitMarker.cs │ │ │ ├── TMPWriterResetWaitMarker.cs.meta │ │ │ ├── TMPWriterSetSkippableMarker.cs │ │ │ ├── TMPWriterSetSkippableMarker.cs.meta │ │ │ ├── TMPWriterWaitMarker.cs │ │ │ └── TMPWriterWaitMarker.cs.meta │ │ ├── TMPEffects.Timeline.asmdef │ │ ├── TMPEffects.Timeline.asmdef.meta │ │ ├── TMPEffectsClip.cs │ │ ├── TMPEffectsClip.cs.meta │ │ ├── TMPEffectsTrack.cs │ │ ├── TMPEffectsTrack.cs.meta │ │ ├── TimelineAnimationStep.cs │ │ ├── TimelineAnimationStep.cs.meta │ │ ├── TrackMixers.meta │ │ ├── TrackMixers │ │ ├── TMPAnimatorTrackMixer.cs │ │ ├── TMPAnimatorTrackMixer.cs.meta │ │ ├── TMPMeshModifierTrackMixer.cs │ │ └── TMPMeshModifierTrackMixer.cs.meta │ │ ├── Tracks.meta │ │ └── Tracks │ │ ├── TMPAnimatorTrack.cs │ │ ├── TMPAnimatorTrack.cs.meta │ │ ├── TMPMeshModifierTrack.cs │ │ └── TMPMeshModifierTrack.cs.meta ├── Samples~ │ ├── Example SceneAnimations.meta │ ├── Example SceneAnimations │ │ ├── Basic.meta │ │ └── Basic │ │ │ ├── DraggableAnimation.cs │ │ │ ├── DraggableAnimation.cs.meta │ │ │ ├── FlashlightAnimation.cs │ │ │ └── FlashlightAnimation.cs.meta │ ├── Example Scenes.meta │ └── Example Scenes │ │ ├── LinkHandler.cs │ │ ├── LinkHandler.cs.meta │ │ ├── TMPEffects Example Scene.unity │ │ ├── TMPEffects Example Scene.unity.meta │ │ ├── TMPEffects Timeline Examples.unity │ │ ├── TMPEffects Timeline Examples.unity.meta │ │ ├── TMPEffectsTutorial.cs │ │ ├── TMPEffectsTutorial.cs.meta │ │ ├── Text (TMP)Timeline.playable │ │ └── Text (TMP)Timeline.playable.meta ├── TMPEffects.AutoParameters.Attributes.dll ├── TMPEffects.AutoParameters.Attributes.dll.meta ├── TMPEffects.AutoParameters.dll ├── TMPEffects.AutoParameters.dll.meta ├── TMPEffects.ParameterUtilityGenerator.dll ├── TMPEffects.ParameterUtilityGenerator.dll.meta ├── TMPEffects.StringLibrary.dll ├── TMPEffects.StringLibrary.dll.meta ├── Tests.meta ├── Tests │ ├── AnimationDatabase_Tests.asset │ ├── AnimationDatabase_Tests.asset.meta │ ├── Animations.meta │ ├── Animations │ │ ├── BasicAnimations.meta │ │ ├── BasicAnimations │ │ │ ├── CharAnimation.asset │ │ │ ├── CharAnimation.asset.meta │ │ │ ├── FadeAnimation.asset │ │ │ ├── FadeAnimation.asset.meta │ │ │ ├── FunkyAnimation.asset │ │ │ ├── FunkyAnimation.asset.meta │ │ │ ├── GrowAnimation.asset │ │ │ ├── GrowAnimation.asset.meta │ │ │ ├── JumpAnimation.asset │ │ │ ├── JumpAnimation.asset.meta │ │ │ ├── PaletteAnimation.asset │ │ │ ├── PaletteAnimation.asset.meta │ │ │ ├── PivotAnimation.asset │ │ │ ├── PivotAnimation.asset.meta │ │ │ ├── PivotContinuousAnimation.asset │ │ │ ├── PivotContinuousAnimation.asset.meta │ │ │ ├── ShakeAnimation.asset │ │ │ ├── ShakeAnimation.asset.meta │ │ │ ├── SpreadAnimation.asset │ │ │ ├── SpreadAnimation.asset.meta │ │ │ ├── SwingAnimation.asset │ │ │ ├── SwingAnimation.asset.meta │ │ │ ├── WaveAnimation.asset │ │ │ └── WaveAnimation.asset.meta │ │ ├── HideAnimations.meta │ │ ├── HideAnimations │ │ │ ├── CharHideAnimation.asset │ │ │ ├── CharHideAnimation.asset.meta │ │ │ ├── FadeHideAnimation.asset │ │ │ ├── FadeHideAnimation.asset.meta │ │ │ ├── GrowHideAnimation.asset │ │ │ ├── GrowHideAnimation.asset.meta │ │ │ ├── MoveInHideAnimation.asset │ │ │ ├── MoveInHideAnimation.asset.meta │ │ │ ├── PivotHideAnimation.asset │ │ │ ├── PivotHideAnimation.asset.meta │ │ │ ├── ShakeHideAnimation.asset │ │ │ ├── ShakeHideAnimation.asset.meta │ │ │ ├── SpreadHideAnimation.asset │ │ │ └── SpreadHideAnimation.asset.meta │ │ ├── ShowAnimations.meta │ │ └── ShowAnimations │ │ │ ├── CharShowAnimation.asset │ │ │ ├── CharShowAnimation.asset.meta │ │ │ ├── FadeShowAnimation.asset │ │ │ ├── FadeShowAnimation.asset.meta │ │ │ ├── GrowShowAnimation.asset │ │ │ ├── GrowShowAnimation.asset.meta │ │ │ ├── MoveInShowAnimation.asset │ │ │ ├── MoveInShowAnimation.asset.meta │ │ │ ├── PivotShowAnimation.asset │ │ │ ├── PivotShowAnimation.asset.meta │ │ │ ├── ShakeShowAnimation.asset │ │ │ ├── ShakeShowAnimation.asset.meta │ │ │ ├── SpreadShowAnimation.asset │ │ │ └── SpreadShowAnimation.asset.meta │ ├── BasicAnimationDatabase_Tests.asset │ ├── BasicAnimationDatabase_Tests.asset.meta │ ├── CharDataTests.cs │ ├── CharDataTests.cs.meta │ ├── CommandDatabase_Tests.asset │ ├── CommandDatabase_Tests.asset.meta │ ├── Commands.meta │ ├── Commands │ │ ├── DebugCommand.asset │ │ ├── DebugCommand.asset.meta │ │ ├── DelayCommand.asset │ │ ├── DelayCommand.asset.meta │ │ ├── ShowCommand.asset │ │ ├── ShowCommand.asset.meta │ │ ├── SkippableCommand.asset │ │ ├── SkippableCommand.asset.meta │ │ ├── WaitCommand.asset │ │ └── WaitCommand.asset.meta │ ├── HideAnimationDatabase_Tests.asset │ ├── HideAnimationDatabase_Tests.asset.meta │ ├── ParsingTests.cs │ ├── ParsingTests.cs.meta │ ├── ShowAnimationDatabase_Tests.asset │ ├── ShowAnimationDatabase_Tests.asset.meta │ ├── TMPAnimatorEditModeTests.cs │ ├── TMPAnimatorEditModeTests.cs.meta │ ├── TMPAnimatorPlayModeTests.cs │ ├── TMPAnimatorPlayModeTests.cs.meta │ ├── TMPEffects-TestScene.unity │ ├── TMPEffects-TestScene.unity.meta │ ├── TMPEffects.Tests.asmdef │ ├── TMPEffects.Tests.asmdef.meta │ ├── TMPMediatorTests.cs │ ├── TMPMediatorTests.cs.meta │ ├── TMPWriterTests.cs │ ├── TMPWriterTests.cs.meta │ ├── TagCollectionTests.cs │ ├── TagCollectionTests.cs.meta │ ├── TextProcessorTests.cs │ ├── TextProcessorTests.cs.meta │ ├── WaveTests.cs │ └── WaveTests.cs.meta ├── Third Party Notices.md ├── Third Party Notices.md.meta ├── package.json └── package.json.meta ├── README.md ├── TMPEffects.Projects~ ├── .idea │ └── .idea.TMPEffects.Projects │ │ └── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── TMPEffects.AutoParameters.Attributes │ ├── AutoParameterAttribute.cs │ ├── AutoParameterBundleAttribute.cs │ ├── AutoParametersAttribute.cs │ ├── AutoParametersStorageAttribute.cs │ ├── TMPEffects.AutoParameters.Attributes.csproj │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── TMPEffects.AutoParameters.Attributes.deps.json │ │ │ ├── TMPEffects.AutoParameters.Attributes.dll │ │ │ └── TMPEffects.AutoParameters.Attributes.pdb │ └── obj │ │ ├── Debug │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfo.cs │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfoInputs.cache │ │ ├── TMPEffects.AutoParameters.Attributes.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.AutoParameters.Attributes.assets.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.AssemblyReference.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.AutoParameters.Attributes.dll │ │ ├── TMPEffects.AutoParameters.Attributes.pdb │ │ ├── TMPEffects.AutoParameters.Attributes.sourcelink.json │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfo.cs │ │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfoInputs.cache │ │ │ ├── TMPEffects.AutoParameters.Attributes.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TMPEffects.AutoParameters.Attributes.assets.cache │ │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.AssemblyReference.cache │ │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.CoreCompileInputs.cache │ │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.FileListAbsolute.txt │ │ │ ├── TMPEffects.AutoParameters.Attributes.dll │ │ │ ├── TMPEffects.AutoParameters.Attributes.pdb │ │ │ └── TMPEffects.AutoParameters.Attributes.sourcelink.json │ │ ├── Release │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfo.cs │ │ ├── TMPEffects.AutoParameters.Attributes.AssemblyInfoInputs.cache │ │ ├── TMPEffects.AutoParameters.Attributes.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.AutoParameters.Attributes.assets.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.AssemblyReference.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.AutoParameters.Attributes.dll │ │ ├── TMPEffects.AutoParameters.Attributes.pdb │ │ └── TMPEffects.AutoParameters.Attributes.sourcelink.json │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.nuget.dgspec.json │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.nuget.g.props │ │ ├── TMPEffects.AutoParameters.Attributes.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── TMPEffects.AutoParameters │ ├── Analyzer │ │ ├── AutoParametersAnalyzer.AnalyzeAutoParameter.cs │ │ ├── AutoParametersAnalyzer.AnalyzeAutoParameters.cs │ │ ├── AutoParametersAnalyzer.AnalyzeAutoParametersStorage.cs │ │ ├── AutoParametersAnalyzer.Rules.cs │ │ └── AutoParametersAnalyzer.cs │ ├── AttributeSyntaxReceiver.cs │ ├── Bundle │ │ ├── TMPParameterBundleAnalyzer.cs │ │ ├── TMPParameterBundleFieldAnalyzer.cs │ │ └── TMPParameterBundleGenerator.cs │ ├── CodeFixProvider │ │ ├── AutoParameterCommandValidateHookFix.cs │ │ ├── AutoParametersCommandSetParametersHookFix.cs │ │ ├── AutoParametersGetNewCustomDataHookFix.cs │ │ ├── AutoParametersImplementAnimateFix.cs │ │ ├── AutoParametersImplementExecuteCommandFix.cs │ │ ├── AutoParametersSetParametersHookFix.cs │ │ ├── AutoParametersValidateHookFix.cs │ │ └── Bundle │ │ │ ├── BundleCreateHookFix.cs │ │ │ ├── BundleGetParametersHookFix.cs │ │ │ └── BundleValidateParametersHook.cs │ ├── Generator │ │ ├── AutoParametersGenerator.CreateAutoParameters.cs │ │ ├── AutoParametersGenerator.CreateITMPAnimationAutoParameters.cs │ │ ├── AutoParametersGenerator.CreateITMPCommandAutoParameters.cs │ │ └── AutoParametersGenerator.cs │ ├── TMPEffects.AutoParameters.csproj │ ├── Utility.cs │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── TMPEffects.AutoParameters.deps.json │ │ │ ├── TMPEffects.AutoParameters.dll │ │ │ ├── TMPEffects.AutoParameters.pdb │ │ │ ├── TMPEffects.StringLibrary.dll │ │ │ └── TMPEffects.StringLibrary.pdb │ └── obj │ │ ├── Debug │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.AutoParameters.AssemblyInfo.cs │ │ ├── TMPEffects.AutoParameters.AssemblyInfoInputs.cache │ │ ├── TMPEffects.AutoParameters.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.AutoParameters.assets.cache │ │ ├── TMPEffects.AutoParameters.csproj.AssemblyReference.cache │ │ ├── TMPEffects.AutoParameters.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.AutoParameters.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.AutoParameters.dll │ │ ├── TMPEffects.AutoParameters.pdb │ │ ├── TMPEffects.AutoParameters.sourcelink.json │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ ├── TMPEffec.38DD60C8.Up2Date │ │ │ ├── TMPEffects.AutoParameters.AssemblyInfo.cs │ │ │ ├── TMPEffects.AutoParameters.AssemblyInfoInputs.cache │ │ │ ├── TMPEffects.AutoParameters.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TMPEffects.AutoParameters.assets.cache │ │ │ ├── TMPEffects.AutoParameters.csproj.AssemblyReference.cache │ │ │ ├── TMPEffects.AutoParameters.csproj.CoreCompileInputs.cache │ │ │ ├── TMPEffects.AutoParameters.csproj.FileListAbsolute.txt │ │ │ ├── TMPEffects.AutoParameters.dll │ │ │ ├── TMPEffects.AutoParameters.pdb │ │ │ └── TMPEffects.AutoParameters.sourcelink.json │ │ ├── Release │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.AutoParameters.AssemblyInfo.cs │ │ ├── TMPEffects.AutoParameters.AssemblyInfoInputs.cache │ │ ├── TMPEffects.AutoParameters.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.AutoParameters.assets.cache │ │ ├── TMPEffects.AutoParameters.csproj.AssemblyReference.cache │ │ ├── TMPEffects.AutoParameters.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.AutoParameters.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.AutoParameters.dll │ │ ├── TMPEffects.AutoParameters.pdb │ │ └── TMPEffects.AutoParameters.sourcelink.json │ │ ├── TMPEffects.AutoParameters.csproj.nuget.dgspec.json │ │ ├── TMPEffects.AutoParameters.csproj.nuget.g.props │ │ ├── TMPEffects.AutoParameters.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── TMPEffects.ParameterUtilityGenerator │ ├── ParameterTypeAnalyzer.cs │ ├── ParameterTypeAttributeSyntaxReceiver.cs │ ├── ParameterTypeGenerator.cs │ ├── ParameterTypeImplementStringToCodeFixProvider.cs │ ├── ParameterUtilityGenerator.cs │ ├── TMPEffects.ParameterUtilityGenerator.csproj │ ├── Utility.cs │ ├── bin │ │ └── Debug │ │ │ └── netstandard2.0 │ │ │ ├── TMPEffects.ParameterUtilityGenerator.deps.json │ │ │ ├── TMPEffects.ParameterUtilityGenerator.dll │ │ │ ├── TMPEffects.ParameterUtilityGenerator.pdb │ │ │ ├── TMPEffects.StringLibrary.dll │ │ │ └── TMPEffects.StringLibrary.pdb │ └── obj │ │ ├── Debug │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfo.cs │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfoInputs.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.ParameterUtilityGenerator.assets.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.AssemblyReference.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.ParameterUtilityGenerator.dll │ │ ├── TMPEffects.ParameterUtilityGenerator.pdb │ │ ├── TMPEffects.ParameterUtilityGenerator.sourcelink.json │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ ├── TMPEffec.846E2A58.Up2Date │ │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfo.cs │ │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfoInputs.cache │ │ │ ├── TMPEffects.ParameterUtilityGenerator.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TMPEffects.ParameterUtilityGenerator.assets.cache │ │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.AssemblyReference.cache │ │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.CoreCompileInputs.cache │ │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.FileListAbsolute.txt │ │ │ ├── TMPEffects.ParameterUtilityGenerator.dll │ │ │ ├── TMPEffects.ParameterUtilityGenerator.pdb │ │ │ └── TMPEffects.ParameterUtilityGenerator.sourcelink.json │ │ ├── Release │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfo.cs │ │ ├── TMPEffects.ParameterUtilityGenerator.AssemblyInfoInputs.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.ParameterUtilityGenerator.assets.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.AssemblyReference.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.ParameterUtilityGenerator.dll │ │ ├── TMPEffects.ParameterUtilityGenerator.pdb │ │ └── TMPEffects.ParameterUtilityGenerator.sourcelink.json │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.nuget.dgspec.json │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.nuget.g.props │ │ ├── TMPEffects.ParameterUtilityGenerator.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── project.packagespec.json │ │ ├── rider.project.model.nuget.info │ │ └── rider.project.restore.info ├── TMPEffects.Projects.sln ├── TMPEffects.Projects.sln.DotSettings.user └── TMPEffects.StringLibrary │ ├── Strings.cs │ ├── TMPEffects.StringLibrary.csproj │ ├── bin │ └── Debug │ │ └── netstandard2.0 │ │ ├── TMPEffects.StringLibrary.deps.json │ │ ├── TMPEffects.StringLibrary.dll │ │ └── TMPEffects.StringLibrary.pdb │ └── obj │ ├── Debug │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ ├── TMPEffects.StringLibrary.AssemblyInfo.cs │ ├── TMPEffects.StringLibrary.AssemblyInfoInputs.cache │ ├── TMPEffects.StringLibrary.GeneratedMSBuildEditorConfig.editorconfig │ ├── TMPEffects.StringLibrary.assets.cache │ ├── TMPEffects.StringLibrary.csproj.AssemblyReference.cache │ ├── TMPEffects.StringLibrary.csproj.CoreCompileInputs.cache │ ├── TMPEffects.StringLibrary.csproj.FileListAbsolute.txt │ ├── TMPEffects.StringLibrary.dll │ ├── TMPEffects.StringLibrary.pdb │ ├── TMPEffects.StringLibrary.sourcelink.json │ └── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── TMPEffects.StringLibrary.AssemblyInfo.cs │ │ ├── TMPEffects.StringLibrary.AssemblyInfoInputs.cache │ │ ├── TMPEffects.StringLibrary.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TMPEffects.StringLibrary.assets.cache │ │ ├── TMPEffects.StringLibrary.csproj.AssemblyReference.cache │ │ ├── TMPEffects.StringLibrary.csproj.CoreCompileInputs.cache │ │ ├── TMPEffects.StringLibrary.csproj.FileListAbsolute.txt │ │ ├── TMPEffects.StringLibrary.dll │ │ ├── TMPEffects.StringLibrary.pdb │ │ └── TMPEffects.StringLibrary.sourcelink.json │ ├── Release │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ ├── TMPEffects.StringLibrary.AssemblyInfo.cs │ ├── TMPEffects.StringLibrary.AssemblyInfoInputs.cache │ ├── TMPEffects.StringLibrary.GeneratedMSBuildEditorConfig.editorconfig │ ├── TMPEffects.StringLibrary.assets.cache │ ├── TMPEffects.StringLibrary.csproj.AssemblyReference.cache │ ├── TMPEffects.StringLibrary.csproj.CoreCompileInputs.cache │ ├── TMPEffects.StringLibrary.csproj.FileListAbsolute.txt │ ├── TMPEffects.StringLibrary.dll │ ├── TMPEffects.StringLibrary.pdb │ └── TMPEffects.StringLibrary.sourcelink.json │ ├── TMPEffects.StringLibrary.csproj.nuget.dgspec.json │ ├── TMPEffects.StringLibrary.csproj.nuget.g.props │ ├── TMPEffects.StringLibrary.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info └── gifs ├── basic-overview.gif ├── showhide-overview.gif ├── timeline.gif ├── tmpeffects-git.gif ├── tmpeffectscommands-git.gif ├── tmpeffectsshowhide-git.gif └── tmpeffectwrite-git.gif /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package/ACKNOWLEDGMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/ACKNOWLEDGMENTS.md -------------------------------------------------------------------------------- /Package/ACKNOWLEDGMENTS.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/ACKNOWLEDGMENTS.md.meta -------------------------------------------------------------------------------- /Package/Editor Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/animation-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/animation-database.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/animation-database.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/animation-database.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/command-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/command-database.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/command-database.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/command-database.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/command.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/command.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/command.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/hide-anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/hide-anim.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/hide-anim.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/hide-anim.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/hide-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/hide-database.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/hide-database.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/hide-database.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/show-anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/show-anim.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/show-anim.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/show-anim.png.meta -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/show-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/show-database.png -------------------------------------------------------------------------------- /Package/Editor Resources/ScriptIcons/show-database.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor Resources/ScriptIcons/show-database.png.meta -------------------------------------------------------------------------------- /Package/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor.meta -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation.meta -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/AnimationStepDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/AnimationStepDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/AnimationStepDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/AnimationStepDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/ColorOverrideDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/ColorOverrideDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/ColorOverrideDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/ColorOverrideDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/EditorFriendlyCharDataModifiersDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/EditorFriendlyCharDataModifiersDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/GenericAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/GenericAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/GenericAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/GenericAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/RotationDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/RotationDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/GenericAnimation/RotationDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/GenericAnimation/RotationDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/OffsetBundleDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/OffsetBundleDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/OffsetBundleDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/OffsetBundleDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/OffsetTypeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/OffsetTypeDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/OffsetTypeDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/OffsetTypeDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/PowerEnumDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/PowerEnumDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/PowerEnumDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/PowerEnumDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Settings & Preferences.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Settings & Preferences.meta -------------------------------------------------------------------------------- /Package/Editor/Settings & Preferences/TMPEffectsSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Settings & Preferences/TMPEffectsSettingsEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Settings & Preferences/TMPEffectsSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Settings & Preferences/TMPEffectsSettingsEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Stack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Stack.meta -------------------------------------------------------------------------------- /Package/Editor/Stack/AnimPrefixTupleDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Stack/AnimPrefixTupleDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/Stack/AnimPrefixTupleDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Stack/AnimPrefixTupleDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Stack/AnimationStackObjectEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Stack/AnimationStackObjectEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Stack/AnimationStackObjectEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Stack/AnimationStackObjectEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPAnimationEditorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPAnimationEditorBase.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPAnimationEditorBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPAnimationEditorBase.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPHideAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPHideAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPHideAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPHideAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneHideAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneHideAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneHideAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneHideAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneShowAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneShowAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPSceneShowAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPSceneShowAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPShowAnimationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPShowAnimationEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimation Editor/TMPShowAnimationEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimation Editor/TMPShowAnimationEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimatorDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimatorDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimatorDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimatorDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPAnimatorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimatorEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPAnimatorEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPAnimatorEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPBasicAnimationDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPBasicAnimationDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPBasicAnimationDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPBasicAnimationDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPBlendCurveDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPBlendCurveDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/TMPBlendCurveDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPBlendCurveDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPCommandDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPCommandDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPCommandDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPCommandDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPEffects.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPEffects.Editor.asmdef -------------------------------------------------------------------------------- /Package/Editor/TMPEffects.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPEffects.Editor.asmdef.meta -------------------------------------------------------------------------------- /Package/Editor/TMPGenericSceneCommandDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPGenericSceneCommandDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/TMPGenericSceneCommandDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPGenericSceneCommandDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPHideAnimationDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPHideAnimationDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPHideAnimationDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPHideAnimationDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPKeywordDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPKeywordDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPKeywordDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPKeywordDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPSceneCommandWrapperDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPSceneCommandWrapperDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/TMPSceneCommandWrapperDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPSceneCommandWrapperDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPShowAnimationDatabaseEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPShowAnimationDatabaseEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPShowAnimationDatabaseEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPShowAnimationDatabaseEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TMPWriterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPWriterEditor.cs -------------------------------------------------------------------------------- /Package/Editor/TMPWriterEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TMPWriterEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/ClipAction.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/ClipAction.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/ClipAction/CopyInitialModifiersFromPreviousClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/ClipAction/CopyInitialModifiersFromPreviousClip.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/ExportToGenericUtilityWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/ExportToGenericUtilityWindow.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/ExportToGenericUtilityWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/ExportToGenericUtilityWindow.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/KeyFrameEditorWindow.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Package/Editor/Timeline/KeyFrameEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/KeyFrameEditorWindow.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-resetanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-resetanimations.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-settings.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-settings.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-settings.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-start.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-start.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-start.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-stop.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-stop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-stop.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-updateonce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-updateonce.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/animator-updateonce.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/animator-updateonce.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-play.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-play.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-play.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-reset.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-reset.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-reset.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-restart.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-restart.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-restart.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-settings.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-settings.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-settings.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-skip.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-skip.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-skip.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-stop.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-stop.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-stop.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-wait.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer-wait.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer-wait.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer.png -------------------------------------------------------------------------------- /Package/Editor/Timeline/Resources/MarkerIcons/writer.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/Resources/MarkerIcons/writer.png.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimationClipEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimationClipEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimationClipEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimationClipEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimationClipInspectorEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimationClipInspectorEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimationClipInspectorEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimationClipInspectorEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimatorMarkerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimatorMarkerEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPAnimatorMarkerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPAnimatorMarkerEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPEffects.Timeline.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPEffects.Timeline.Editor.asmdef -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPEffects.Timeline.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPEffects.Timeline.Editor.asmdef.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPEffectsTimelineActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPEffectsTimelineActions.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPEffectsTimelineActions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPEffectsTimelineActions.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPMeshModifierClipEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPMeshModifierClipEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPMeshModifierClipEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPMeshModifierClipEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPWriterMarkerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPWriterMarkerEditor.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TMPWriterMarkerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TMPWriterMarkerEditor.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TimelineAnimationStepDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TimelineAnimationStepDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TimelineAnimationStepDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TimelineAnimationStepDrawer.cs.meta -------------------------------------------------------------------------------- /Package/Editor/Timeline/TimelineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TimelineUtility.cs -------------------------------------------------------------------------------- /Package/Editor/Timeline/TimelineUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/Timeline/TimelineUtility.cs.meta -------------------------------------------------------------------------------- /Package/Editor/TypedVectorDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TypedVectorDrawer.cs -------------------------------------------------------------------------------- /Package/Editor/TypedVectorDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Editor/TypedVectorDrawer.cs.meta -------------------------------------------------------------------------------- /Package/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/LICENSE.md -------------------------------------------------------------------------------- /Package/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/LICENSE.md.meta -------------------------------------------------------------------------------- /Package/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/pausebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/pausebutton.png -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/pausebutton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/pausebutton.png.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/playButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/playButton.png -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/playButton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/playButton.png.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/resetButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/resetButton.png -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/resetButton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/resetButton.png.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/skipButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/skipButton.png -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/skipButton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/skipButton.png.meta -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/stopButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/stopButton.png -------------------------------------------------------------------------------- /Package/Resources/PlayerIcons/stopButton.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/PlayerIcons/stopButton.png.meta -------------------------------------------------------------------------------- /Package/Resources/TMPEffects Required Resources.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/TMPEffects Required Resources.unitypackage -------------------------------------------------------------------------------- /Package/Resources/TMPEffects Required Resources.unitypackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/TMPEffects Required Resources.unitypackage.meta -------------------------------------------------------------------------------- /Package/Resources/Text (TMP)Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/Text (TMP)Timeline.playable -------------------------------------------------------------------------------- /Package/Resources/Text (TMP)Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Resources/Text (TMP)Timeline.playable.meta -------------------------------------------------------------------------------- /Package/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/CharData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/CharData.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/CharData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/CharData.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Info.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Info.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Info.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/CharDataModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/CharDataModifiers.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/CharDataModifiers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/CharDataModifiers.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/ColorOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/ColorOverride.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/ColorOverride.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/ColorOverride.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/EditorFriendlyCharDataModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/EditorFriendlyCharDataModifiers.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/Rotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/Rotation.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/Rotation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/Rotation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/TMPCharacterModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/TMPCharacterModifiers.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/TMPCharacterModifiers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/TMPCharacterModifiers.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/TMPMeshModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/TMPMeshModifiers.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/TMPMeshModifiers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/TMPMeshModifiers.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/Vector3Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/Vector3Override.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/Mesh Modifiers/Vector3Override.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/Mesh Modifiers/Vector3Override.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/ReadOnlyVertexData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/ReadOnlyVertexData.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/ReadOnlyVertexData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/ReadOnlyVertexData.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/VertexData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/VertexData.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/VertexData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/VertexData.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/CharData/VisibilityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/VisibilityState.cs -------------------------------------------------------------------------------- /Package/Runtime/CharData/VisibilityState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/CharData/VisibilityState.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationCacher.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationCacher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationCacher.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationUpdater.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimationUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimationUpdater.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimatorContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/AnimatorContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/AnimatorContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/CachedAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/CachedAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/CachedAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/CachedAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/DummyDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/DummyDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/DummyDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/DummyDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/IAnimatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/IAnimatorContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/IAnimatorContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/IAnimatorContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/ReadOnlyAnimatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/ReadOnlyAnimatorContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/ReadOnlyAnimatorContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/ReadOnlyAnimatorContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/SegmentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/SegmentData.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/SegmentData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/SegmentData.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimationType.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimationType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimationType.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimator.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimator.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimatorUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimatorUpdater.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/TMPAnimatorUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/TMPAnimatorUpdater.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/UpdateFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/UpdateFrom.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPAnimator/UpdateFrom.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPAnimator/UpdateFrom.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPEffectComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPEffectComponent.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPEffectComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPEffectComponent.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPMediator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPMediator.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPMediator/TMPMediator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPMediator/TMPMediator.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPMediator/TMPMediator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPMediator/TMPMediator.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPMediator/TMPMediatorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPMediator/TMPMediatorManager.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPMediator/TMPMediatorManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPMediator/TMPMediatorManager.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CachedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CachedCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CachedCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CachedCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CachedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CachedEvent.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CachedEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CachedEvent.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CommandCacher.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandCacher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CommandCacher.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CommandContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc7e92c78cab4687abf76941592e19b6 3 | timeCreated: 1733760993 -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CommandDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/CommandDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/CommandDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/EventCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/EventCacher.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/EventCacher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/EventCacher.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ICachedInvokable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/ICachedInvokable.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ICachedInvokable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/ICachedInvokable.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ICommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/ICommandContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ICommandContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee7973a4014c4a579eaa8c2b41a098ae 3 | timeCreated: 1733760945 -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ReadOnlyCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/ReadOnlyCommandContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/ReadOnlyCommandContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a45fd0ee539947a89c224c827f431411 3 | timeCreated: 1733761014 -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/TMPWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/TMPWriter.cs -------------------------------------------------------------------------------- /Package/Runtime/Components/TMPWriter/TMPWriter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Components/TMPWriter/TMPWriter.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabaseBase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabaseBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPAnimationDatabaseBase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPBasicAnimationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPBasicAnimationDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPHideAnimationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPHideAnimationDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPHideAnimationDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPHideAnimationDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPShowAnimationDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPShowAnimationDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/AnimationDatabase/TMPShowAnimationDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/AnimationDatabase/TMPShowAnimationDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/CommandDatabase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/CommandDatabase.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/CommandDatabase/TMPCommandDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/CommandDatabase/TMPCommandDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/CommandDatabase/TMPCommandDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/CommandDatabase/TMPCommandDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/ITMPEffectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/ITMPEffectDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/ITMPEffectDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/ITMPEffectDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/CompositeTMPKeywordDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/CompositeTMPKeywordDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/ITMPKeywordDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/ITMPKeywordDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/ITMPKeywordDatabase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28852c4716c7461181fe4db27c65976a 3 | timeCreated: 1730467557 -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabaseBase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabaseBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPKeywordDatabaseBase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/KeywordDatabase/TMPSceneKeywordDatabaseBase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/TMPEffectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/TMPEffectDatabase.cs -------------------------------------------------------------------------------- /Package/Runtime/Databases/TMPEffectDatabase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Databases/TMPEffectDatabase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories.meta -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/EffectCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/EffectCategory.cs -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/EffectCategory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/EffectCategory.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPAnimationCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPAnimationCategory.cs -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPAnimationCategory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPAnimationCategory.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPCommandCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPCommandCategory.cs -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPCommandCategory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPCommandCategory.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPEventCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPEventCategory.cs -------------------------------------------------------------------------------- /Package/Runtime/EffectCategories/TMPEventCategory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/EffectCategories/TMPEventCategory.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationCurveUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationCurveUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationCurveUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationCurveUtility.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationStep.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/AnimationStep.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/AnimationStep.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/CharAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/CharAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/CharAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/CharAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/ContPivotAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/ContPivotAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/DangleAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/DangleAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/FadeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/FadeAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/FadeAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/FadeAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/FunkyAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/FunkyAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/GenericAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/GenericAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/GrowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/GrowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/GrowAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/GrowAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/PaletteAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/PaletteAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/PivotAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/PivotAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/ShakeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/ShakeAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/ShearAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/ShearAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/SketchyAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/SketchyAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/SpreadAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/SpreadAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/SpriteAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/SpriteAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/WaveAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/WaveAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Basic Animations/WaveAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Basic Animations/WaveAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/CharHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/CharHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/CurveHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/CurveHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/DummyHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/DummyHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/FadeHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/FadeHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/GrowHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/GrowHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/MoveInHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/MoveInHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/PivotHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/PivotHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/ShakeHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/ShakeHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Hide Animations/SpreadHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Hide Animations/SpreadHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/IAnimationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/IAnimationContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/IAnimationContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/IAnimationContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/ITMPAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/ITMPAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/ITMPAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/ITMPAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/ReadOnlyAnimationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/ReadOnlyAnimationContext.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/ReadOnlyAnimationContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/ReadOnlyAnimationContext.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/CharShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/CharShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/CurveShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/CurveShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/DummyShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/DummyShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/FadeShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/FadeShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/GrowShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/GrowShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/MoveInShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/MoveInShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/PivotShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/PivotShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/ShakeShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/ShakeShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Show Animations/SpreadShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Show Animations/SpreadShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/AnimationStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/AnimationStack.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/AnimationStack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/AnimationStack.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/AnimationStackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/AnimationStackObject.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/AnimationStackObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/AnimationStackObject.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/HideAnimationStackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/HideAnimationStackObject.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/HideAnimationStackObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/HideAnimationStackObject.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/ShowAnimationStackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/ShowAnimationStackObject.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/Stack/ShowAnimationStackObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/Stack/ShowAnimationStackObject.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPAnimationUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPAnimationUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPAnimationUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPAnimationUtility.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPHideAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPHideAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPAnimations/TMPShowAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPAnimations/TMPShowAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/DebugCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/DebugCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/DebugCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/DebugCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/DelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/DelayCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/DelayCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/DelayCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/ShowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/ShowCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/ShowCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/ShowCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/SkippableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/SkippableCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/SkippableCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/SkippableCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/WaitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/WaitCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/Commands/WaitCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/Commands/WaitCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/ITMPCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/ITMPCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/ITMPCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/ITMPCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPCommandArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPCommandArgs.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPCommandArgs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPCommandArgs.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPGenericSceneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPGenericSceneCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPGenericSceneCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPGenericSceneCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPSceneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPSceneCommand.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPSceneCommand.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPSceneCommand.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPSceneCommandWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPSceneCommandWrapper.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TMPSceneCommandWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TMPSceneCommandWrapper.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TagType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TagType.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPCommands/TagType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPCommands/TagType.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPEvents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPEvents.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPEvents/TMPEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPEvents/TMPEvent.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPEvents/TMPEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPEvents/TMPEvent.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPEvents/TMPEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPEvents/TMPEventArgs.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPEvents/TMPEventArgs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPEvents/TMPEventArgs.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimationBase.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimationBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneAnimationBase.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneHideAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneHideAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneHideAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneHideAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneShowAnimation.cs -------------------------------------------------------------------------------- /Package/Runtime/Effects/TMPSceneAnimations/TMPSceneShowAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Effects/TMPSceneAnimations/TMPSceneShowAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Extensions.meta -------------------------------------------------------------------------------- /Package/Runtime/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Extensions/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/Extensions/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Extensions/Extensions.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Internals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Internals.cs -------------------------------------------------------------------------------- /Package/Runtime/Internals.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Internals.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/ObjectChangedEvent.meta -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent/INotifyObjectChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/ObjectChangedEvent/INotifyObjectChanged.cs -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent/INotifyObjectChanged.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/ObjectChangedEvent/INotifyObjectChanged.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent/ObjectChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/ObjectChangedEvent/ObjectChangedEventHandler.cs -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent/ObjectChangedEventHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/ObjectChangedEvent/ObjectChangedEventHandler.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/ObjectChangedEvent/TMPEffects.NotifyObjectChanged.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TMPEffects.NotifyObjectChanged" 3 | } 4 | -------------------------------------------------------------------------------- /Package/Runtime/Parameters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterBundleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterBundleAttribute.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterBundleAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterBundleAttribute.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterBundleField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterBundleField.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterBundleField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterBundleField.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterTypeAttribute.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Attributes/TMPParameterTypeAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Attributes/TMPParameterTypeAttribute.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Bundles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Bundles.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Bundles/TMPBlendCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Bundles/TMPBlendCurve.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Bundles/TMPBlendCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Bundles/TMPBlendCurve.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Bundles/Wave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Bundles/Wave.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Bundles/Wave.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 074689ba2ab94aaf872d5eeb4037a156 3 | timeCreated: 1732550028 -------------------------------------------------------------------------------- /Package/Runtime/Parameters/ITMPParameterValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/ITMPParameterValidator.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/ITMPParameterValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/ITMPParameterValidator.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/ParameterParsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/ParameterParsing.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/ParameterParsing.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/ParameterParsing.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/TMPParameterTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/TMPParameterTypes.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/TMPParameterTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/TMPParameterTypes.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/TMPParameterUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/TMPParameterUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/TMPParameterUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/TMPParameterUtility.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/ITMPOffsetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/ITMPOffsetProvider.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/ITMPOffsetProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/ITMPOffsetProvider.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/OffsetBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/OffsetBundle.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/OffsetBundle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/OffsetBundle.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/OffsetTypePowerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/OffsetTypePowerEnum.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/OffsetTypePowerEnum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/OffsetTypePowerEnum.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/PowerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/PowerEnum.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/PowerEnum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/PowerEnum.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/SceneOffsetBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/SceneOffsetBundle.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/SceneOffsetBundle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/SceneOffsetBundle.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/SceneOffsetTypePowerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/SceneOffsetTypePowerEnum.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/SceneOffsetTypePowerEnum.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/SceneOffsetTypePowerEnum.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/TMPOffsetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/TMPOffsetProvider.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/TMPOffsetProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/TMPOffsetProvider.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/TMPSceneOffsetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/TMPSceneOffsetProvider.cs -------------------------------------------------------------------------------- /Package/Runtime/Parameters/Types/Offset/TMPSceneOffsetProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Parameters/Types/Offset/TMPSceneOffsetProvider.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Assets.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Assets/BurgerMenu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Assets/BurgerMenu@2x.png -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Assets/BurgerMenu@2x.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Assets/BurgerMenu@2x.png.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Data.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementData.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementData.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Data/ElementSettings.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Data/PropertyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Data/PropertyData.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/DisplayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/DisplayType.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/DisplayType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/DisplayType.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/KeyListGenerators.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/KeyListGenerators.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/PagingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/PagingElement.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/PagingElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/PagingElement.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Search.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Search.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Search/Matchers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Search/Matchers.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Search/SearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Search/SearchQuery.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Settings.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/States.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/States.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/States/ListState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/States/ListState.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/States/ListState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/States/ListState.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Utility.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/LabelWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/LabelWidth.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/RectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/RectUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/SCEnumUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Editor/Scripts/Utility/SCEnumUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/LICENSE.md -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/LICENSE.md.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/LookupTables.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/LookupTables.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/LookupTables/IKeyable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/LookupTables/IKeyable.cs -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/LookupTables/IKeyable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/LookupTables/IKeyable.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/Scripts.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/Scripts/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("TMPEffects.SerializedCollections.Editor")] -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/Scripts/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/Scripts/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/SerializedDictionary/Runtime/Scripts/SerializedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/SerializedDictionary/Runtime/Scripts/SerializedDictionary.cs -------------------------------------------------------------------------------- /Package/Runtime/TMPEffects.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffects.asmdef -------------------------------------------------------------------------------- /Package/Runtime/TMPEffects.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffects.asmdef.meta -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsBugReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsBugReport.cs -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsBugReport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsBugReport.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsResourceImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsResourceImporter.cs -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsResourceImporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsResourceImporter.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsSettings.cs -------------------------------------------------------------------------------- /Package/Runtime/TMPEffectsSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TMPEffectsSettings.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/CachedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/CachedCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/CachedCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/CachedCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITMPPrefixSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITMPPrefixSupplier.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITMPPrefixSupplier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITMPPrefixSupplier.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITMPTagValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITMPTagValidator.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITMPTagValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITMPTagValidator.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITagCacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITagCacher.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITagCacher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITagCacher.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITagWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITagWrapper.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/ITagWrapper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/ITagWrapper.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTag.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTag.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTag.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTagIndices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTagIndices.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTagIndices.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTagIndices.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTagTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTagTuple.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TMPEffectTagTuple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TMPEffectTagTuple.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/IReadOnlyTagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/IReadOnlyTagCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/IReadOnlyTagCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/IReadOnlyTagCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ITagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ITagCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ITagCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ITagCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ITagCollectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ITagCollectionManager.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ITagCollectionManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ITagCollectionManager.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ObservableTagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ObservableTagCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ObservableTagCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ObservableTagCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ReadOnlyTagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ReadOnlyTagCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/ReadOnlyTagCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/ReadOnlyTagCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/TagCollection.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/TagCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/TagCollection.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/TagCollectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/TagCollectionManager.cs -------------------------------------------------------------------------------- /Package/Runtime/Tags/TagCollection/TagCollectionManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Tags/TagCollection/TagCollectionManager.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing.meta -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/ParsingUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/ParsingUtility.cs -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/ParsingUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/ParsingUtility.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TMPEffectsTextProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TMPEffectsTextProcessor.cs -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TMPEffectsTextProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TMPEffectsTextProcessor.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TagProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TagProcessor.cs -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TagProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TagProcessor.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TagProcessorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TagProcessorManager.cs -------------------------------------------------------------------------------- /Package/Runtime/TextProcessing/TagProcessorManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/TextProcessing/TagProcessorManager.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Behaviors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Behaviors.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Behaviors/TMPAnimationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Behaviors/TMPAnimationBehaviour.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Behaviors/TMPAnimationBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Behaviors/TMPAnimationBehaviour.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Behaviors/TMPMeshModifierBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Behaviors/TMPMeshModifierBehaviour.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Behaviors/TMPMeshModifierBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Behaviors/TMPMeshModifierBehaviour.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Clips.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Clips.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Clips/TMPAnimationClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Clips/TMPAnimationClip.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Clips/TMPAnimationClip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Clips/TMPAnimationClip.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Clips/TMPMeshModifierClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Clips/TMPMeshModifierClip.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Clips/TMPMeshModifierClip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Clips/TMPMeshModifierClip.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Extensions.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Extensions.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Internals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Internals.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Internals.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Internals.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPAnimatorMarks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPAnimatorMarks.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPAnimatorMarkReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPAnimatorMarkReceiver.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPResetTimeMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPResetTimeMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPResetTimeMarker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPResetTimeMarker.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPSetUpdateFromMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPAnimatorMarks/TMPSetUpdateFromMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPEffectsMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPEffectsMark.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPEffectsMark.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPEffectsMark.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPResetWriterMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPResetWriterMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPRestartWriterMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPRestartWriterMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPSkipWriterMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPSkipWriterMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPStartWriterMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPStartWriterMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPStopWriterMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPStopWriterMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPWriterMarkReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPWriterMarkReceiver.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPWriterWaitMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Markers/TMPWriterMarks/TMPWriterWaitMarker.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffects.Timeline.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffects.Timeline.asmdef -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffects.Timeline.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffects.Timeline.asmdef.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffectsClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffectsClip.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffectsClip.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffectsClip.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffectsTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffectsTrack.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TMPEffectsTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TMPEffectsTrack.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TimelineAnimationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TimelineAnimationStep.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TimelineAnimationStep.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TimelineAnimationStep.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TrackMixers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TrackMixers.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TrackMixers/TMPAnimatorTrackMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TrackMixers/TMPAnimatorTrackMixer.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TrackMixers/TMPAnimatorTrackMixer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TrackMixers/TMPAnimatorTrackMixer.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TrackMixers/TMPMeshModifierTrackMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TrackMixers/TMPMeshModifierTrackMixer.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/TrackMixers/TMPMeshModifierTrackMixer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/TrackMixers/TMPMeshModifierTrackMixer.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Tracks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Tracks.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Tracks/TMPAnimatorTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Tracks/TMPAnimatorTrack.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Tracks/TMPAnimatorTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Tracks/TMPAnimatorTrack.cs.meta -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Tracks/TMPMeshModifierTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Tracks/TMPMeshModifierTrack.cs -------------------------------------------------------------------------------- /Package/Runtime/Timeline/Tracks/TMPMeshModifierTrack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Runtime/Timeline/Tracks/TMPMeshModifierTrack.cs.meta -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations.meta -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations/Basic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations/Basic.meta -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations/Basic/DraggableAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations/Basic/DraggableAnimation.cs -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations/Basic/DraggableAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations/Basic/DraggableAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations/Basic/FlashlightAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations/Basic/FlashlightAnimation.cs -------------------------------------------------------------------------------- /Package/Samples~/Example SceneAnimations/Basic/FlashlightAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example SceneAnimations/Basic/FlashlightAnimation.cs.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/LinkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/LinkHandler.cs -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/LinkHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/LinkHandler.cs.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffects Example Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffects Example Scene.unity -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffects Example Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffects Example Scene.unity.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffects Timeline Examples.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffects Timeline Examples.unity -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffects Timeline Examples.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffects Timeline Examples.unity.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffectsTutorial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffectsTutorial.cs -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/TMPEffectsTutorial.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/TMPEffectsTutorial.cs.meta -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/Text (TMP)Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/Text (TMP)Timeline.playable -------------------------------------------------------------------------------- /Package/Samples~/Example Scenes/Text (TMP)Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Samples~/Example Scenes/Text (TMP)Timeline.playable.meta -------------------------------------------------------------------------------- /Package/TMPEffects.AutoParameters.Attributes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.AutoParameters.Attributes.dll -------------------------------------------------------------------------------- /Package/TMPEffects.AutoParameters.Attributes.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.AutoParameters.Attributes.dll.meta -------------------------------------------------------------------------------- /Package/TMPEffects.AutoParameters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.AutoParameters.dll -------------------------------------------------------------------------------- /Package/TMPEffects.AutoParameters.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.AutoParameters.dll.meta -------------------------------------------------------------------------------- /Package/TMPEffects.ParameterUtilityGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.ParameterUtilityGenerator.dll -------------------------------------------------------------------------------- /Package/TMPEffects.ParameterUtilityGenerator.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.ParameterUtilityGenerator.dll.meta -------------------------------------------------------------------------------- /Package/TMPEffects.StringLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.StringLibrary.dll -------------------------------------------------------------------------------- /Package/TMPEffects.StringLibrary.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/TMPEffects.StringLibrary.dll.meta -------------------------------------------------------------------------------- /Package/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests.meta -------------------------------------------------------------------------------- /Package/Tests/AnimationDatabase_Tests.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/AnimationDatabase_Tests.asset -------------------------------------------------------------------------------- /Package/Tests/AnimationDatabase_Tests.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/AnimationDatabase_Tests.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/CharAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/CharAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/CharAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/CharAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/FadeAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/FadeAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/FadeAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/FadeAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/FunkyAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/FunkyAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/FunkyAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/FunkyAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/GrowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/GrowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/GrowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/GrowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/JumpAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/JumpAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/JumpAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/JumpAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/PaletteAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/PaletteAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/PaletteAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/PaletteAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/PivotAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/PivotAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/PivotAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/PivotAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/PivotContinuousAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/PivotContinuousAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/ShakeAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/ShakeAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/ShakeAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/ShakeAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/SpreadAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/SpreadAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/SpreadAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/SpreadAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/SwingAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/SwingAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/SwingAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/SwingAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/WaveAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/WaveAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/BasicAnimations/WaveAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/BasicAnimations/WaveAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/CharHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/CharHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/CharHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/CharHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/FadeHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/FadeHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/FadeHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/FadeHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/GrowHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/GrowHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/GrowHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/GrowHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/MoveInHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/MoveInHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/MoveInHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/MoveInHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/PivotHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/PivotHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/PivotHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/PivotHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/ShakeHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/ShakeHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/ShakeHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/ShakeHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/SpreadHideAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/SpreadHideAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/HideAnimations/SpreadHideAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/HideAnimations/SpreadHideAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/CharShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/CharShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/CharShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/CharShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/FadeShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/FadeShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/FadeShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/FadeShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/GrowShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/GrowShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/GrowShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/GrowShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/MoveInShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/MoveInShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/MoveInShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/MoveInShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/PivotShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/PivotShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/PivotShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/PivotShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/ShakeShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/ShakeShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/ShakeShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/ShakeShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/SpreadShowAnimation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/SpreadShowAnimation.asset -------------------------------------------------------------------------------- /Package/Tests/Animations/ShowAnimations/SpreadShowAnimation.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Animations/ShowAnimations/SpreadShowAnimation.asset.meta -------------------------------------------------------------------------------- /Package/Tests/BasicAnimationDatabase_Tests.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/BasicAnimationDatabase_Tests.asset -------------------------------------------------------------------------------- /Package/Tests/BasicAnimationDatabase_Tests.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/BasicAnimationDatabase_Tests.asset.meta -------------------------------------------------------------------------------- /Package/Tests/CharDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/CharDataTests.cs -------------------------------------------------------------------------------- /Package/Tests/CharDataTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/CharDataTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/CommandDatabase_Tests.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/CommandDatabase_Tests.asset -------------------------------------------------------------------------------- /Package/Tests/CommandDatabase_Tests.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/CommandDatabase_Tests.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Commands.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands.meta -------------------------------------------------------------------------------- /Package/Tests/Commands/DebugCommand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/DebugCommand.asset -------------------------------------------------------------------------------- /Package/Tests/Commands/DebugCommand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/DebugCommand.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Commands/DelayCommand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/DelayCommand.asset -------------------------------------------------------------------------------- /Package/Tests/Commands/DelayCommand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/DelayCommand.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Commands/ShowCommand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/ShowCommand.asset -------------------------------------------------------------------------------- /Package/Tests/Commands/ShowCommand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/ShowCommand.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Commands/SkippableCommand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/SkippableCommand.asset -------------------------------------------------------------------------------- /Package/Tests/Commands/SkippableCommand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/SkippableCommand.asset.meta -------------------------------------------------------------------------------- /Package/Tests/Commands/WaitCommand.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/WaitCommand.asset -------------------------------------------------------------------------------- /Package/Tests/Commands/WaitCommand.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/Commands/WaitCommand.asset.meta -------------------------------------------------------------------------------- /Package/Tests/HideAnimationDatabase_Tests.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/HideAnimationDatabase_Tests.asset -------------------------------------------------------------------------------- /Package/Tests/HideAnimationDatabase_Tests.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/HideAnimationDatabase_Tests.asset.meta -------------------------------------------------------------------------------- /Package/Tests/ParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/ParsingTests.cs -------------------------------------------------------------------------------- /Package/Tests/ParsingTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/ParsingTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/ShowAnimationDatabase_Tests.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/ShowAnimationDatabase_Tests.asset -------------------------------------------------------------------------------- /Package/Tests/ShowAnimationDatabase_Tests.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/ShowAnimationDatabase_Tests.asset.meta -------------------------------------------------------------------------------- /Package/Tests/TMPAnimatorEditModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPAnimatorEditModeTests.cs -------------------------------------------------------------------------------- /Package/Tests/TMPAnimatorEditModeTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPAnimatorEditModeTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/TMPAnimatorPlayModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPAnimatorPlayModeTests.cs -------------------------------------------------------------------------------- /Package/Tests/TMPAnimatorPlayModeTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPAnimatorPlayModeTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/TMPEffects-TestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPEffects-TestScene.unity -------------------------------------------------------------------------------- /Package/Tests/TMPEffects-TestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPEffects-TestScene.unity.meta -------------------------------------------------------------------------------- /Package/Tests/TMPEffects.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPEffects.Tests.asmdef -------------------------------------------------------------------------------- /Package/Tests/TMPEffects.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPEffects.Tests.asmdef.meta -------------------------------------------------------------------------------- /Package/Tests/TMPMediatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPMediatorTests.cs -------------------------------------------------------------------------------- /Package/Tests/TMPMediatorTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPMediatorTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/TMPWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPWriterTests.cs -------------------------------------------------------------------------------- /Package/Tests/TMPWriterTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TMPWriterTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/TagCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TagCollectionTests.cs -------------------------------------------------------------------------------- /Package/Tests/TagCollectionTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TagCollectionTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/TextProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TextProcessorTests.cs -------------------------------------------------------------------------------- /Package/Tests/TextProcessorTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/TextProcessorTests.cs.meta -------------------------------------------------------------------------------- /Package/Tests/WaveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/WaveTests.cs -------------------------------------------------------------------------------- /Package/Tests/WaveTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Tests/WaveTests.cs.meta -------------------------------------------------------------------------------- /Package/Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Third Party Notices.md -------------------------------------------------------------------------------- /Package/Third Party Notices.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/Third Party Notices.md.meta -------------------------------------------------------------------------------- /Package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/package.json -------------------------------------------------------------------------------- /Package/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/Package/package.json.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/README.md -------------------------------------------------------------------------------- /TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/.gitignore -------------------------------------------------------------------------------- /TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/.name -------------------------------------------------------------------------------- /TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/encodings.xml -------------------------------------------------------------------------------- /TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/indexLayout.xml -------------------------------------------------------------------------------- /TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/.idea/.idea.TMPEffects.Projects/.idea/vcs.xml -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters.Attributes/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters.Attributes/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/AttributeSyntaxReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.AutoParameters/AttributeSyntaxReceiver.cs -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.AutoParameters/Utility.cs -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/obj/Debug/netstandard2.0/TMPEffec.38DD60C8.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.AutoParameters/obj/project.assets.json -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.AutoParameters/obj/project.nuget.cache -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.AutoParameters/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.ParameterUtilityGenerator/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.ParameterUtilityGenerator/Utility.cs -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.ParameterUtilityGenerator/obj/Debug/netstandard2.0/TMPEffec.846E2A58.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.ParameterUtilityGenerator/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.ParameterUtilityGenerator/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17602929207515832 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.Projects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.Projects.sln -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.Projects.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.Projects.sln.DotSettings.user -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.StringLibrary/Strings.cs -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.assets.json -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.nuget.cache -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/TMPEffects.Projects~/TMPEffects.StringLibrary/obj/project.packagespec.json -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17602929207615861 -------------------------------------------------------------------------------- /TMPEffects.Projects~/TMPEffects.StringLibrary/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17602929207615861 -------------------------------------------------------------------------------- /gifs/basic-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/basic-overview.gif -------------------------------------------------------------------------------- /gifs/showhide-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/showhide-overview.gif -------------------------------------------------------------------------------- /gifs/timeline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/timeline.gif -------------------------------------------------------------------------------- /gifs/tmpeffects-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/tmpeffects-git.gif -------------------------------------------------------------------------------- /gifs/tmpeffectscommands-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/tmpeffectscommands-git.gif -------------------------------------------------------------------------------- /gifs/tmpeffectsshowhide-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/tmpeffectsshowhide-git.gif -------------------------------------------------------------------------------- /gifs/tmpeffectwrite-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Luca3317/TMPEffects/HEAD/gifs/tmpeffectwrite-git.gif --------------------------------------------------------------------------------