CocosCreator 动态设置属性在Properties面板显示/隐藏
Posted kingbook
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CocosCreator 动态设置属性在Properties面板显示/隐藏相关的知识,希望对你有一定的参考价值。
Test.ts
const{ccclass,property}=cc._decorator;
var KEY=cc.Enum({});
Object.assign(KEY,cc.macro.KEY);
@ccclass
export default class Test extends cc.Component{
@property({type:KEY,visible:true})
private _leftKey:cc.macro.KEY=cc.macro.KEY.a;
@property({visible:true,})
private _enableSecondKey:boolean=false;
@property({type:KEY, visible(){return this._enableSecondKey;} })
private _leftKey2:cc.macro.KEY=cc.macro.KEY.left;
}
以上是关于CocosCreator 动态设置属性在Properties面板显示/隐藏的主要内容,如果未能解决你的问题,请参考以下文章