Skip to content

Version 1.0.31

Choose a tag to compare

@NotTimTam NotTimTam released this 14 Oct 23:49
· 24 commits to main since this release

This update includes various quality of life improvements and bugfixes.

Core Changes

  • Added forceParentStyles parameter to Runtime config.
  • Simplified Animate behavior and its sub-classes.
  • Improved Menu class to support more user customization.
  • Added onFocus and onBlur callback support to TextInput class.

Additional Changes

  • Updated GitHub actions responsible for distributable creation/deployment.

Migration

When instantiating a new Animate instance, move the second parameter into the config:

new Animate(gameObject, enabledByDefault, config);
// becomes
new Animate(gameObject, { enabledByDefault });

Full Changelog: v1.0.30...v1.0.31