[Interval]

Displays a Vector2 field as a min-max interval with two float fields.

Support Types

Type
Description

Vector2

2D Vector (X = min, Y = max)

Parameters

No parameters.

Examples

using UnityEngine;
using RenownedGames.Apex;

public class IntervalExample : MonoBehaviour
{
    [Interval]
    public Vector2 timeInterval;
}

Last updated