UIState/assets/script/component/CustomLabel.ts

9 lines
180 B
TypeScript
Raw Normal View History

import { Label, _decorator } from "cc";
const { ccclass, property } = _decorator;
@ccclass
export class CustomLabel extends Label{
@property
customProp:string = "test";
}