[ColorPalette]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class ColorPaletteExample : MonoBehaviour
{
[ColorPalette("GetPalette")]
public Color myColor;
private Color[] GetPalette()
{
return new Color[] { Color.red, Color.green, Color.blue };
}
}Last updated