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