为什么在Property属性使用枚举时不能显示枚举成员

为什么在* Creator 版本:1.8 中 Property属性使用枚举时不能以下拉列表的形式列出所有枚举成员?

/**

  • 种族类型定义
    */
    enum Ethnicity
    {
    Human, //人类
    Animal,//动物

}

@ccclass(“PartnerData”)
export default class PartnerData
{

@property({ type: cc.Enum, displayName: "种族", serializable: true, tooltip: "小伙伴所属种族" })
public m_ethnicity: Ethnicity = Ethnicity.Human;

}

这样的脚本只能显示出

而我期望与Unity中一样,以下拉列表的形式显示出枚举成员。

type: cc.Enum(Ethnicity)

2赞

非常感谢,回复很及时!赞!!!