Ejemplo n.º 1
0
 public static T Load <T>(string location, Transform parent, Vector3 pos, Quaternion rot) where T : Object
 {
     if (m_Interface != null)
     {
         return(m_Interface.Load <T>(location, parent, pos, rot));
     }
     else
     {
         Debug.LogWarning("timeline interface is null");
         return(default(T));
     }
 }