Animatables
  • đŸ•šī¸Getting Started
    • Introducing Animatables
    • Installation
    • Components
      • Animation Data
      • Animation Manager
        • Animation Curve Presets
      • Animatable Transform
      • Animatable UI Objects
    • Easing Curves
  • 📄Scripting Basics
    • Animation Registry
    • Creating Animations
      • Animation Creator
      • Animating Numbers
      • Animating Colors
      • Animating Transform
      • Animating Rect Transform
      • Easing Animations
    • Getting Animations
    • Add or Remove Animations
    • Editing Animations
    • Events
  • đŸ› ī¸Support
    • Getting Help
    • Contact
  • 📚Changelogs
    • Latest Releases
Powered by GitBook
On this page
  1. Scripting Basics
  2. Creating Animations

Animation Creator

Animation Creator is a static class that assists with animation creation through scripting. It simplifies the process to a single line of code.

Important Notes

Most methods available in this class are very similar in nature. They all accept parameters that you would see in the Animatable components, create an animation for a target object, and register the animation to Animation Manager (which starts the animation).

Each method accepts an AnimationCurve, which is an optional parameter. If you do not provide a value (leave it null), the default (linear) animation curve will be used.

PreviousCreating AnimationsNextAnimating Numbers

Last updated 1 year ago

📄