-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
caffb51
commit be1dcf1
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { _decorator } from "cc"; | ||
import mk from "mk"; | ||
import cc from "cc"; | ||
const { ccclass, property } = _decorator; | ||
|
||
class <%UnderscoreCaseClassName%> extends mk.bundle_.bundle_manage_base { | ||
name_s = "这里填写 bundle 名"; | ||
} | ||
|
||
export default new <%UnderscoreCaseClassName%>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { _decorator } from "cc"; | ||
import mk from "mk"; | ||
import cc from "cc"; | ||
const { ccclass, property } = _decorator; | ||
|
||
@ccclass("<%UnderscoreCaseClassName%>") | ||
export class <%UnderscoreCaseClassName%> extends mk.static_view_base { | ||
// 初始化视图 | ||
// create(): void {} | ||
// 有数据初始化 | ||
// init(init_?: typeof this.init_data): void {} | ||
// 无数据初始化 | ||
// open(): void {} | ||
// 模块关闭 | ||
// close(): void {} | ||
} |