Extensions
A collection of static extension method classes that add convenience APIs to Unity types, .NET collections, and system primitives. All classes are in the Paragon namespace and are available project-wide without additional using statements.
Architecture
Quick Lookup
I want to...
Extension
Method
Listen to Animator IK/Move callbacks
animator.AddIKListener(cb) / animator.AddMoveListener(cb)
Conditionally append/prepend
source.AppendIf(cond, item) / source.PrependIf(cond, item)
Classes
Class
Extends
Description
Animator
Callback subscriptions for OnAnimatorIK and OnAnimatorMove via a hidden proxy component
IEnumerable<T>
LINQ-style utilities: ForEach, With, Except, AppendIf, PrependIf, conditional ordering, tuple Select
See Also
Objects — base types these extensions often operate on
Last updated