YooAssetSetting folder search location

YooAssetSetting文件夹全路径搜索定位
This commit is contained in:
hevinci
2022-04-28 23:29:15 +08:00
parent 62f1c050ca
commit 3de44a416c
14 changed files with 80 additions and 60 deletions

View File

@@ -1,25 +1,9 @@

using System;
using System;
namespace YooAsset.Editor
{
public class EditorDefine
{
/// <summary>
/// 资源包构建工具的配置文件存储路径
/// </summary>
public const string AssetBundleBuilderSettingFilePath = "Assets/YooAssetSetting/AssetBundleBuilderSetting.asset";
/// <summary>
/// 资源包分组工具的配置文件存储路径
/// </summary>
public const string AssetBundleGrouperSettingFilePath = "Assets/YooAssetSetting/AssetBundleGrouperSetting.asset";
/// <summary>
/// 着色器变种收集工具的配置文件存储路径
/// </summary>
public const string ShaderVariantCollectorSettingFilePath = "Assets/YooAssetSetting/ShaderVariantCollectorSetting.asset";
/// <summary>
/// 停靠窗口类型集合
/// </summary>
@@ -55,16 +39,16 @@ namespace YooAsset.Editor
/// </summary>
public enum EAssetFileExtension
{
prefab, //预制体
unity, //场景
fbx, //模型
anim, //动画
controller, //控制器
png, //图片
jpg, //图片
mat, //材质球
shader, //着色器
ttf, //字体
cs, //脚本
prefab,
unity,
fbx,
anim,
controller,
png,
jpg,
mat,
shader,
ttf,
cs,
}
}