What problem does it solve?
Manually writing PrimeTween animation code in Unity requires knowing the exact factory APIs, handle lifecycle rules, and package configuration, which slows down runtime animation setup.
Core Features & Use Cases
- Installation Inspection: Check whether PrimeTween is installed as com.kyrylokuzyk.primetween, read its package version, assembly, and visible core types.
- API Discovery: List public static factory methods from Tween, Sequence, Shake, or PrimeTweenConfig types, and read global runtime configuration values.
- Script Generation: Generate MonoBehaviour scripts that own their Tween or Sequence handles, support Transform Position, LocalPosition, EulerAngles, LocalEulerAngles, and Scale tweens, and stop handles on disable.
- Use Case: Ask the AI to verify PrimeTween is installed, list available Tween factories, then generate a Sequence script that chains Scale and Position animations with OutBack easing.
Quick Start
Ask the AI to check the PrimeTween installation status and generate a Transform tween script using the primetween skills.