animations-tweens

Installation
SKILL.md

Animations and Tweens in Decentraland

When to Use Which Animation Approach

Need Approach When
Play animation baked into a .glb model Animator Character walks, door opens, flag waves — any animation from Blender/Maya
Move/rotate/scale an entity smoothly Tween Sliding doors, floating platforms, growing objects — procedural A-to-B motion
Chain multiple animations in sequence TweenSequence Patrol paths, multi-step doors, complex choreography
Continuous per-frame control engine.addSystem() Physics-like motion, following a target, custom easing, input-driven user control

Decision flow:

  1. Does the .glb already have the animation? → Animator
  2. Simple move/rotate/scale between two values? → Tween
  3. Need frame-by-frame control or custom math? → System with dt

GLTF Animations (Animator)

Installs
149
GitHub Stars
3
First Seen
Apr 13, 2026
animations-tweens — decentraland/sdk-skills