コード例 #1
0
ファイル: ScriptableObject.cs プロジェクト: wuzlai/AGTkDemo
 protected internal ScriptableObject(ScriptableObject instance)
 {
     if (instance == null)
     {
         throw new ArgumentNullException(nameof(instance));
     }
     _instance = instance._instance;
 }
コード例 #2
0
ファイル: ScriptableObject.cs プロジェクト: wuzlai/AGTkDemo
 protected internal ScriptableObject(XrayHandle instance, ScriptableObjectProvider provider)
 {
     _instance = new XrayProxy(instance, provider);
 }