mirror of
https://github.com/cheney2013/UIState.git
synced 2025-04-21 14:29:10 +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";
|
|
} |