mirror of
https://github.com/ifengzp/cocos-awesome.git
synced 2024-12-26 11:49:18 +00:00
17 lines
289 B
TypeScript
17 lines
289 B
TypeScript
|
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;
|
||
|
}
|
||
|
}
|