【js,ts】枚举

一、环境

https://blog.csdn.net/u013654125/article/details/77867567

mac:10.12.2

CocosCreator:1.5.1

二、JS原生的enum

JS没有enum类型的数据,如果想定义枚举,则:

可以定义一个对象这样来定义枚举,

LoginType = {
UserName : 0,
Quick : 1,
};

但是,这样的对象,可以在脚本里用,但是,如果希望通过CocosCreator里的编辑器来设置值的话,就行不通了。

三、CocosCreator里的enum

CocosCreator里这样定义枚举:

LoginType = cc.Enum({
UserName : 0,
Quick : 1,
});
定义了之后,如果需要在编辑器设置值,就需要在properties里定义属性:

properties: {
        // foo: {
        //    default: null,      // The default value will be used only when the component attaching
        //                           to a node for the first time
        //    url: cc.Texture2D,  // optional, default is typeof default
        //    serializable: true, // optional, default is true
        //    visible: true,      // optional, default is true
        //    displayName: 'Foo', // optional
        //    readonly: false,    // optional, default is false
        // },
        // ...
        test : {
            default : LoginType.UserName,
            type : cc.Enum(LoginType)
        }
    },

四、TS枚举使用


export enum type {
    "wei_xin" = 1,       // 微信
    "tou_tiao" = 2,      // 头条
    "vivo" = 3,      // vivo
    "oppo" = 4,      // oppo
    "qq" = 5,        // qq
}

// Learn TypeScript:
//  - https://docs.cocos.com/creator/manual/en/scripting/typescript.html
// Learn Attribute:
//  - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html
// Learn life-cycle callbacks:
//  - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html

import { type } from "../../../scripts/common/playerInfo";

const {ccclass, property} = cc._decorator;

@ccclass
export default class NewClass extends cc.Component {

    @property(cc.Label)
    label: cc.Label = null;

    @property
    text: string = 'hello';

    @property({ type: cc.Enum(type), displayName: "渠道" })
    type: type = type.oppo;

    // LIFE-CYCLE CALLBACKS:

    // onLoad () {}

    start () {

    }

    // update (dt) {}
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

烧仙草奶茶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值