示例#1
0
 protected internal ScriptableObject(ScriptableObject instance)
 {
     if (instance == null)
     {
         throw new ArgumentNullException(nameof(instance));
     }
     _instance = instance._instance;
 }
示例#2
0
 protected internal ScriptableObject(XrayHandle instance, ScriptableObjectProvider provider)
 {
     _instance = new XrayProxy(instance, provider);
 }