Skip to content
  • This project
    • Loading...
  • Sign in

金学艇 / ChildEdu

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ChildEdu
  • assets
  • Script
  • CCLayout.js
  • jinwawa's avatar
    complete SceneRecommend · 6dae2e0f
    6dae2e0f
    jinwawa authored 2019-08-30 11:58:32 +0800
CCLayout.js 431 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
cc.Class({
    extends: cc.Layout,

    properties: {

    },  

    _doLayoutDirty: function () {
        this._layoutDirty = true;
        //-----------------------------------------------
        var children = this.node.children;
        for (var i = 0; i < children.length; ++i) {
            var child = children[i];
            child.zIndex=10;
        }
        //-----------------------------------------------
    },

});