[Slider]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class SliderExample : MonoBehaviour
{
[Slider(0, 10)]
public float fixedRange;
public float minLimit = 0;
public float maxLimit = 100;
[Slider("minLimit", "maxLimit")]
public float dynamicRange;
[Slider("minLimit", 50)]
public float mixedRange;
}Last updated