美文网首页
cocos creater 面版设置node的zIndex

cocos creater 面版设置node的zIndex

作者: 凡凡的小web | 来源:发表于2019-05-12 08:10 被阅读0次

原文链接[https://www.jianshu.com/p/f92e48467ce8]

/**
*SetZIndex.js 控制组件
**/
cc.Class({
    extends: cc.Component,
    //编辑器属性定义
    properties: {
        zIndex: {
            type: cc.Integer, //使用整型定义
            default: 0,
            //使用notify函数监听属性变化
            notify(oldValue) {
                //减少无效赋值
                if (oldValue === this.zIndex) {
                    return;
                }
                this.node.zIndex = this.zIndex;
            }
        }
    },
    onLoad () {
        this.node.zIndex = this.zIndex;
    }
});

相关文章

网友评论

      本文标题:cocos creater 面版设置node的zIndex

      本文链接:https://www.haomeiwen.com/subject/rjmqaqtx.html