Files
UIState/assets/script/component/CustomLabel.ts
T

9 lines
180 B
TypeScript
Raw Normal View History

2023-06-06 14:17:42 +08:00
import { Label, _decorator } from "cc";
const { ccclass, property } = _decorator;
@ccclass
export class CustomLabel extends Label{
@property
customProp:string = "test";
}