diff --git a/docs/api/SpriteAnimations.AnimationPerformer.html b/docs/api/SpriteAnimations.AnimationPerformer.html index 829197f..083b896 100644 --- a/docs/api/SpriteAnimations.AnimationPerformer.html +++ b/docs/api/SpriteAnimations.AnimationPerformer.html @@ -134,6 +134,9 @@
+
+ +
diff --git a/docs/api/SpriteAnimations.AnimationType.html b/docs/api/SpriteAnimations.AnimationType.html index 20912c3..4822043 100644 --- a/docs/api/SpriteAnimations.AnimationType.html +++ b/docs/api/SpriteAnimations.AnimationType.html @@ -183,6 +183,10 @@

Fields Combo + + Composite + + SingleCycle diff --git a/docs/api/SpriteAnimations.CompositeAnimator.html b/docs/api/SpriteAnimations.CompositeAnimator.html new file mode 100644 index 0000000..dac7309 --- /dev/null +++ b/docs/api/SpriteAnimations.CompositeAnimator.html @@ -0,0 +1,962 @@ + + + + + Class CompositeAnimator + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + +

+ Class CompositeAnimator +

+ +
+ +
+ +
+ +
+ + + + + + + + + + + +
+ + Namespace + : SpriteAnimations +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

Fields +

+ + + +

+ _compositeAnimation + +

+ +

The current SpriteAnimationComposite associated to the CompositeAnimator

+
+
+ +
+
protected SpriteAnimationComposite _compositeAnimation
+
+ + + + +

Field Value

+
+
SpriteAnimationComposite
+
+
+ + + + + + + + + + +

+ _currentCompositeCycle + +

+ +

The current CompositeCycle

+
+
+ +
+
protected CompositeCycle _currentCompositeCycle
+
+ + + + +

Field Value

+
+
CompositeCycle
+
+
+ + + + + + + + + + +

+ _onAntecipationEndAction + +

+ +

The action to be invoked when the antecipation cycle ends

+
+
+ +
+
protected UnityAction _onAntecipationEndAction
+
+ + + + +

Field Value

+
+
UnityAction
+
+
+ + + + + + + + + + +

+ _onCoreEndAction + +

+ +

The action to be invoked when the core cycle ends

+
+
+ +
+
protected UnityAction _onCoreEndAction
+
+ + + + +

Field Value

+
+
UnityAction
+
+
+ + + + + + + + + + +

+ _onRecoveryEndAction + +

+ +

The action to be invoked when the recovery cycle ends

+
+
+ +
+
protected UnityAction _onRecoveryEndAction
+
+ + + + +

Field Value

+
+
UnityAction
+
+
+ + + + + + + + + + +

+ _shouldLoopCore + +

+ +

If the current animation should loop the core cycle

+
+
+ +
+
protected bool _shouldLoopCore
+
+ + + + +

Field Value

+
+
bool
+
+
+ + + + + + + + + +

Methods +

+ + + + +

+ ChangeCycle(CompositeCycle) + +

+ +

Changes the current cycle of the composite animation.

+
+
+ +
+
protected virtual void ChangeCycle(CompositeCycle cycle)
+
+ +

Parameters

+
+
cycle CompositeCycle
+

The new cycle to change to.

+
+
+ + + + + + + + + + + + + + +

+ EndAnimation() + +

+ +

Use this to stop playing the animation. Cannot use StopAnimation() because +of events being cleared.

+
+
+ +
+
protected void EndAnimation()
+
+ + + + + + + + + + + + + + + +

+ EndCycle() + +

+ +

Ends the current cycle of the composite animation changing the cycles according to the flow +and triggering their respective actions.

+
+
+ +
+
protected void EndCycle()
+
+ + + + + + + + + + + + + + + +

+ ExitCoreLoop() + +

+ +

Breaks the core cycle loop and starts the recovery cycle.

+
+
+ +
+
public virtual CompositeAnimator ExitCoreLoop()
+
+ + +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ FromStart() + +

+ +

Resets the current animation and plays it from start.

+
+
+ +
+
public CompositeAnimator FromStart()
+
+ + +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ ResetCycle() + +

+ +

Resets the cycle.

+
+
+ +
+
protected void ResetCycle()
+
+ + + + + + + + + + + + + + + +

+ SetLoopableCore(bool) + +

+ +

Sets whether the core cycle should loop or not.

+
+
+ +
+
public virtual CompositeAnimator SetLoopableCore(bool isLoopableCore)
+
+ +

Parameters

+
+
isLoopableCore bool
+

A boolean indicating whether the core cycle should loop.

+
+
+ +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ SetOnAntecipationEnd(UnityAction) + +

+ +

Sets the action to be executed when the antecipation ends.

+
+
+ +
+
public virtual CompositeAnimator SetOnAntecipationEnd(UnityAction onAntecipationEnd)
+
+ +

Parameters

+
+
onAntecipationEnd UnityAction
+

The action to be executed.

+
+
+ +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ SetOnCoreEnd(UnityAction) + +

+ +

Sets the action to be executed when the core cycle ends.

+
+
+ +
+
public virtual CompositeAnimator SetOnCoreEnd(UnityAction onCoreEnd)
+
+ +

Parameters

+
+
onCoreEnd UnityAction
+

The action to be executed.

+
+
+ +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ SetOnRecoveryEnd(UnityAction) + +

+ +

Sets the action to be executed when the recovery cycle ends.

+
+
+ +
+
public virtual CompositeAnimator SetOnRecoveryEnd(UnityAction onRecoveryEnd)
+
+ +

Parameters

+
+
onRecoveryEnd UnityAction
+

The action to be executed.

+
+
+ +

Returns

+
+
CompositeAnimator
+

The updated CompositeAnimator instance.

+
+
+ + + + + + + + + + + + + +

+ StartAnimation(SpriteAnimation) + +

+ +

Must be called to start playing an animation

+
+
+ +
+
public override void StartAnimation(SpriteAnimation animation)
+
+ +

Parameters

+
+
animation SpriteAnimation
+
+
+ + + + + + + + + + + + + + +

+ StopAnimation() + +

+ +

Must be called every time the animation should be stopped.

+
+
+ +
+
public override void StopAnimation()
+
+ + + + + + + + + + + + + + + +

+ Tick(float) + +

+ +

The method called every time the animator should evaluate if the frame must be changed.

+
+
+ +
+
public override void Tick(float deltaTime)
+
+ +

Parameters

+
+
deltaTime float
+

The time elapsed since the last tick.

+
+
+ + + + + + + + + + + + + +
+ + + +
+ +
+ +
+
+ + + + + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.CompositeCycle.html b/docs/api/SpriteAnimations.CompositeCycle.html new file mode 100644 index 0000000..014e66f --- /dev/null +++ b/docs/api/SpriteAnimations.CompositeCycle.html @@ -0,0 +1,216 @@ + + + + + Enum CompositeCycle + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + + +

+ Enum CompositeCycle +

+ +
+ +
+ +
+ +
+ + + + + + + + + + + +
+ + Namespace + : SpriteAnimations +
+ + + + + + + + + + + + + + + + + + + + + + + +

Fields +

+ + + + + + + + + + + + + + + + + + + + + +
NameDescription
Antecipation
Core
Recovery
+
+ + + +
+ +
+ +
+
+ + + + + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.Editor.CreateAnimationWindow.html b/docs/api/SpriteAnimations.Editor.CreateAnimationWindow.html index e90adfc..ec0ca46 100644 --- a/docs/api/SpriteAnimations.Editor.CreateAnimationWindow.html +++ b/docs/api/SpriteAnimations.Editor.CreateAnimationWindow.html @@ -774,7 +774,7 @@

Events

AnimationCreated - +

diff --git a/docs/api/SpriteAnimations.Editor.SpriteAnimationView.html b/docs/api/SpriteAnimations.Editor.SpriteAnimationView.html index abdbc35..8f15fa7 100644 --- a/docs/api/SpriteAnimations.Editor.SpriteAnimationView.html +++ b/docs/api/SpriteAnimations.Editor.SpriteAnimationView.html @@ -142,6 +142,9 @@
+
+ +
diff --git a/docs/api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html b/docs/api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html new file mode 100644 index 0000000..cd3dcd3 --- /dev/null +++ b/docs/api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html @@ -0,0 +1,803 @@ + + + + + Class SpriteAnimationViewComposite + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + +

+ Class SpriteAnimationViewComposite +

+ +
+ +
+ +
+ +
+ + + + + + +
+
+ Implements +
+ +
+ IEventHandler +
+
+ IResolvedStyle +
+
+ ITransform +
+
+ ITransitionAnimations +
+
+ IExperimentalFeatures +
+
+ IVisualElementScheduler +
+ + +
+ + + + + +
+ + Namespace + : SpriteAnimations.Editor +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

Constructors +

+ + + + +

+ SpriteAnimationViewComposite() + +

+ +
+
+ +
+
public SpriteAnimationViewComposite()
+
+ + + + + + + + + + + + + +

Properties +

+ + + + +

+ AnimationType + +

+ +
+
+ +
+
public override AnimationType AnimationType { get; }
+
+ + + + + +

Property Value

+
+
AnimationType
+
+
+ + + + + + + + +

Methods +

+ + + + +

+ Dismiss() + +

+ +
+
+ +
+
public override void Dismiss()
+
+ + + + + + + + + + + + + + + +

+ Initialize(SpriteAnimation) + +

+ +
+
+ +
+
public override void Initialize(SpriteAnimation animation)
+
+ +

Parameters

+
+
animation SpriteAnimation
+
+
+ + + + + + + + + + + + + +
+ + + +
+ +
+ +
+
+ + + + + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.Editor.html b/docs/api/SpriteAnimations.Editor.html index 9ee335e..231953a 100644 --- a/docs/api/SpriteAnimations.Editor.html +++ b/docs/api/SpriteAnimations.Editor.html @@ -169,6 +169,10 @@

SpriteAnimationViewCombo
+
+
SpriteAnimationViewComposite
+
+
SpriteAnimationViewFactory
diff --git a/docs/api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html b/docs/api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html new file mode 100644 index 0000000..bf914c5 --- /dev/null +++ b/docs/api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html @@ -0,0 +1,841 @@ + + + + + Class CompositeAnimationOnDemand + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + +

