Unity2019自動新增tag和Layer

2021-10-17 23:58:33 字數 1101 閱讀 5304

之前的雨凇momo的指令碼2019用不了,搞了半天,終於搞好了。總的目地還是unitypackage被別人匯入的時候,自動新增tag和layer。注意更改當前檔案位置assets/editor/packageautoinputtageditor.cs

using unityeditor;

using unityeditor.windowsstandalone;

using unityengine;

/// /// 當前專案匯出被別人匯入的時候,自動新增tag和layer

///

public class packageautoinputtageditor : assetpostprocessor

; private static string _layerarr = ;

private static string _sortarr = ;

static void onpostprocessallassets(string importedassets, string deletedassets, string movedassets,

string movedfromassetpaths)

foreach (var layer in _layerarr)

foreach (var sortlayer in _sortarr)

return;}}

}static void addtag(string tag)}}

}static void addlayer(string layer)}}

}}

}static void addsortinglayer(string sortinglayer)}}

}}

}static bool ishastag(string tag)

return false;

}static bool ishaslayer(string layer)

return false;

}static bool ishassortinglayer(string sortinglayer)}}

}}

return false;

}}

Unity 2019 不能啟動 Vscode

win10 裝機,unity 2019 然後設定開啟 vs code 結構任務管理器中發現啟動 vscode 但是就是執行不了 vscode for unity 外掛程式依賴 netcore 我之前安裝 vs2019 的時候並沒有安裝 netcore 我從 vs2019 安裝器從新安裝 netcor...

Unity 2019 補丁安裝教程

可選 先刪除老版本unity,執行在目錄 c program files unity2019 editor uninstall.exe 執行unity安裝程式unitysetup64.exe 安裝目錄建議補上版本號 刪除目錄 c program files unity2019 editor data...

unity2019在vscode中不提示C

根據官方文件安裝 unity development with vs code 簡單來說如下 安裝.net core sdk,mono 只限macos unity中設定編輯器為vscode。vscode中安裝相關外掛程式 如果遇到總是遇到c troubling之類的問題,在vscode的settin...