46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
// Learn TypeScript:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/typescript.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/typescript.html
|
|
// Learn Attribute:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
// - [English] http://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
const {ccclass, property} = cc._decorator;
|
|
|
|
export enum ItemType
|
|
{
|
|
none = 0,
|
|
fhl = 1,
|
|
rocket = 2,
|
|
magnet = 3
|
|
|
|
}
|
|
|
|
@ccclass
|
|
export default class Item extends cc.Component {
|
|
|
|
@property({type:cc.Enum(ItemType)})
|
|
public type:ItemType = ItemType.none;
|
|
|
|
|
|
//@property
|
|
//public value:number = 0;
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
onLoad () {}
|
|
|
|
start () {
|
|
//this.node.
|
|
}
|
|
|
|
public destroySelf():void
|
|
{
|
|
this.node.destroy();
|
|
}
|
|
// update (dt) {}
|
|
}
|