示例#1
0
 public static T[] FindObjectsOfType <T>() where T : DozeObject
 => DozeObjectManager.GetAllObjectsByType <T>();
示例#2
0
 public static T FindObjectOfType <T>() where T : DozeObject
 => DozeObjectManager.GetObjectByType <T>();
示例#3
0
 public static T Create <T>(string tag = "") where T : DozeObject
 => DozeObjectManager.Create <T>(tag);
示例#4
0
 public static T GetObjectByTag <T>(string tag) where T : DozeObject
 => DozeObjectManager.GetObjectByTag <T>(tag);
示例#5
0
 public static T Create <T>() where T : DozeObject, new()
 => DozeObjectManager.Create <T>();