BITFALL/Assets/BITKit/Unity/Scripts/Animator/AnimationProperty.cs

11 lines
286 B
C#
Raw Normal View History

2023-06-08 14:09:50 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AnimationProperty : MonoBehaviour
{
public static implicit operator float(AnimationProperty self) => self.value;
2023-10-31 18:07:15 +08:00
[SerializeField]private float value;
public float Value => value;
2023-06-08 14:09:50 +08:00
}