+ Class CompositeAnimationOnDemand +

+ +
+ +
+ +
+ +
+ + + + + + + + + + + +
+ + Namespace + : SpriteAnimations.Sampling +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

Fields +

+ + + +

+ _animator + +

+ +
+
+ +
+
public SpriteAnimator _animator
+
+ + + + +

Field Value

+
+
SpriteAnimator
+
+
+ + + + + + + + + + +

+ _antecipationCycle + +

+ +
+
+ +
+
public List<Sprite> _antecipationCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +

+ _coreCycle + +

+ +
+
+ +
+
public List<Sprite> _coreCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +

+ _fps + +

+ +
+
+ +
+
public int _fps
+
+ + + + +

Field Value

+
+
int
+
+
+ + + + + + + + + + +

+ _recoveryCycle + +

+ +
+
+ +
+
public List<Sprite> _recoveryCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +
+ + + +
+ +
+ +
+
+ + +
+
+
+ Made with docfx +
+
+
+ + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html b/docs/api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html new file mode 100644 index 0000000..95fe98d --- /dev/null +++ b/docs/api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html @@ -0,0 +1,841 @@ + + + + + Class CompositeAnimationTemplate + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + +

+ Class CompositeAnimationTemplate +

+ +
+ +
+ +
+ +
+ + + + + + + + + + + +
+ + Namespace + : SpriteAnimations.Sampling +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

Fields +

+ + + +

+ _animator + +

+ +
+
+ +
+
public SpriteAnimator _animator
+
+ + + + +

Field Value

+
+
SpriteAnimator
+
+
+ + + + + + + + + + +

+ _antecipationCycle + +

+ +
+
+ +
+
public List<Sprite> _antecipationCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +

+ _coreCycle + +

+ +
+
+ +
+
public List<Sprite> _coreCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +

+ _recoveryCycle + +

+ +
+
+ +
+
public List<Sprite> _recoveryCycle
+
+ + + + +

Field Value

+
+
List<Sprite>
+
+
+ + + + + + + + + + +

+ _template + +

+ +
+
+ +
+
public SpriteAnimationComposite _template
+
+ + + + +

Field Value

+
+
SpriteAnimationComposite
+
+
+ + + + + + + + + + +
+ + + +
+ +
+ +
+
+ + +
+
+
+ Made with docfx +
+
+
+ + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.Sampling.html b/docs/api/SpriteAnimations.Sampling.html index 99bbc81..ea9a7ab 100644 --- a/docs/api/SpriteAnimations.Sampling.html +++ b/docs/api/SpriteAnimations.Sampling.html @@ -117,6 +117,14 @@

ComboAnimationTemplate

+
+
CompositeAnimationOnDemand
+
+
+
+
CompositeAnimationTemplate
+
+
MovementInputDetector
diff --git a/docs/api/SpriteAnimations.SpriteAnimation.html b/docs/api/SpriteAnimations.SpriteAnimation.html index 5f97625..e776750 100644 --- a/docs/api/SpriteAnimations.SpriteAnimation.html +++ b/docs/api/SpriteAnimations.SpriteAnimation.html @@ -140,6 +140,9 @@
+
+ +
diff --git a/docs/api/SpriteAnimations.SpriteAnimationComposite.html b/docs/api/SpriteAnimations.SpriteAnimationComposite.html new file mode 100644 index 0000000..e4b581b --- /dev/null +++ b/docs/api/SpriteAnimations.SpriteAnimationComposite.html @@ -0,0 +1,852 @@ + + + + + Class SpriteAnimationComposite + | Sprite Animations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+
+
Table of Contents
+ +
+
+ +
+
+
+ +
+
+ + + +
+ +
+ + + +

+ Class SpriteAnimationComposite +

+ +
+ +
+ +
+ +
+ + + + + + + + + + + +
+ + Namespace + : SpriteAnimations +
+ + + + + + + + + + + + + + + + + + + + + + + + + +

Properties +

+ + + + +

+ AnimationType + +

+ +
+
+ +
+
public override AnimationType AnimationType { get; }
+
+ + + + + +

Property Value

+
+
AnimationType
+
+
+ + + + + + + + + + +

+ AntecipationCycle + +

+ +
+
+ +
+
public Cycle AntecipationCycle { get; set; }
+
+ + + + + +

Property Value

+
+
Cycle
+
+
+ + + + + + + + + + +

+ CoreCycle + +

+ +
+
+ +
+
public Cycle CoreCycle { get; set; }
+
+ + + + + +

Property Value

+
+
Cycle
+
+
+ + + + + + + + + + +

+ IsLoopableCore + +

+ +
+
+ +
+
public bool IsLoopableCore { get; set; }
+
+ + + + + +

Property Value

+
+
bool
+
+
+ + + + + + + + + + +

+ PerformerType + +

+ +
+
+ +
+
public override Type PerformerType { get; }
+
+ + + + + +

Property Value

+
+
Type
+
+
+ + + + + + + + + + +

+ RecoveryCycle + +

+ +
+
+ +
+
public Cycle RecoveryCycle { get; set; }
+
+ + + + + +

Property Value

+
+
Cycle
+
+
+ + + + + + + + +

Methods +

+ + + + +

+ CalculateFramesCount() + +

+ +

Calculates the total amount of frames in the animation. +Depending on the type of animation this can have serious perfomance impacts +as it has to evaluate all frames of all the animation cycles.

+
+
+ +
+
public override int CalculateFramesCount()
+
+ + +

Returns

+
+
int
+

The count of frames.

+
+
+ + + + + + + + + + + + + +

+ GenerateCycles() + +

+ +

This must be executed upon the asset creation

+
+
+ +
+
public void GenerateCycles()
+
+ + + + + + + + + + + + + + + +

+ OnDemand(int, List<Sprite>, List<Sprite>, List<Sprite>) + +

+ +

Creates a SpriteAnimationComposite animation on demand.

+
+
+ +
+
public static SpriteAnimationComposite OnDemand(int fps, List<Sprite> antecipationCycle, List<Sprite> coreCycle, List<Sprite> recoveryCycle)
+
+ +

Parameters

+
+
fps int
+

The frames per second of the animation.

+
+
antecipationCycle List<Sprite>
+

The list of sprites for the antecipation cycle.

+
+
coreCycle List<Sprite>
+

The list of sprites for the core cycle.

+
+
recoveryCycle List<Sprite>
+

The list of sprites for the recovery cycle.

+
+
+ +

Returns

+
+
SpriteAnimationComposite
+

The created SpriteAnimationComposite object.

+
+
+ + + + + + + + + + + + + +

+ SetFrameID(CompositeCycle, int, string) + +

+ +
+
+ +
+
public void SetFrameID(CompositeCycle compositeCycle, int index, string id)
+
+ +

Parameters

+
+
compositeCycle CompositeCycle
+
+
index int
+
+
id string
+
+
+ + + + + + + + + + + + + + +

+ UseAsTemplate(List<Sprite>, List<Sprite>, List<Sprite>) + +

+ +

Creates a new SpriteAnimationComposite instance using this animation as template.

+
+
+ +
+
public SpriteAnimationComposite UseAsTemplate(List<Sprite> antecipationCycle, List<Sprite> coreCycle, List<Sprite> recoveryCycle)
+
+ +

Parameters

+
+
antecipationCycle List<Sprite>
+

The antecipation cycle template.

+
+
coreCycle List<Sprite>
+

The core cycle template.

+
+
recoveryCycle List<Sprite>
+

The recovery cycle template.

+
+
+ +

Returns

+
+
SpriteAnimationComposite
+

A new SpriteAnimationComposite instance.

+
+
+ + + + + + + + + + + + +
+ + + +
+ +
+ +
+
+ + +
+
+
+ Made with docfx +
+
+
+ + \ No newline at end of file diff --git a/docs/api/SpriteAnimations.html b/docs/api/SpriteAnimations.html index a216b7a..7b8c04d 100644 --- a/docs/api/SpriteAnimations.html +++ b/docs/api/SpriteAnimations.html @@ -115,6 +115,10 @@

The performer responsible for playing combo animations.

+
+
CompositeAnimator
+
+
Cycle
@@ -149,6 +153,10 @@

from the player.

+
+
SpriteAnimationComposite
+
+
SpriteAnimationManageButton
@@ -191,6 +199,10 @@

The state of the animator

+
+
CompositeCycle
+
+
UpdateMode

The update mode of the animator

