[ToggleProperty]
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class TogglePropertyExample : MonoBehaviour
{
public bool showSettings;
[ToggleProperty("showSettings")]
public float settingValue;
public bool enableFeature;
[ToggleProperty("enableFeature", Hide = false)]
public string featureName;
}Last updated