You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
943 B
32 lines
943 B
3 years ago
|
class CodeGenConfig
|
||
|
{
|
||
|
static ModelViewNameSpace = "ET";
|
||
|
static HotfixViewNameSpace = "ET";
|
||
|
static HotfixViewCodeOutputPath = "../../Unity/Codes/HotfixView/Demo/FUI/AutoGeneratedCode/";
|
||
|
static ModelViewCodeOutputPath = "../../Unity/Codes/ModelView/Demo/FUI/AutoGeneratedCode/";
|
||
|
static HotfixViewLogicCodeOutputPath = "../../Unity/Codes/HotfixView/Demo/FUI/Logic/";
|
||
|
static ModelViewLogicCodeOutputPath = "../../Unity/Codes/ModelView/Demo/FUI/Logic/";
|
||
|
|
||
|
// 组件名前缀
|
||
|
static ClassNamePrefix = "FUI_";
|
||
|
|
||
|
static NameSpacePrefix = "FUI";
|
||
|
static LogicClassNamePrefix = "FUI";
|
||
|
|
||
|
// 成员名前缀
|
||
|
static MemberVarNamePrefix = "m_";
|
||
|
|
||
|
|
||
|
// 不想自动生成Logic的类
|
||
|
static BanClassOfAutoGenerate = [
|
||
|
"BattleUnitInfo",
|
||
|
];
|
||
|
|
||
|
// 正常处理的包,生成组件类在Mono层使用
|
||
|
static NormalAutoGeneratePkgs = [
|
||
|
"CheckUpdate",
|
||
|
];
|
||
|
}
|
||
|
|
||
|
export { CodeGenConfig };
|