diff --git a/docs/api/toc.html b/docs/api/toc.html index f228ca8..c974007 100644 --- a/docs/api/toc.html +++ b/docs/api/toc.html @@ -29,6 +29,12 @@
  • ComboAnimator
  • +
  • + CompositeAnimator +
  • +
  • + CompositeCycle +
  • Cycle
  • @@ -56,6 +62,9 @@
  • SpriteAnimationCombo
  • +
  • + SpriteAnimationComposite +
  • SpriteAnimationManageButton
  • @@ -165,6 +174,9 @@
  • SpriteAnimationViewCombo
  • +
  • + SpriteAnimationViewComposite +
  • SpriteAnimationViewFactory
  • @@ -199,6 +211,12 @@
  • ComboAnimationTemplate
  • +
  • + CompositeAnimationOnDemand +
  • +
  • + CompositeAnimationTemplate +
  • MovementInputDetector
  • diff --git a/docs/api/toc.json b/docs/api/toc.json index 4449663..a7f252a 100644 --- a/docs/api/toc.json +++ b/docs/api/toc.json @@ -1,2 +1,2 @@ -{"items":[{"name":"SpriteAnimations","href":"SpriteAnimations.html","topicHref":"SpriteAnimations.html","topicUid":"SpriteAnimations","items":[{"name":"AnimationPerformer","href":"SpriteAnimations.AnimationPerformer.html","topicHref":"SpriteAnimations.AnimationPerformer.html","topicUid":"SpriteAnimations.AnimationPerformer"},{"name":"AnimationType","href":"SpriteAnimations.AnimationType.html","topicHref":"SpriteAnimations.AnimationType.html","topicUid":"SpriteAnimations.AnimationType"},{"name":"AnimatorState","href":"SpriteAnimations.AnimatorState.html","topicHref":"SpriteAnimations.AnimatorState.html","topicUid":"SpriteAnimations.AnimatorState"},{"name":"ComboAnimator","href":"SpriteAnimations.ComboAnimator.html","topicHref":"SpriteAnimations.ComboAnimator.html","topicUid":"SpriteAnimations.ComboAnimator"},{"name":"Cycle","href":"SpriteAnimations.Cycle.html","topicHref":"SpriteAnimations.Cycle.html","topicUid":"SpriteAnimations.Cycle"},{"name":"Frame","href":"SpriteAnimations.Frame.html","topicHref":"SpriteAnimations.Frame.html","topicUid":"SpriteAnimations.Frame"},{"name":"FramePlayedEvent","href":"SpriteAnimations.FramePlayedEvent.html","topicHref":"SpriteAnimations.FramePlayedEvent.html","topicUid":"SpriteAnimations.FramePlayedEvent"},{"name":"Logger","href":"SpriteAnimations.Logger.html","topicHref":"SpriteAnimations.Logger.html","topicUid":"SpriteAnimations.Logger"},{"name":"NameChangedEvent","href":"SpriteAnimations.NameChangedEvent.html","topicHref":"SpriteAnimations.NameChangedEvent.html","topicUid":"SpriteAnimations.NameChangedEvent"},{"name":"PerformerFactory","href":"SpriteAnimations.PerformerFactory.html","topicHref":"SpriteAnimations.PerformerFactory.html","topicUid":"SpriteAnimations.PerformerFactory"},{"name":"SingleCycleAnimator","href":"SpriteAnimations.SingleCycleAnimator.html","topicHref":"SpriteAnimations.SingleCycleAnimator.html","topicUid":"SpriteAnimations.SingleCycleAnimator"},{"name":"SpriteAnimation","href":"SpriteAnimations.SpriteAnimation.html","topicHref":"SpriteAnimations.SpriteAnimation.html","topicUid":"SpriteAnimations.SpriteAnimation"},{"name":"SpriteAnimationCombo","href":"SpriteAnimations.SpriteAnimationCombo.html","topicHref":"SpriteAnimations.SpriteAnimationCombo.html","topicUid":"SpriteAnimations.SpriteAnimationCombo"},{"name":"SpriteAnimationManageButton","href":"SpriteAnimations.SpriteAnimationManageButton.html","topicHref":"SpriteAnimations.SpriteAnimationManageButton.html","topicUid":"SpriteAnimations.SpriteAnimationManageButton"},{"name":"SpriteAnimationSingleCycle","href":"SpriteAnimations.SpriteAnimationSingleCycle.html","topicHref":"SpriteAnimations.SpriteAnimationSingleCycle.html","topicUid":"SpriteAnimations.SpriteAnimationSingleCycle"},{"name":"SpriteAnimationWindrose","href":"SpriteAnimations.SpriteAnimationWindrose.html","topicHref":"SpriteAnimations.SpriteAnimationWindrose.html","topicUid":"SpriteAnimations.SpriteAnimationWindrose"},{"name":"SpriteAnimationWindrose.WindroseCycles","href":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles.html","topicHref":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles.html","topicUid":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles"},{"name":"SpriteAnimator","href":"SpriteAnimations.SpriteAnimator.html","topicHref":"SpriteAnimations.SpriteAnimator.html","topicUid":"SpriteAnimations.SpriteAnimator"},{"name":"UpdateMode","href":"SpriteAnimations.UpdateMode.html","topicHref":"SpriteAnimations.UpdateMode.html","topicUid":"SpriteAnimations.UpdateMode"},{"name":"WindroseAnimator","href":"SpriteAnimations.WindroseAnimator.html","topicHref":"SpriteAnimations.WindroseAnimator.html","topicUid":"SpriteAnimations.WindroseAnimator"},{"name":"WindroseDirection","href":"SpriteAnimations.WindroseDirection.html","topicHref":"SpriteAnimations.WindroseDirection.html","topicUid":"SpriteAnimations.WindroseDirection"},{"name":"WindroseFlipStrategy","href":"SpriteAnimations.WindroseFlipStrategy.html","topicHref":"SpriteAnimations.WindroseFlipStrategy.html","topicUid":"SpriteAnimations.WindroseFlipStrategy"}]},{"name":"SpriteAnimations.Editor","href":"SpriteAnimations.Editor.html","topicHref":"SpriteAnimations.Editor.html","topicUid":"SpriteAnimations.Editor","items":[{"name":"AnimationCreatedEvent","href":"SpriteAnimations.Editor.AnimationCreatedEvent.html","topicHref":"SpriteAnimations.Editor.AnimationCreatedEvent.html","topicUid":"SpriteAnimations.Editor.AnimationCreatedEvent"},{"name":"AnimationListItemElement","href":"SpriteAnimations.Editor.AnimationListItemElement.html","topicHref":"SpriteAnimations.Editor.AnimationListItemElement.html","topicUid":"SpriteAnimations.Editor.AnimationListItemElement"},{"name":"AnimationPreviewElement","href":"SpriteAnimations.Editor.AnimationPreviewElement.html","topicHref":"SpriteAnimations.Editor.AnimationPreviewElement.html","topicUid":"SpriteAnimations.Editor.AnimationPreviewElement"},{"name":"AnimationSelectedEvent","href":"SpriteAnimations.Editor.AnimationSelectedEvent.html","topicHref":"SpriteAnimations.Editor.AnimationSelectedEvent.html","topicUid":"SpriteAnimations.Editor.AnimationSelectedEvent"},{"name":"AnimationsExtractorWindow","href":"SpriteAnimations.Editor.AnimationsExtractorWindow.html","topicHref":"SpriteAnimations.Editor.AnimationsExtractorWindow.html","topicUid":"SpriteAnimations.Editor.AnimationsExtractorWindow"},{"name":"AnimationsManagerWindow","href":"SpriteAnimations.Editor.AnimationsManagerWindow.html","topicHref":"SpriteAnimations.Editor.AnimationsManagerWindow.html","topicUid":"SpriteAnimations.Editor.AnimationsManagerWindow"},{"name":"AnimationsManagerWindowData","href":"SpriteAnimations.Editor.AnimationsManagerWindowData.html","topicHref":"SpriteAnimations.Editor.AnimationsManagerWindowData.html","topicUid":"SpriteAnimations.Editor.AnimationsManagerWindowData"},{"name":"ComboCyclesHandler","href":"SpriteAnimations.Editor.ComboCyclesHandler.html","topicHref":"SpriteAnimations.Editor.ComboCyclesHandler.html","topicUid":"SpriteAnimations.Editor.ComboCyclesHandler"},{"name":"CreateAnimationWindow","href":"SpriteAnimations.Editor.CreateAnimationWindow.html","topicHref":"SpriteAnimations.Editor.CreateAnimationWindow.html","topicUid":"SpriteAnimations.Editor.CreateAnimationWindow"},{"name":"CycleCollectionResetEvent","href":"SpriteAnimations.Editor.CycleCollectionResetEvent.html","topicHref":"SpriteAnimations.Editor.CycleCollectionResetEvent.html","topicUid":"SpriteAnimations.Editor.CycleCollectionResetEvent"},{"name":"CycleElement","href":"SpriteAnimations.Editor.CycleElement.html","topicHref":"SpriteAnimations.Editor.CycleElement.html","topicUid":"SpriteAnimations.Editor.CycleElement"},{"name":"DestroyAnimationRequestedEvent","href":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent.html","topicHref":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent.html","topicUid":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent"},{"name":"DirectionSelectedEvent","href":"SpriteAnimations.Editor.DirectionSelectedEvent.html","topicHref":"SpriteAnimations.Editor.DirectionSelectedEvent.html","topicUid":"SpriteAnimations.Editor.DirectionSelectedEvent"},{"name":"ExtractionOrientation","href":"SpriteAnimations.Editor.ExtractionOrientation.html","topicHref":"SpriteAnimations.Editor.ExtractionOrientation.html","topicUid":"SpriteAnimations.Editor.ExtractionOrientation"},{"name":"FPSChangedEvent","href":"SpriteAnimations.Editor.FPSChangedEvent.html","topicHref":"SpriteAnimations.Editor.FPSChangedEvent.html","topicUid":"SpriteAnimations.Editor.FPSChangedEvent"},{"name":"FrameElement","href":"SpriteAnimations.Editor.FrameElement.html","topicHref":"SpriteAnimations.Editor.FrameElement.html","topicUid":"SpriteAnimations.Editor.FrameElement"},{"name":"FramesDropManipulator","href":"SpriteAnimations.Editor.FramesDropManipulator.html","topicHref":"SpriteAnimations.Editor.FramesDropManipulator.html","topicUid":"SpriteAnimations.Editor.FramesDropManipulator"},{"name":"IFPSProvider","href":"SpriteAnimations.Editor.IFPSProvider.html","topicHref":"SpriteAnimations.Editor.IFPSProvider.html","topicUid":"SpriteAnimations.Editor.IFPSProvider"},{"name":"ITickProvider","href":"SpriteAnimations.Editor.ITickProvider.html","topicHref":"SpriteAnimations.Editor.ITickProvider.html","topicUid":"SpriteAnimations.Editor.ITickProvider"},{"name":"SidebarElement","href":"SpriteAnimations.Editor.SidebarElement.html","topicHref":"SpriteAnimations.Editor.SidebarElement.html","topicUid":"SpriteAnimations.Editor.SidebarElement"},{"name":"SingleManagerWindow","href":"SpriteAnimations.Editor.SingleManagerWindow.html","topicHref":"SpriteAnimations.Editor.SingleManagerWindow.html","topicUid":"SpriteAnimations.Editor.SingleManagerWindow"},{"name":"SpriteAnimationInspector","href":"SpriteAnimations.Editor.SpriteAnimationInspector.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationInspector.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationInspector"},{"name":"SpriteAnimationManageButtonDrawer","href":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer"},{"name":"SpriteAnimationView","href":"SpriteAnimations.Editor.SpriteAnimationView.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationView.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationView"},{"name":"SpriteAnimationViewCombo","href":"SpriteAnimations.Editor.SpriteAnimationViewCombo.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewCombo.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewCombo"},{"name":"SpriteAnimationViewFactory","href":"SpriteAnimations.Editor.SpriteAnimationViewFactory.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewFactory.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewFactory"},{"name":"SpriteAnimationViewSingleCycle","href":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle"},{"name":"SpriteAnimationViewWindrose","href":"SpriteAnimations.Editor.SpriteAnimationViewWindrose.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewWindrose.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewWindrose"},{"name":"SpriteAnimatorInspector","href":"SpriteAnimations.Editor.SpriteAnimatorInspector.html","topicHref":"SpriteAnimations.Editor.SpriteAnimatorInspector.html","topicUid":"SpriteAnimations.Editor.SpriteAnimatorInspector"},{"name":"TickEvent","href":"SpriteAnimations.Editor.TickEvent.html","topicHref":"SpriteAnimations.Editor.TickEvent.html","topicUid":"SpriteAnimations.Editor.TickEvent"},{"name":"WindroseSelectorElement","href":"SpriteAnimations.Editor.WindroseSelectorElement.html","topicHref":"SpriteAnimations.Editor.WindroseSelectorElement.html","topicUid":"SpriteAnimations.Editor.WindroseSelectorElement"}]},{"name":"SpriteAnimations.Sampling","href":"SpriteAnimations.Sampling.html","topicHref":"SpriteAnimations.Sampling.html","topicUid":"SpriteAnimations.Sampling","items":[{"name":"ComboAnimationChanger","href":"SpriteAnimations.Sampling.ComboAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationChanger"},{"name":"ComboAnimationOnDemand","href":"SpriteAnimations.Sampling.ComboAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationOnDemand"},{"name":"ComboAnimationTemplate","href":"SpriteAnimations.Sampling.ComboAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationTemplate"},{"name":"MovementInputDetector","href":"SpriteAnimations.Sampling.MovementInputDetector.html","topicHref":"SpriteAnimations.Sampling.MovementInputDetector.html","topicUid":"SpriteAnimations.Sampling.MovementInputDetector"},{"name":"SingleCycleAnimationChanger","href":"SpriteAnimations.Sampling.SingleCycleAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationChanger"},{"name":"SingleCycleAnimationOnDemand","href":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand"},{"name":"SingleCycleAnimationTemplate","href":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate"},{"name":"WindroseAnimationChanger","href":"SpriteAnimations.Sampling.WindroseAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.WindroseAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.WindroseAnimationChanger"},{"name":"WindroseAnimationTemplate","href":"SpriteAnimations.Sampling.WindroseAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.WindroseAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.WindroseAnimationTemplate"},{"name":"WinroseAnimationOnDemand","href":"SpriteAnimations.Sampling.WinroseAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.WinroseAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.WinroseAnimationOnDemand"}]}],"memberLayout":"SamePage","enableSearch":true} \ No newline at end of file +{"items":[{"name":"SpriteAnimations","href":"SpriteAnimations.html","topicHref":"SpriteAnimations.html","topicUid":"SpriteAnimations","items":[{"name":"AnimationPerformer","href":"SpriteAnimations.AnimationPerformer.html","topicHref":"SpriteAnimations.AnimationPerformer.html","topicUid":"SpriteAnimations.AnimationPerformer"},{"name":"AnimationType","href":"SpriteAnimations.AnimationType.html","topicHref":"SpriteAnimations.AnimationType.html","topicUid":"SpriteAnimations.AnimationType"},{"name":"AnimatorState","href":"SpriteAnimations.AnimatorState.html","topicHref":"SpriteAnimations.AnimatorState.html","topicUid":"SpriteAnimations.AnimatorState"},{"name":"ComboAnimator","href":"SpriteAnimations.ComboAnimator.html","topicHref":"SpriteAnimations.ComboAnimator.html","topicUid":"SpriteAnimations.ComboAnimator"},{"name":"CompositeAnimator","href":"SpriteAnimations.CompositeAnimator.html","topicHref":"SpriteAnimations.CompositeAnimator.html","topicUid":"SpriteAnimations.CompositeAnimator"},{"name":"CompositeCycle","href":"SpriteAnimations.CompositeCycle.html","topicHref":"SpriteAnimations.CompositeCycle.html","topicUid":"SpriteAnimations.CompositeCycle"},{"name":"Cycle","href":"SpriteAnimations.Cycle.html","topicHref":"SpriteAnimations.Cycle.html","topicUid":"SpriteAnimations.Cycle"},{"name":"Frame","href":"SpriteAnimations.Frame.html","topicHref":"SpriteAnimations.Frame.html","topicUid":"SpriteAnimations.Frame"},{"name":"FramePlayedEvent","href":"SpriteAnimations.FramePlayedEvent.html","topicHref":"SpriteAnimations.FramePlayedEvent.html","topicUid":"SpriteAnimations.FramePlayedEvent"},{"name":"Logger","href":"SpriteAnimations.Logger.html","topicHref":"SpriteAnimations.Logger.html","topicUid":"SpriteAnimations.Logger"},{"name":"NameChangedEvent","href":"SpriteAnimations.NameChangedEvent.html","topicHref":"SpriteAnimations.NameChangedEvent.html","topicUid":"SpriteAnimations.NameChangedEvent"},{"name":"PerformerFactory","href":"SpriteAnimations.PerformerFactory.html","topicHref":"SpriteAnimations.PerformerFactory.html","topicUid":"SpriteAnimations.PerformerFactory"},{"name":"SingleCycleAnimator","href":"SpriteAnimations.SingleCycleAnimator.html","topicHref":"SpriteAnimations.SingleCycleAnimator.html","topicUid":"SpriteAnimations.SingleCycleAnimator"},{"name":"SpriteAnimation","href":"SpriteAnimations.SpriteAnimation.html","topicHref":"SpriteAnimations.SpriteAnimation.html","topicUid":"SpriteAnimations.SpriteAnimation"},{"name":"SpriteAnimationCombo","href":"SpriteAnimations.SpriteAnimationCombo.html","topicHref":"SpriteAnimations.SpriteAnimationCombo.html","topicUid":"SpriteAnimations.SpriteAnimationCombo"},{"name":"SpriteAnimationComposite","href":"SpriteAnimations.SpriteAnimationComposite.html","topicHref":"SpriteAnimations.SpriteAnimationComposite.html","topicUid":"SpriteAnimations.SpriteAnimationComposite"},{"name":"SpriteAnimationManageButton","href":"SpriteAnimations.SpriteAnimationManageButton.html","topicHref":"SpriteAnimations.SpriteAnimationManageButton.html","topicUid":"SpriteAnimations.SpriteAnimationManageButton"},{"name":"SpriteAnimationSingleCycle","href":"SpriteAnimations.SpriteAnimationSingleCycle.html","topicHref":"SpriteAnimations.SpriteAnimationSingleCycle.html","topicUid":"SpriteAnimations.SpriteAnimationSingleCycle"},{"name":"SpriteAnimationWindrose","href":"SpriteAnimations.SpriteAnimationWindrose.html","topicHref":"SpriteAnimations.SpriteAnimationWindrose.html","topicUid":"SpriteAnimations.SpriteAnimationWindrose"},{"name":"SpriteAnimationWindrose.WindroseCycles","href":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles.html","topicHref":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles.html","topicUid":"SpriteAnimations.SpriteAnimationWindrose.WindroseCycles"},{"name":"SpriteAnimator","href":"SpriteAnimations.SpriteAnimator.html","topicHref":"SpriteAnimations.SpriteAnimator.html","topicUid":"SpriteAnimations.SpriteAnimator"},{"name":"UpdateMode","href":"SpriteAnimations.UpdateMode.html","topicHref":"SpriteAnimations.UpdateMode.html","topicUid":"SpriteAnimations.UpdateMode"},{"name":"WindroseAnimator","href":"SpriteAnimations.WindroseAnimator.html","topicHref":"SpriteAnimations.WindroseAnimator.html","topicUid":"SpriteAnimations.WindroseAnimator"},{"name":"WindroseDirection","href":"SpriteAnimations.WindroseDirection.html","topicHref":"SpriteAnimations.WindroseDirection.html","topicUid":"SpriteAnimations.WindroseDirection"},{"name":"WindroseFlipStrategy","href":"SpriteAnimations.WindroseFlipStrategy.html","topicHref":"SpriteAnimations.WindroseFlipStrategy.html","topicUid":"SpriteAnimations.WindroseFlipStrategy"}]},{"name":"SpriteAnimations.Editor","href":"SpriteAnimations.Editor.html","topicHref":"SpriteAnimations.Editor.html","topicUid":"SpriteAnimations.Editor","items":[{"name":"AnimationCreatedEvent","href":"SpriteAnimations.Editor.AnimationCreatedEvent.html","topicHref":"SpriteAnimations.Editor.AnimationCreatedEvent.html","topicUid":"SpriteAnimations.Editor.AnimationCreatedEvent"},{"name":"AnimationListItemElement","href":"SpriteAnimations.Editor.AnimationListItemElement.html","topicHref":"SpriteAnimations.Editor.AnimationListItemElement.html","topicUid":"SpriteAnimations.Editor.AnimationListItemElement"},{"name":"AnimationPreviewElement","href":"SpriteAnimations.Editor.AnimationPreviewElement.html","topicHref":"SpriteAnimations.Editor.AnimationPreviewElement.html","topicUid":"SpriteAnimations.Editor.AnimationPreviewElement"},{"name":"AnimationSelectedEvent","href":"SpriteAnimations.Editor.AnimationSelectedEvent.html","topicHref":"SpriteAnimations.Editor.AnimationSelectedEvent.html","topicUid":"SpriteAnimations.Editor.AnimationSelectedEvent"},{"name":"AnimationsExtractorWindow","href":"SpriteAnimations.Editor.AnimationsExtractorWindow.html","topicHref":"SpriteAnimations.Editor.AnimationsExtractorWindow.html","topicUid":"SpriteAnimations.Editor.AnimationsExtractorWindow"},{"name":"AnimationsManagerWindow","href":"SpriteAnimations.Editor.AnimationsManagerWindow.html","topicHref":"SpriteAnimations.Editor.AnimationsManagerWindow.html","topicUid":"SpriteAnimations.Editor.AnimationsManagerWindow"},{"name":"AnimationsManagerWindowData","href":"SpriteAnimations.Editor.AnimationsManagerWindowData.html","topicHref":"SpriteAnimations.Editor.AnimationsManagerWindowData.html","topicUid":"SpriteAnimations.Editor.AnimationsManagerWindowData"},{"name":"ComboCyclesHandler","href":"SpriteAnimations.Editor.ComboCyclesHandler.html","topicHref":"SpriteAnimations.Editor.ComboCyclesHandler.html","topicUid":"SpriteAnimations.Editor.ComboCyclesHandler"},{"name":"CreateAnimationWindow","href":"SpriteAnimations.Editor.CreateAnimationWindow.html","topicHref":"SpriteAnimations.Editor.CreateAnimationWindow.html","topicUid":"SpriteAnimations.Editor.CreateAnimationWindow"},{"name":"CycleCollectionResetEvent","href":"SpriteAnimations.Editor.CycleCollectionResetEvent.html","topicHref":"SpriteAnimations.Editor.CycleCollectionResetEvent.html","topicUid":"SpriteAnimations.Editor.CycleCollectionResetEvent"},{"name":"CycleElement","href":"SpriteAnimations.Editor.CycleElement.html","topicHref":"SpriteAnimations.Editor.CycleElement.html","topicUid":"SpriteAnimations.Editor.CycleElement"},{"name":"DestroyAnimationRequestedEvent","href":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent.html","topicHref":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent.html","topicUid":"SpriteAnimations.Editor.DestroyAnimationRequestedEvent"},{"name":"DirectionSelectedEvent","href":"SpriteAnimations.Editor.DirectionSelectedEvent.html","topicHref":"SpriteAnimations.Editor.DirectionSelectedEvent.html","topicUid":"SpriteAnimations.Editor.DirectionSelectedEvent"},{"name":"ExtractionOrientation","href":"SpriteAnimations.Editor.ExtractionOrientation.html","topicHref":"SpriteAnimations.Editor.ExtractionOrientation.html","topicUid":"SpriteAnimations.Editor.ExtractionOrientation"},{"name":"FPSChangedEvent","href":"SpriteAnimations.Editor.FPSChangedEvent.html","topicHref":"SpriteAnimations.Editor.FPSChangedEvent.html","topicUid":"SpriteAnimations.Editor.FPSChangedEvent"},{"name":"FrameElement","href":"SpriteAnimations.Editor.FrameElement.html","topicHref":"SpriteAnimations.Editor.FrameElement.html","topicUid":"SpriteAnimations.Editor.FrameElement"},{"name":"FramesDropManipulator","href":"SpriteAnimations.Editor.FramesDropManipulator.html","topicHref":"SpriteAnimations.Editor.FramesDropManipulator.html","topicUid":"SpriteAnimations.Editor.FramesDropManipulator"},{"name":"IFPSProvider","href":"SpriteAnimations.Editor.IFPSProvider.html","topicHref":"SpriteAnimations.Editor.IFPSProvider.html","topicUid":"SpriteAnimations.Editor.IFPSProvider"},{"name":"ITickProvider","href":"SpriteAnimations.Editor.ITickProvider.html","topicHref":"SpriteAnimations.Editor.ITickProvider.html","topicUid":"SpriteAnimations.Editor.ITickProvider"},{"name":"SidebarElement","href":"SpriteAnimations.Editor.SidebarElement.html","topicHref":"SpriteAnimations.Editor.SidebarElement.html","topicUid":"SpriteAnimations.Editor.SidebarElement"},{"name":"SingleManagerWindow","href":"SpriteAnimations.Editor.SingleManagerWindow.html","topicHref":"SpriteAnimations.Editor.SingleManagerWindow.html","topicUid":"SpriteAnimations.Editor.SingleManagerWindow"},{"name":"SpriteAnimationInspector","href":"SpriteAnimations.Editor.SpriteAnimationInspector.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationInspector.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationInspector"},{"name":"SpriteAnimationManageButtonDrawer","href":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationManageButtonDrawer"},{"name":"SpriteAnimationView","href":"SpriteAnimations.Editor.SpriteAnimationView.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationView.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationView"},{"name":"SpriteAnimationViewCombo","href":"SpriteAnimations.Editor.SpriteAnimationViewCombo.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewCombo.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewCombo"},{"name":"SpriteAnimationViewComposite","href":"SpriteAnimations.Editor.SpriteAnimationViewComposite.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewComposite.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewComposite"},{"name":"SpriteAnimationViewFactory","href":"SpriteAnimations.Editor.SpriteAnimationViewFactory.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewFactory.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewFactory"},{"name":"SpriteAnimationViewSingleCycle","href":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewSingleCycle"},{"name":"SpriteAnimationViewWindrose","href":"SpriteAnimations.Editor.SpriteAnimationViewWindrose.html","topicHref":"SpriteAnimations.Editor.SpriteAnimationViewWindrose.html","topicUid":"SpriteAnimations.Editor.SpriteAnimationViewWindrose"},{"name":"SpriteAnimatorInspector","href":"SpriteAnimations.Editor.SpriteAnimatorInspector.html","topicHref":"SpriteAnimations.Editor.SpriteAnimatorInspector.html","topicUid":"SpriteAnimations.Editor.SpriteAnimatorInspector"},{"name":"TickEvent","href":"SpriteAnimations.Editor.TickEvent.html","topicHref":"SpriteAnimations.Editor.TickEvent.html","topicUid":"SpriteAnimations.Editor.TickEvent"},{"name":"WindroseSelectorElement","href":"SpriteAnimations.Editor.WindroseSelectorElement.html","topicHref":"SpriteAnimations.Editor.WindroseSelectorElement.html","topicUid":"SpriteAnimations.Editor.WindroseSelectorElement"}]},{"name":"SpriteAnimations.Sampling","href":"SpriteAnimations.Sampling.html","topicHref":"SpriteAnimations.Sampling.html","topicUid":"SpriteAnimations.Sampling","items":[{"name":"ComboAnimationChanger","href":"SpriteAnimations.Sampling.ComboAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationChanger"},{"name":"ComboAnimationOnDemand","href":"SpriteAnimations.Sampling.ComboAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationOnDemand"},{"name":"ComboAnimationTemplate","href":"SpriteAnimations.Sampling.ComboAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.ComboAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.ComboAnimationTemplate"},{"name":"CompositeAnimationOnDemand","href":"SpriteAnimations.Sampling.CompositeAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.CompositeAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.CompositeAnimationOnDemand"},{"name":"CompositeAnimationTemplate","href":"SpriteAnimations.Sampling.CompositeAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.CompositeAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.CompositeAnimationTemplate"},{"name":"MovementInputDetector","href":"SpriteAnimations.Sampling.MovementInputDetector.html","topicHref":"SpriteAnimations.Sampling.MovementInputDetector.html","topicUid":"SpriteAnimations.Sampling.MovementInputDetector"},{"name":"SingleCycleAnimationChanger","href":"SpriteAnimations.Sampling.SingleCycleAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationChanger"},{"name":"SingleCycleAnimationOnDemand","href":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationOnDemand"},{"name":"SingleCycleAnimationTemplate","href":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.SingleCycleAnimationTemplate"},{"name":"WindroseAnimationChanger","href":"SpriteAnimations.Sampling.WindroseAnimationChanger.html","topicHref":"SpriteAnimations.Sampling.WindroseAnimationChanger.html","topicUid":"SpriteAnimations.Sampling.WindroseAnimationChanger"},{"name":"WindroseAnimationTemplate","href":"SpriteAnimations.Sampling.WindroseAnimationTemplate.html","topicHref":"SpriteAnimations.Sampling.WindroseAnimationTemplate.html","topicUid":"SpriteAnimations.Sampling.WindroseAnimationTemplate"},{"name":"WinroseAnimationOnDemand","href":"SpriteAnimations.Sampling.WinroseAnimationOnDemand.html","topicHref":"SpriteAnimations.Sampling.WinroseAnimationOnDemand.html","topicUid":"SpriteAnimations.Sampling.WinroseAnimationOnDemand"}]}],"memberLayout":"SamePage","enableSearch":true} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index f35eb82..0a12202 100644 --- a/docs/index.html +++ b/docs/index.html @@ -135,10 +135,11 @@

    Beta Version

    Unity tested versions

    Compatibility

    The author

    -

    portraitzinho-fundo-roxo-rounded

    -

    My name is Gabriel, ppl know me by Gabo and you can find me as @indiegabo or @indiegabodev in most social networks.

    -

    If you want to buy me a coffee that will be much appreciated.

    -

    Kofi

    +

    Author Image

    +

    My name is Gabriel, ppl know me by Gabo. +Check out my portfolio if you wanna know more about what I do.

    +

    If you want to buy me a coffee that will be much appreciated. +Kofi

    Special thanks and credits:

    • DanniBoy for being my No Slopes associate and desining the logo and icons for the project
    • diff --git a/docs/manifest.json b/docs/manifest.json index 98cfab2..6364241 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -42,6 +42,26 @@ }, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.CompositeAnimator.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.CompositeAnimator.html" + } + }, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.CompositeCycle.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.CompositeCycle.html" + } + }, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/SpriteAnimations.Cycle.yml", @@ -302,6 +322,16 @@ }, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.Editor.SpriteAnimationViewComposite.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html" + } + }, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/SpriteAnimations.Editor.SpriteAnimationViewFactory.yml", @@ -452,6 +482,26 @@ }, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html" + } + }, + "version": "" + }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.Sampling.CompositeAnimationTemplate.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html" + } + }, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/SpriteAnimations.Sampling.MovementInputDetector.yml", @@ -572,6 +622,16 @@ }, "version": "" }, + { + "type": "ManagedReference", + "source_relative_path": "api/SpriteAnimations.SpriteAnimationComposite.yml", + "output": { + ".html": { + "relative_path": "api/SpriteAnimations.SpriteAnimationComposite.html" + } + }, + "version": "" + }, { "type": "ManagedReference", "source_relative_path": "api/SpriteAnimations.SpriteAnimationManageButton.yml", diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml index c118e62..2ff14e8 100644 --- a/docs/xrefmap.yml +++ b/docs/xrefmap.yml @@ -288,6 +288,12 @@ references: commentId: F:SpriteAnimations.AnimationType.Combo fullName: SpriteAnimations.AnimationType.Combo nameWithType: AnimationType.Combo +- uid: SpriteAnimations.AnimationType.Composite + name: Composite + href: api/SpriteAnimations.AnimationType.html#SpriteAnimations_AnimationType_Composite + commentId: F:SpriteAnimations.AnimationType.Composite + fullName: SpriteAnimations.AnimationType.Composite + nameWithType: AnimationType.Composite - uid: SpriteAnimations.AnimationType.SingleCycle name: SingleCycle href: api/SpriteAnimations.AnimationType.html#SpriteAnimations_AnimationType_SingleCycle @@ -543,6 +549,247 @@ references: commentId: F:SpriteAnimations.ComboAnimator._waiting fullName: SpriteAnimations.ComboAnimator._waiting nameWithType: ComboAnimator._waiting +- uid: SpriteAnimations.CompositeAnimator + name: CompositeAnimator + href: api/SpriteAnimations.CompositeAnimator.html + commentId: T:SpriteAnimations.CompositeAnimator + fullName: SpriteAnimations.CompositeAnimator + nameWithType: CompositeAnimator +- uid: SpriteAnimations.CompositeAnimator.ChangeCycle(SpriteAnimations.CompositeCycle) + name: ChangeCycle(CompositeCycle) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ChangeCycle_SpriteAnimations_CompositeCycle_ + commentId: M:SpriteAnimations.CompositeAnimator.ChangeCycle(SpriteAnimations.CompositeCycle) + fullName: SpriteAnimations.CompositeAnimator.ChangeCycle(SpriteAnimations.CompositeCycle) + nameWithType: CompositeAnimator.ChangeCycle(CompositeCycle) +- uid: SpriteAnimations.CompositeAnimator.ChangeCycle* + name: ChangeCycle + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ChangeCycle_ + commentId: Overload:SpriteAnimations.CompositeAnimator.ChangeCycle + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.ChangeCycle + nameWithType: CompositeAnimator.ChangeCycle +- uid: SpriteAnimations.CompositeAnimator.EndAnimation + name: EndAnimation() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_EndAnimation + commentId: M:SpriteAnimations.CompositeAnimator.EndAnimation + fullName: SpriteAnimations.CompositeAnimator.EndAnimation() + nameWithType: CompositeAnimator.EndAnimation() +- uid: SpriteAnimations.CompositeAnimator.EndAnimation* + name: EndAnimation + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_EndAnimation_ + commentId: Overload:SpriteAnimations.CompositeAnimator.EndAnimation + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.EndAnimation + nameWithType: CompositeAnimator.EndAnimation +- uid: SpriteAnimations.CompositeAnimator.EndCycle + name: EndCycle() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_EndCycle + commentId: M:SpriteAnimations.CompositeAnimator.EndCycle + fullName: SpriteAnimations.CompositeAnimator.EndCycle() + nameWithType: CompositeAnimator.EndCycle() +- uid: SpriteAnimations.CompositeAnimator.EndCycle* + name: EndCycle + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_EndCycle_ + commentId: Overload:SpriteAnimations.CompositeAnimator.EndCycle + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.EndCycle + nameWithType: CompositeAnimator.EndCycle +- uid: SpriteAnimations.CompositeAnimator.ExitCoreLoop + name: ExitCoreLoop() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ExitCoreLoop + commentId: M:SpriteAnimations.CompositeAnimator.ExitCoreLoop + fullName: SpriteAnimations.CompositeAnimator.ExitCoreLoop() + nameWithType: CompositeAnimator.ExitCoreLoop() +- uid: SpriteAnimations.CompositeAnimator.ExitCoreLoop* + name: ExitCoreLoop + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ExitCoreLoop_ + commentId: Overload:SpriteAnimations.CompositeAnimator.ExitCoreLoop + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.ExitCoreLoop + nameWithType: CompositeAnimator.ExitCoreLoop +- uid: SpriteAnimations.CompositeAnimator.FromStart + name: FromStart() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_FromStart + commentId: M:SpriteAnimations.CompositeAnimator.FromStart + fullName: SpriteAnimations.CompositeAnimator.FromStart() + nameWithType: CompositeAnimator.FromStart() +- uid: SpriteAnimations.CompositeAnimator.FromStart* + name: FromStart + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_FromStart_ + commentId: Overload:SpriteAnimations.CompositeAnimator.FromStart + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.FromStart + nameWithType: CompositeAnimator.FromStart +- uid: SpriteAnimations.CompositeAnimator.ResetCycle + name: ResetCycle() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ResetCycle + commentId: M:SpriteAnimations.CompositeAnimator.ResetCycle + fullName: SpriteAnimations.CompositeAnimator.ResetCycle() + nameWithType: CompositeAnimator.ResetCycle() +- uid: SpriteAnimations.CompositeAnimator.ResetCycle* + name: ResetCycle + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_ResetCycle_ + commentId: Overload:SpriteAnimations.CompositeAnimator.ResetCycle + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.ResetCycle + nameWithType: CompositeAnimator.ResetCycle +- uid: SpriteAnimations.CompositeAnimator.SetLoopableCore(System.Boolean) + name: SetLoopableCore(bool) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetLoopableCore_System_Boolean_ + commentId: M:SpriteAnimations.CompositeAnimator.SetLoopableCore(System.Boolean) + name.vb: SetLoopableCore(Boolean) + fullName: SpriteAnimations.CompositeAnimator.SetLoopableCore(bool) + fullName.vb: SpriteAnimations.CompositeAnimator.SetLoopableCore(Boolean) + nameWithType: CompositeAnimator.SetLoopableCore(bool) + nameWithType.vb: CompositeAnimator.SetLoopableCore(Boolean) +- uid: SpriteAnimations.CompositeAnimator.SetLoopableCore* + name: SetLoopableCore + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetLoopableCore_ + commentId: Overload:SpriteAnimations.CompositeAnimator.SetLoopableCore + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.SetLoopableCore + nameWithType: CompositeAnimator.SetLoopableCore +- uid: SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd(UnityEngine.Events.UnityAction) + name: SetOnAntecipationEnd(UnityAction) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnAntecipationEnd_UnityEngine_Events_UnityAction_ + commentId: M:SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd(UnityEngine.Events.UnityAction) + fullName: SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd(UnityEngine.Events.UnityAction) + nameWithType: CompositeAnimator.SetOnAntecipationEnd(UnityAction) +- uid: SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd* + name: SetOnAntecipationEnd + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnAntecipationEnd_ + commentId: Overload:SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.SetOnAntecipationEnd + nameWithType: CompositeAnimator.SetOnAntecipationEnd +- uid: SpriteAnimations.CompositeAnimator.SetOnCoreEnd(UnityEngine.Events.UnityAction) + name: SetOnCoreEnd(UnityAction) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnCoreEnd_UnityEngine_Events_UnityAction_ + commentId: M:SpriteAnimations.CompositeAnimator.SetOnCoreEnd(UnityEngine.Events.UnityAction) + fullName: SpriteAnimations.CompositeAnimator.SetOnCoreEnd(UnityEngine.Events.UnityAction) + nameWithType: CompositeAnimator.SetOnCoreEnd(UnityAction) +- uid: SpriteAnimations.CompositeAnimator.SetOnCoreEnd* + name: SetOnCoreEnd + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnCoreEnd_ + commentId: Overload:SpriteAnimations.CompositeAnimator.SetOnCoreEnd + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.SetOnCoreEnd + nameWithType: CompositeAnimator.SetOnCoreEnd +- uid: SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd(UnityEngine.Events.UnityAction) + name: SetOnRecoveryEnd(UnityAction) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnRecoveryEnd_UnityEngine_Events_UnityAction_ + commentId: M:SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd(UnityEngine.Events.UnityAction) + fullName: SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd(UnityEngine.Events.UnityAction) + nameWithType: CompositeAnimator.SetOnRecoveryEnd(UnityAction) +- uid: SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd* + name: SetOnRecoveryEnd + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_SetOnRecoveryEnd_ + commentId: Overload:SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.SetOnRecoveryEnd + nameWithType: CompositeAnimator.SetOnRecoveryEnd +- uid: SpriteAnimations.CompositeAnimator.StartAnimation(SpriteAnimations.SpriteAnimation) + name: StartAnimation(SpriteAnimation) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_StartAnimation_SpriteAnimations_SpriteAnimation_ + commentId: M:SpriteAnimations.CompositeAnimator.StartAnimation(SpriteAnimations.SpriteAnimation) + fullName: SpriteAnimations.CompositeAnimator.StartAnimation(SpriteAnimations.SpriteAnimation) + nameWithType: CompositeAnimator.StartAnimation(SpriteAnimation) +- uid: SpriteAnimations.CompositeAnimator.StartAnimation* + name: StartAnimation + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_StartAnimation_ + commentId: Overload:SpriteAnimations.CompositeAnimator.StartAnimation + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.StartAnimation + nameWithType: CompositeAnimator.StartAnimation +- uid: SpriteAnimations.CompositeAnimator.StopAnimation + name: StopAnimation() + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_StopAnimation + commentId: M:SpriteAnimations.CompositeAnimator.StopAnimation + fullName: SpriteAnimations.CompositeAnimator.StopAnimation() + nameWithType: CompositeAnimator.StopAnimation() +- uid: SpriteAnimations.CompositeAnimator.StopAnimation* + name: StopAnimation + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_StopAnimation_ + commentId: Overload:SpriteAnimations.CompositeAnimator.StopAnimation + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.StopAnimation + nameWithType: CompositeAnimator.StopAnimation +- uid: SpriteAnimations.CompositeAnimator.Tick(System.Single) + name: Tick(float) + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_Tick_System_Single_ + commentId: M:SpriteAnimations.CompositeAnimator.Tick(System.Single) + name.vb: Tick(Single) + fullName: SpriteAnimations.CompositeAnimator.Tick(float) + fullName.vb: SpriteAnimations.CompositeAnimator.Tick(Single) + nameWithType: CompositeAnimator.Tick(float) + nameWithType.vb: CompositeAnimator.Tick(Single) +- uid: SpriteAnimations.CompositeAnimator.Tick* + name: Tick + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator_Tick_ + commentId: Overload:SpriteAnimations.CompositeAnimator.Tick + isSpec: "True" + fullName: SpriteAnimations.CompositeAnimator.Tick + nameWithType: CompositeAnimator.Tick +- uid: SpriteAnimations.CompositeAnimator._compositeAnimation + name: _compositeAnimation + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__compositeAnimation + commentId: F:SpriteAnimations.CompositeAnimator._compositeAnimation + fullName: SpriteAnimations.CompositeAnimator._compositeAnimation + nameWithType: CompositeAnimator._compositeAnimation +- uid: SpriteAnimations.CompositeAnimator._currentCompositeCycle + name: _currentCompositeCycle + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__currentCompositeCycle + commentId: F:SpriteAnimations.CompositeAnimator._currentCompositeCycle + fullName: SpriteAnimations.CompositeAnimator._currentCompositeCycle + nameWithType: CompositeAnimator._currentCompositeCycle +- uid: SpriteAnimations.CompositeAnimator._onAntecipationEndAction + name: _onAntecipationEndAction + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__onAntecipationEndAction + commentId: F:SpriteAnimations.CompositeAnimator._onAntecipationEndAction + fullName: SpriteAnimations.CompositeAnimator._onAntecipationEndAction + nameWithType: CompositeAnimator._onAntecipationEndAction +- uid: SpriteAnimations.CompositeAnimator._onCoreEndAction + name: _onCoreEndAction + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__onCoreEndAction + commentId: F:SpriteAnimations.CompositeAnimator._onCoreEndAction + fullName: SpriteAnimations.CompositeAnimator._onCoreEndAction + nameWithType: CompositeAnimator._onCoreEndAction +- uid: SpriteAnimations.CompositeAnimator._onRecoveryEndAction + name: _onRecoveryEndAction + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__onRecoveryEndAction + commentId: F:SpriteAnimations.CompositeAnimator._onRecoveryEndAction + fullName: SpriteAnimations.CompositeAnimator._onRecoveryEndAction + nameWithType: CompositeAnimator._onRecoveryEndAction +- uid: SpriteAnimations.CompositeAnimator._shouldLoopCore + name: _shouldLoopCore + href: api/SpriteAnimations.CompositeAnimator.html#SpriteAnimations_CompositeAnimator__shouldLoopCore + commentId: F:SpriteAnimations.CompositeAnimator._shouldLoopCore + fullName: SpriteAnimations.CompositeAnimator._shouldLoopCore + nameWithType: CompositeAnimator._shouldLoopCore +- uid: SpriteAnimations.CompositeCycle + name: CompositeCycle + href: api/SpriteAnimations.CompositeCycle.html + commentId: T:SpriteAnimations.CompositeCycle + fullName: SpriteAnimations.CompositeCycle + nameWithType: CompositeCycle +- uid: SpriteAnimations.CompositeCycle.Antecipation + name: Antecipation + href: api/SpriteAnimations.CompositeCycle.html#SpriteAnimations_CompositeCycle_Antecipation + commentId: F:SpriteAnimations.CompositeCycle.Antecipation + fullName: SpriteAnimations.CompositeCycle.Antecipation + nameWithType: CompositeCycle.Antecipation +- uid: SpriteAnimations.CompositeCycle.Core + name: Core + href: api/SpriteAnimations.CompositeCycle.html#SpriteAnimations_CompositeCycle_Core + commentId: F:SpriteAnimations.CompositeCycle.Core + fullName: SpriteAnimations.CompositeCycle.Core + nameWithType: CompositeCycle.Core +- uid: SpriteAnimations.CompositeCycle.Recovery + name: Recovery + href: api/SpriteAnimations.CompositeCycle.html#SpriteAnimations_CompositeCycle_Recovery + commentId: F:SpriteAnimations.CompositeCycle.Recovery + fullName: SpriteAnimations.CompositeCycle.Recovery + nameWithType: CompositeCycle.Recovery - uid: SpriteAnimations.Cycle name: Cycle href: api/SpriteAnimations.Cycle.html @@ -1993,6 +2240,70 @@ references: isSpec: "True" fullName: SpriteAnimations.Editor.SpriteAnimationViewCombo.Initialize nameWithType: SpriteAnimationViewCombo.Initialize +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite + name: SpriteAnimationViewComposite + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html + commentId: T:SpriteAnimations.Editor.SpriteAnimationViewComposite + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite + nameWithType: SpriteAnimationViewComposite +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.#ctor + name: SpriteAnimationViewComposite() + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite__ctor + commentId: M:SpriteAnimations.Editor.SpriteAnimationViewComposite.#ctor + name.vb: New() + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.SpriteAnimationViewComposite() + fullName.vb: SpriteAnimations.Editor.SpriteAnimationViewComposite.New() + nameWithType: SpriteAnimationViewComposite.SpriteAnimationViewComposite() + nameWithType.vb: SpriteAnimationViewComposite.New() +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.#ctor* + name: SpriteAnimationViewComposite + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite__ctor_ + commentId: Overload:SpriteAnimations.Editor.SpriteAnimationViewComposite.#ctor + isSpec: "True" + name.vb: New + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.SpriteAnimationViewComposite + fullName.vb: SpriteAnimations.Editor.SpriteAnimationViewComposite.New + nameWithType: SpriteAnimationViewComposite.SpriteAnimationViewComposite + nameWithType.vb: SpriteAnimationViewComposite.New +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType + name: AnimationType + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_AnimationType + commentId: P:SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType + nameWithType: SpriteAnimationViewComposite.AnimationType +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType* + name: AnimationType + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_AnimationType_ + commentId: Overload:SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType + isSpec: "True" + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.AnimationType + nameWithType: SpriteAnimationViewComposite.AnimationType +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss + name: Dismiss() + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_Dismiss + commentId: M:SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss() + nameWithType: SpriteAnimationViewComposite.Dismiss() +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss* + name: Dismiss + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_Dismiss_ + commentId: Overload:SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss + isSpec: "True" + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.Dismiss + nameWithType: SpriteAnimationViewComposite.Dismiss +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize(SpriteAnimations.SpriteAnimation) + name: Initialize(SpriteAnimation) + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_Initialize_SpriteAnimations_SpriteAnimation_ + commentId: M:SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize(SpriteAnimations.SpriteAnimation) + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize(SpriteAnimations.SpriteAnimation) + nameWithType: SpriteAnimationViewComposite.Initialize(SpriteAnimation) +- uid: SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize* + name: Initialize + href: api/SpriteAnimations.Editor.SpriteAnimationViewComposite.html#SpriteAnimations_Editor_SpriteAnimationViewComposite_Initialize_ + commentId: Overload:SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize + isSpec: "True" + fullName: SpriteAnimations.Editor.SpriteAnimationViewComposite.Initialize + nameWithType: SpriteAnimationViewComposite.Initialize - uid: SpriteAnimations.Editor.SpriteAnimationViewFactory name: SpriteAnimationViewFactory href: api/SpriteAnimations.Editor.SpriteAnimationViewFactory.html @@ -2482,6 +2793,78 @@ references: commentId: F:SpriteAnimations.Sampling.ComboAnimationTemplate._template fullName: SpriteAnimations.Sampling.ComboAnimationTemplate._template nameWithType: ComboAnimationTemplate._template +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand + name: CompositeAnimationOnDemand + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html + commentId: T:SpriteAnimations.Sampling.CompositeAnimationOnDemand + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand + nameWithType: CompositeAnimationOnDemand +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand._animator + name: _animator + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html#SpriteAnimations_Sampling_CompositeAnimationOnDemand__animator + commentId: F:SpriteAnimations.Sampling.CompositeAnimationOnDemand._animator + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand._animator + nameWithType: CompositeAnimationOnDemand._animator +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand._antecipationCycle + name: _antecipationCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html#SpriteAnimations_Sampling_CompositeAnimationOnDemand__antecipationCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationOnDemand._antecipationCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand._antecipationCycle + nameWithType: CompositeAnimationOnDemand._antecipationCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand._coreCycle + name: _coreCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html#SpriteAnimations_Sampling_CompositeAnimationOnDemand__coreCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationOnDemand._coreCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand._coreCycle + nameWithType: CompositeAnimationOnDemand._coreCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand._fps + name: _fps + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html#SpriteAnimations_Sampling_CompositeAnimationOnDemand__fps + commentId: F:SpriteAnimations.Sampling.CompositeAnimationOnDemand._fps + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand._fps + nameWithType: CompositeAnimationOnDemand._fps +- uid: SpriteAnimations.Sampling.CompositeAnimationOnDemand._recoveryCycle + name: _recoveryCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationOnDemand.html#SpriteAnimations_Sampling_CompositeAnimationOnDemand__recoveryCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationOnDemand._recoveryCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationOnDemand._recoveryCycle + nameWithType: CompositeAnimationOnDemand._recoveryCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate + name: CompositeAnimationTemplate + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html + commentId: T:SpriteAnimations.Sampling.CompositeAnimationTemplate + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate + nameWithType: CompositeAnimationTemplate +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate._animator + name: _animator + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html#SpriteAnimations_Sampling_CompositeAnimationTemplate__animator + commentId: F:SpriteAnimations.Sampling.CompositeAnimationTemplate._animator + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate._animator + nameWithType: CompositeAnimationTemplate._animator +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate._antecipationCycle + name: _antecipationCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html#SpriteAnimations_Sampling_CompositeAnimationTemplate__antecipationCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationTemplate._antecipationCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate._antecipationCycle + nameWithType: CompositeAnimationTemplate._antecipationCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate._coreCycle + name: _coreCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html#SpriteAnimations_Sampling_CompositeAnimationTemplate__coreCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationTemplate._coreCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate._coreCycle + nameWithType: CompositeAnimationTemplate._coreCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate._recoveryCycle + name: _recoveryCycle + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html#SpriteAnimations_Sampling_CompositeAnimationTemplate__recoveryCycle + commentId: F:SpriteAnimations.Sampling.CompositeAnimationTemplate._recoveryCycle + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate._recoveryCycle + nameWithType: CompositeAnimationTemplate._recoveryCycle +- uid: SpriteAnimations.Sampling.CompositeAnimationTemplate._template + name: _template + href: api/SpriteAnimations.Sampling.CompositeAnimationTemplate.html#SpriteAnimations_Sampling_CompositeAnimationTemplate__template + commentId: F:SpriteAnimations.Sampling.CompositeAnimationTemplate._template + fullName: SpriteAnimations.Sampling.CompositeAnimationTemplate._template + nameWithType: CompositeAnimationTemplate._template - uid: SpriteAnimations.Sampling.MovementInputDetector name: MovementInputDetector href: api/SpriteAnimations.Sampling.MovementInputDetector.html @@ -3080,6 +3463,164 @@ references: commentId: F:SpriteAnimations.SpriteAnimationCombo._waitingTime fullName: SpriteAnimations.SpriteAnimationCombo._waitingTime nameWithType: SpriteAnimationCombo._waitingTime +- uid: SpriteAnimations.SpriteAnimationComposite + name: SpriteAnimationComposite + href: api/SpriteAnimations.SpriteAnimationComposite.html + commentId: T:SpriteAnimations.SpriteAnimationComposite + fullName: SpriteAnimations.SpriteAnimationComposite + nameWithType: SpriteAnimationComposite +- uid: SpriteAnimations.SpriteAnimationComposite.AnimationType + name: AnimationType + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_AnimationType + commentId: P:SpriteAnimations.SpriteAnimationComposite.AnimationType + fullName: SpriteAnimations.SpriteAnimationComposite.AnimationType + nameWithType: SpriteAnimationComposite.AnimationType +- uid: SpriteAnimations.SpriteAnimationComposite.AnimationType* + name: AnimationType + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_AnimationType_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.AnimationType + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.AnimationType + nameWithType: SpriteAnimationComposite.AnimationType +- uid: SpriteAnimations.SpriteAnimationComposite.AntecipationCycle + name: AntecipationCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_AntecipationCycle + commentId: P:SpriteAnimations.SpriteAnimationComposite.AntecipationCycle + fullName: SpriteAnimations.SpriteAnimationComposite.AntecipationCycle + nameWithType: SpriteAnimationComposite.AntecipationCycle +- uid: SpriteAnimations.SpriteAnimationComposite.AntecipationCycle* + name: AntecipationCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_AntecipationCycle_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.AntecipationCycle + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.AntecipationCycle + nameWithType: SpriteAnimationComposite.AntecipationCycle +- uid: SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount + name: CalculateFramesCount() + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_CalculateFramesCount + commentId: M:SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount + fullName: SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount() + nameWithType: SpriteAnimationComposite.CalculateFramesCount() +- uid: SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount* + name: CalculateFramesCount + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_CalculateFramesCount_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.CalculateFramesCount + nameWithType: SpriteAnimationComposite.CalculateFramesCount +- uid: SpriteAnimations.SpriteAnimationComposite.CoreCycle + name: CoreCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_CoreCycle + commentId: P:SpriteAnimations.SpriteAnimationComposite.CoreCycle + fullName: SpriteAnimations.SpriteAnimationComposite.CoreCycle + nameWithType: SpriteAnimationComposite.CoreCycle +- uid: SpriteAnimations.SpriteAnimationComposite.CoreCycle* + name: CoreCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_CoreCycle_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.CoreCycle + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.CoreCycle + nameWithType: SpriteAnimationComposite.CoreCycle +- uid: SpriteAnimations.SpriteAnimationComposite.GenerateCycles + name: GenerateCycles() + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_GenerateCycles + commentId: M:SpriteAnimations.SpriteAnimationComposite.GenerateCycles + fullName: SpriteAnimations.SpriteAnimationComposite.GenerateCycles() + nameWithType: SpriteAnimationComposite.GenerateCycles() +- uid: SpriteAnimations.SpriteAnimationComposite.GenerateCycles* + name: GenerateCycles + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_GenerateCycles_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.GenerateCycles + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.GenerateCycles + nameWithType: SpriteAnimationComposite.GenerateCycles +- uid: SpriteAnimations.SpriteAnimationComposite.IsLoopableCore + name: IsLoopableCore + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_IsLoopableCore + commentId: P:SpriteAnimations.SpriteAnimationComposite.IsLoopableCore + fullName: SpriteAnimations.SpriteAnimationComposite.IsLoopableCore + nameWithType: SpriteAnimationComposite.IsLoopableCore +- uid: SpriteAnimations.SpriteAnimationComposite.IsLoopableCore* + name: IsLoopableCore + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_IsLoopableCore_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.IsLoopableCore + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.IsLoopableCore + nameWithType: SpriteAnimationComposite.IsLoopableCore +- uid: SpriteAnimations.SpriteAnimationComposite.OnDemand(System.Int32,System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite}) + name: OnDemand(int, List, List, List) + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_OnDemand_System_Int32_System_Collections_Generic_List_UnityEngine_Sprite__System_Collections_Generic_List_UnityEngine_Sprite__System_Collections_Generic_List_UnityEngine_Sprite__ + commentId: M:SpriteAnimations.SpriteAnimationComposite.OnDemand(System.Int32,System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite}) + name.vb: OnDemand(Integer, List(Of Sprite), List(Of Sprite), List(Of Sprite)) + fullName: SpriteAnimations.SpriteAnimationComposite.OnDemand(int, System.Collections.Generic.List, System.Collections.Generic.List, System.Collections.Generic.List) + fullName.vb: SpriteAnimations.SpriteAnimationComposite.OnDemand(Integer, System.Collections.Generic.List(Of UnityEngine.Sprite), System.Collections.Generic.List(Of UnityEngine.Sprite), System.Collections.Generic.List(Of UnityEngine.Sprite)) + nameWithType: SpriteAnimationComposite.OnDemand(int, List, List, List) + nameWithType.vb: SpriteAnimationComposite.OnDemand(Integer, List(Of Sprite), List(Of Sprite), List(Of Sprite)) +- uid: SpriteAnimations.SpriteAnimationComposite.OnDemand* + name: OnDemand + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_OnDemand_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.OnDemand + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.OnDemand + nameWithType: SpriteAnimationComposite.OnDemand +- uid: SpriteAnimations.SpriteAnimationComposite.PerformerType + name: PerformerType + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_PerformerType + commentId: P:SpriteAnimations.SpriteAnimationComposite.PerformerType + fullName: SpriteAnimations.SpriteAnimationComposite.PerformerType + nameWithType: SpriteAnimationComposite.PerformerType +- uid: SpriteAnimations.SpriteAnimationComposite.PerformerType* + name: PerformerType + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_PerformerType_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.PerformerType + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.PerformerType + nameWithType: SpriteAnimationComposite.PerformerType +- uid: SpriteAnimations.SpriteAnimationComposite.RecoveryCycle + name: RecoveryCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_RecoveryCycle + commentId: P:SpriteAnimations.SpriteAnimationComposite.RecoveryCycle + fullName: SpriteAnimations.SpriteAnimationComposite.RecoveryCycle + nameWithType: SpriteAnimationComposite.RecoveryCycle +- uid: SpriteAnimations.SpriteAnimationComposite.RecoveryCycle* + name: RecoveryCycle + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_RecoveryCycle_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.RecoveryCycle + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.RecoveryCycle + nameWithType: SpriteAnimationComposite.RecoveryCycle +- uid: SpriteAnimations.SpriteAnimationComposite.SetFrameID(SpriteAnimations.CompositeCycle,System.Int32,System.String) + name: SetFrameID(CompositeCycle, int, string) + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_SetFrameID_SpriteAnimations_CompositeCycle_System_Int32_System_String_ + commentId: M:SpriteAnimations.SpriteAnimationComposite.SetFrameID(SpriteAnimations.CompositeCycle,System.Int32,System.String) + name.vb: SetFrameID(CompositeCycle, Integer, String) + fullName: SpriteAnimations.SpriteAnimationComposite.SetFrameID(SpriteAnimations.CompositeCycle, int, string) + fullName.vb: SpriteAnimations.SpriteAnimationComposite.SetFrameID(SpriteAnimations.CompositeCycle, Integer, String) + nameWithType: SpriteAnimationComposite.SetFrameID(CompositeCycle, int, string) + nameWithType.vb: SpriteAnimationComposite.SetFrameID(CompositeCycle, Integer, String) +- uid: SpriteAnimations.SpriteAnimationComposite.SetFrameID* + name: SetFrameID + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_SetFrameID_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.SetFrameID + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.SetFrameID + nameWithType: SpriteAnimationComposite.SetFrameID +- uid: SpriteAnimations.SpriteAnimationComposite.UseAsTemplate(System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite}) + name: UseAsTemplate(List, List, List) + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_UseAsTemplate_System_Collections_Generic_List_UnityEngine_Sprite__System_Collections_Generic_List_UnityEngine_Sprite__System_Collections_Generic_List_UnityEngine_Sprite__ + commentId: M:SpriteAnimations.SpriteAnimationComposite.UseAsTemplate(System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite},System.Collections.Generic.List{UnityEngine.Sprite}) + name.vb: UseAsTemplate(List(Of Sprite), List(Of Sprite), List(Of Sprite)) + fullName: SpriteAnimations.SpriteAnimationComposite.UseAsTemplate(System.Collections.Generic.List, System.Collections.Generic.List, System.Collections.Generic.List) + fullName.vb: SpriteAnimations.SpriteAnimationComposite.UseAsTemplate(System.Collections.Generic.List(Of UnityEngine.Sprite), System.Collections.Generic.List(Of UnityEngine.Sprite), System.Collections.Generic.List(Of UnityEngine.Sprite)) + nameWithType: SpriteAnimationComposite.UseAsTemplate(List, List, List) + nameWithType.vb: SpriteAnimationComposite.UseAsTemplate(List(Of Sprite), List(Of Sprite), List(Of Sprite)) +- uid: SpriteAnimations.SpriteAnimationComposite.UseAsTemplate* + name: UseAsTemplate + href: api/SpriteAnimations.SpriteAnimationComposite.html#SpriteAnimations_SpriteAnimationComposite_UseAsTemplate_ + commentId: Overload:SpriteAnimations.SpriteAnimationComposite.UseAsTemplate + isSpec: "True" + fullName: SpriteAnimations.SpriteAnimationComposite.UseAsTemplate + nameWithType: SpriteAnimationComposite.UseAsTemplate - uid: SpriteAnimations.SpriteAnimationManageButton name: SpriteAnimationManageButton href: api/SpriteAnimations.SpriteAnimationManageButton.html