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.
26 lines
1.0 KiB
26 lines
1.0 KiB
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.CodeGenConfig = void 0; |
|
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", |
|
]; |
|
} |
|
exports.CodeGenConfig = CodeGenConfig;
|
|
|