Skip to content

0.9.6-beta

Choose a tag to compare

@PaulNonatomic PaulNonatomic released this 30 Dec 03:29
· 45 commits to main since this release

[0.9.6-beta] - Dec 23, 2024

  • Removal of build breaking methods in AssetUtils

[0.9.5-beta] - Dec 22, 2024

  • Updated migration tools

[0.9.4-beta] - Dec 22, 2024

  • Added a method to migrate all state machine model assets

[0.9.3-beta] - Dec 22, 2024

  • Added a migration step to fix transitions to OnEnterState methods

[0.9.2-beta] - Dec 22, 2024

  • Added a migration step to add missing using statements

[0.9.1-beta] - Dec 22, 2024

  • Added a migration tool to upgrade to 0.9.1-beta
  • Added obsolete methods back in and marked as obsolete to allow for a smoother migration to the new version
  • Added support for LateUpdate in states
  • Added a cache for event info obtained via reflection to reduce the runtime overhead of reflection

[0.9.0-beta] - Sept 20, 2024

  • BREAKING - State enter methods now require an [Enter] attribute.
  • States now support typed transitions
  • Example [Transition] public event Action OnTransitionWithInt
  • Example [Enter] public void OnEnterWithInt(int value){}
  • Abstracted validation methods to a separate class
  • Added a CounterWithTargetState.
  • Simplified the uss files used to style the basic states