mirror of
https://github.com/cheney2013/UIState.git
synced 2025-01-29 22:31:33 +00:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
const { ccclass, property } = cc._decorator;
|
|
|
|
@ccclass
|
|
export class CustomLabel extends cc.Label{
|
|
@property
|
|
customProp:string = "test";
|
|
} |