/// <summary> /// Получить контент из редактора /// </summary> /// <returns></returns> private LoadContent <Sprite> GetContent() { LoadContent <Sprite> result = new LoadContent <Sprite>(); result.loaded = _content.loaded; result.path = _content.path; return(result); }
/// <summary> /// Получить контент из редактора /// </summary> /// <returns></returns> private LoadContent <GameObject> GetContent() { LoadContent <GameObject> result = new LoadContent <GameObject>(); result.loaded = _content.loaded; result.path = _content.path; return(result); }
/// <summary> /// Получить контент из редактора /// </summary> /// <returns></returns> private LoadContent <AudioClip> GetContent() { LoadContent <AudioClip> result = new LoadContent <AudioClip>(); result.loaded = _content.loaded; result.path = _content.path; return(result); }