unity-primetween

Inspect PrimeTween installations and generate runtime tween scripts for Unity.

1.7k|162|Updated Jan 18, 2026
One-click install
npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-primetween
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unity-primetween
Source: https://github.com/Besty0728/Unity-Skills/tree/main/SkillsForUnity/unity-skills~/skills/primetween
Command: npx skills add https://github.com/Besty0728/Unity-Skills --skill unity-primetween

SYSTEM DOCUMENTATION & REQUIREMENTS

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.

Frequently Asked Questions about unity-primetween

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate PrimeTween animation scripts in Unity?

Use primetween_generate_tween_script for a single Transform tween or primetween_generate_sequence_script for chained and grouped sequences. Both create a MonoBehaviour that owns its Tween or Sequence handle and stops it on disable.

How to check if PrimeTween is installed in a Unity project?

Call primetween_get_status to report whether the com.kyrylokuzyk.primetween package is installed, along with its package version, assembly, and visible core types.

Does PrimeTween support DOTween-style settings assets?

No. PrimeTweenConfig is runtime state, not a serialized project configuration asset, so primetween_get_config only reads current global runtime values. The module does not create DOTween-style settings assets or PrimeTween Pro components.

Why does PrimeTween script generation return MODE_FORBIDDEN?

The two script generators are marked high risk because writing a new .cs file triggers compilation and Domain Reload. They return MODE_FORBIDDEN under Approval and Auto modes and only run under Bypass mode or a user-managed Allowlist entry.

What Transform properties can PrimeTween generated scripts animate?

Generated scripts support Position, LocalPosition, EulerAngles, LocalEulerAngles, and Scale. Use primetween_list_factories to check available APIs before requesting anything outside that supported generator set.