資源描述:
《Unity3D游戲開發(fā)之AssetImporter資源導(dǎo)入器》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。
1、Unity3D游戲開發(fā)之AssetImporter資源導(dǎo)入器AssetImporter資源導(dǎo)入器InheritsfromObjectBaseclassfromwhichassetimportersforspecificassettypesderive.作為特殊資源類型派生的資源導(dǎo)入器的基類。Note:Thisisaneditorclass.TouseityouhavetoplaceyourscriptinAssets/Editorinsideyourprojectfolder.Editorcla
2、ssesareintheUnityEditornamespacesoforC#scriptsyouneedtoadd“usingUnityEditor;”atthebeginningofthescript.注意:這是一個編輯器類,如果想使用它你需要把它放到工程目錄下的Assets/Editor文件夾下。編輯器類在UnityEditor命名空間下。所以當(dāng)使用C#腳本時,你需要在腳本前面加上“usingUnityEditor”引用。文章出處【狗刨學(xué)習(xí)網(wǎng)】Variables變量·assetPathTh
3、epathnameoftheassetforthisimporter(ReadOnly)用于這個導(dǎo)入器,資源的路徑名(只讀)。ClassFunctions類函數(shù)·GetAtPathRetrievestheassetimporterfortheassetatpath.為所在路徑的資源,導(dǎo)入器重新獲取資源。Inheritedmembers繼承成員InheritedVariables繼承變量·nameThenameoftheobject.//物體的名字·hideFlagsShouldtheobject
4、behidden,savedwiththesceneormodifiablebytheuser?物體是否被隱藏、保存在場景中或被用戶修改?InheritedFunctions繼承函數(shù)·GetInstanceIDReturnstheinstanceidoftheobject.返回物體的實(shí)例ID·ToStringReturnsthenameofthegameobject.返回游戲物體的名稱。InheritedClassFunctions繼承類函數(shù)operatorboolDoestheobjectex
5、ist?物體是否存在?InstantiateClonestheobjectoriginalandreturnstheclone.克隆原始物體,并返回克隆的物體Instantiate.DestroyRemovesagameobject,componentorasset.刪除一個游戲物體、組件或資源DestroyImmediateDestroystheobjectobjimmediately.ItisstronglyrecommendedtouseDestroyinstead.立即銷毀物體ob
6、j,強(qiáng)烈建議使用Destroy代替。FindObjectsOfTypeReturnsalistofallactiveloadedobjectsofTypetype.返回Type類型的所有激活的加載的物體列表FindObjectOfTypeReturnsthefirstactiveloadedobjectofTypetype.返回Type類型第一個激活的加載的物體。operator==Comparesiftwoobjectsrefertothesame比較如果兩個物體相同operator!=Com
7、paresiftwoobjectsrefertoadifferentobject比較如果兩個物體不同DontDestroyOnLoadMakestheobjecttargetnotbedestroyedautomaticallywhenloadinganewscene.加載新場景的時候使目標(biāo)物體不被自動銷毀。AssetImporter.assetPath資源路徑var?assetPath?:stringDescription描述Thepathnameoftheassetforthisimport
8、er(ReadOnly)用于這個導(dǎo)入器,資源的路徑名(只讀)。AssetImporter.GetAtPath獲取路徑資源staticfunction?GetAtPath?(path?:string):AssetImporterDescription描述Retrievestheassetimporterfortheassetatpath.通過資源路徑,導(dǎo)入器重新獲取資源。簡單的說,通過指定路徑來導(dǎo)入資源。文章出處【狗刨學(xué)習(xí)網(wǎng)】