金币落袋

This commit is contained in:
ifengzp
2020-03-30 01:26:16 +08:00
parent bfc9a5375c
commit dc2f9b2f90
37 changed files with 2384 additions and 529 deletions
-16
View File
@@ -1,16 +0,0 @@
const {ccclass, property} = cc._decorator;
@ccclass
export default class Helloworld extends cc.Component {
@property(cc.Label)
label: cc.Label = null;
@property
text: string = 'hello';
start () {
// init logic
this.label.string = this.text;
}
}
+6
View File
@@ -0,0 +1,6 @@
const {ccclass, property} = cc._decorator;
@ccclass
export default class Home extends cc.Component {
}