### Install TMPEffects via Git URL Source: https://github.com/luca3317/tmpeffects/blob/main/README.md Install TMPEffects using a git URL in the Unity Package Manager. Ensure you know how to install packages using git URLs. ```console https://github.com/Luca3317/TMPEffects.git?path=/Package ``` -------------------------------- ### Define Custom Animation Parameter Source: https://github.com/luca3317/tmpeffects/blob/main/README.md This C# snippet shows how to define a float parameter for a custom animation using the AutoParameter attribute. This allows the parameter to be set directly from text tags. ```csharp using TMPEffects.Attributes; using UnityEngine; public class MyAnimation : MonoBehaviour { [AutoParameter("ampltiude", "amp"), SerializeField] private float amplitude; // Animation logic here } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.