| 123456789101112 |
- const { ccclass, property } = cc._decorator;
- /**
- * 字符集数据
- */
- @ccclass()
- export class BitmapFontData {
- @property({ tooltip: "字符" })
- public chair: string = '';
- @property({ tooltip: "图片", type: cc.SpriteFrame })
- public spriteFrame: cc.SpriteFrame = null;
-
- }
|