1 2 3 4 5 6 7 8 9 10
using UnityEngine; namespace BehaviorDesigner.Runtime { [System.Serializable] public class SharedColor : SharedVariable<Color> { public static implicit operator SharedColor(Color value) { return new SharedColor { mValue = value }; } } }