コード例 #1
0
        static public bool IsExternalAsset(this UnityEngine.Object item)
        {
            if (item.GetAssetType() == AssetType.External)
            {
                return(true);
            }

            return(false);
        }