2025-07-02 10:24:01 +08:00
|
|
|
using UnityEngine;
|
|
|
|
public static class AssetConst
|
|
|
|
{
|
|
|
|
public const string Assets_Res_ExcelData_AgreementTerms_json = @"Assets/Res/ExcelData/AgreementTerms.json";
|
|
|
|
public const string Assets_Res_ExcelData_CountryAndRegion_json = @"Assets/Res/ExcelData/CountryAndRegion.json";
|
|
|
|
public const string Assets_Res_ExcelData_Inventory_json = @"Assets/Res/ExcelData/Inventory.json";
|
|
|
|
public const string Assets_Res_Fonts_ARIAL_TTF = @"Assets/Res/Fonts/ARIAL.TTF";
|
|
|
|
public const string Assets_Res_Fonts_ChocolateClassicalSans_otf = @"Assets/Res/Fonts/ChocolateClassicalSans.otf";
|
|
|
|
public const string Assets_Res_Fonts_english_msjh_SDF_asset = @"Assets/Res/Fonts/english-msjh-SDF.asset";
|
|
|
|
public const string Assets_Res_Fonts_english_txt = @"Assets/Res/Fonts/english.txt";
|
|
|
|
public const string Assets_Res_Fonts_fanti_msjh_SDF_asset = @"Assets/Res/Fonts/fanti-msjh-SDF.asset";
|
|
|
|
public const string Assets_Res_Fonts_fanti_txt = @"Assets/Res/Fonts/fanti.txt";
|
|
|
|
public const string Assets_Res_Fonts_jianti_msjh_SDF1_asset = @"Assets/Res/Fonts/jianti-msjh-SDF1.asset";
|
|
|
|
public const string Assets_Res_Fonts_jianti_txt = @"Assets/Res/Fonts/jianti.txt";
|
|
|
|
public const string Assets_Res_Fonts_msjh_ttc = @"Assets/Res/Fonts/msjh.ttc";
|
|
|
|
public const string Assets_Res_Fonts_SIMKAI_TTF = @"Assets/Res/Fonts/SIMKAI.TTF";
|
|
|
|
public const string Assets_Res_Prefab_ModelMeshesVariant_prefab = @"Assets/Res/Prefab/ModelMeshes Variant.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_AgreementUI_prefab = @"Assets/Res/Prefab/UI/AgreementUI.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_ChooseProductUI_prefab = @"Assets/Res/Prefab/UI/ChooseProductUI.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_HomeUI_prefab = @"Assets/Res/Prefab/UI/HomeUI.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_ProductUI_prefab = @"Assets/Res/Prefab/UI/ProductUI.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_ShoppingCartUI_prefab = @"Assets/Res/Prefab/UI/ShoppingCartUI.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_ThemeUI_prefab = @"Assets/Res/Prefab/UI/ThemeUI.prefab";
|
2025-07-08 22:07:35 +08:00
|
|
|
public const string Assets_Res_Prefab_UI_UploadPhotoPageVariant_prefab = @"Assets/Res/Prefab/UI/UploadPhotoPage Variant.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnDesignCover_prefab = @"Assets/Res/Prefab/UI/Item/btnDesignCover.prefab";
|
2025-07-02 10:24:01 +08:00
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct1Color_BookColor_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct1Color_BookColor.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_BookColor_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_BookColor.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_ItemDesign_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_ItemDesign.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_ItemDesignOnly_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_ItemDesignOnly.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_SelectColor_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_SelectColor.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_Theme_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_Theme.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct2Sticker_ThemeItem_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct2Sticker_ThemeItem.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_btnProduct4Line_BookLine_prefab = @"Assets/Res/Prefab/UI/Item/btnProduct4Line_BookLine.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_CommodityItem_prefab = @"Assets/Res/Prefab/UI/Item/CommodityItem.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Item_goUpMenu_prefab = @"Assets/Res/Prefab/UI/Item/goUpMenu.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Other_Keyboard_prefab = @"Assets/Res/Prefab/UI/Other/Keyboard.prefab";
|
|
|
|
public const string Assets_Res_Prefab_UI_Other_LanguageChange_prefab = @"Assets/Res/Prefab/UI/Other/LanguageChange.prefab";
|
|
|
|
public const string Assets_Res_Scene_Game_unity = @"Assets/Res/Scene/Game.unity";
|
|
|
|
|
|
|
|
}
|