Last updated
Last updated
BoundedCurveAttribute.cs: This custom attribute restricts the range of an AnimationCurve
to a specific min and max value. This ensures that the curve's output stays within the desired range.
CustomRangeAttribute.cs: This custom attribute allows you to set a custom range for a float or integer variable in the Unity Inspector. This makes it easier to adjust the variable's value within a specified range. You only able to choose numbers written from slider.
InformAttribute.cs: This custom attribute allows you to add an information label to a variable in the Unity Inspector. The label can provide helpful information about the purpose or usage of the variable.
NonEditableAttribute.cs: This custom attribute makes a variable non-editable in the Unity Inspector. This is useful when you want to display a variable's value for reference, but don't want it to be editable.