mirror of
https://gitee.com/ccc_28/level-render
synced 2024-12-26 03:38:41 +00:00
19 lines
333 B
TypeScript
19 lines
333 B
TypeScript
import { Label } from 'cc';
|
|
import { _decorator, Component, Node } from 'cc';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
export interface IItem {
|
|
id: number
|
|
}
|
|
@ccclass('Item')
|
|
export class Item extends Component {
|
|
@property(Label)
|
|
lbl: Label = null;
|
|
|
|
setData(p: IItem) {
|
|
this.lbl.string = `${p.id}`
|
|
}
|
|
}
|
|
|
|
|