不开启节点树时也可以cc.tree

This commit is contained in:
Next 2019-03-08 20:24:17 +08:00
parent 25a40ab5f4
commit 66e6d4db4a
2 changed files with 62 additions and 42 deletions

View File

@ -362,8 +362,7 @@
return node.name.toLowerCase().indexOf(value.toLowerCase()) !== -1; return node.name.toLowerCase().indexOf(value.toLowerCase()) !== -1;
}, },
openDevMode() { openDevMode() {
let initWin = () => { setTimeout(() => {
if (window.cc) {
cc.js.getset(cc.Node.prototype, 'isLeaf', function () { cc.js.getset(cc.Node.prototype, 'isLeaf', function () {
return this.childrenCount === 0; return this.childrenCount === 0;
}, function (value) { }, function (value) {
@ -384,15 +383,8 @@
this.$data.sceneTreeData = []; this.$data.sceneTreeData = [];
this.$data.treeParam = []; this.$data.treeParam = [];
}, this); }, this);
this.initConsoleUtil();
clearInterval(this.$data.intervalId);
} else {
// console.log('cc is not init');
}
}
this.$data.intervalId = setInterval(initWin, 500);
setTimeout(initWin, 0);
localStorage.setItem('isDevMode', 1); localStorage.setItem('isDevMode', 1);
}, 0);
}, },
closeDevMode() { closeDevMode() {
this.$data.node = null; this.$data.node = null;
@ -449,6 +441,17 @@
} }
animate(); animate();
}, },
fitFullScreen() {
document.getElementsByClassName('toolbar')[0].style.display = 'none';
let gameDiv = document.getElementById('GameDiv');
let gameContainer = document.getElementById('Cocos2dGameContainer');
let gameCanvas = document.getElementById('GameCanvas');
gameDiv.style.width = '100%';
gameDiv.style.height = '100%';
gameCanvas.style.width = '100%';
gameCanvas.style.height = '100%';
// document.body.style.cssText+="-webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg)";
},
initConsoleUtil() { initConsoleUtil() {
if (cc.tree) return; if (cc.tree) return;
cc.tree = function (key) { cc.tree = function (key) {
@ -577,6 +580,12 @@
created: function () { created: function () {
this.checkVersion(); this.checkVersion();
document.body.insertBefore(document.getElementById('app'), document.body.firstChild); document.body.insertBefore(document.getElementById('app'), document.body.firstChild);
let onCCInit = () => {
this.initConsoleUtil();
if (cc.sys.isMobile) {
this.fitFullScreen();
}
if (localStorage.getItem('isDevMode') === '1') { if (localStorage.getItem('isDevMode') === '1') {
this.$data.isDevMode = true; this.$data.isDevMode = true;
this.openDevMode(); this.openDevMode();
@ -589,6 +598,17 @@
setTimeout(() => { setTimeout(() => {
this.handleChangeStats(); this.handleChangeStats();
}, 0); }, 0);
}
let checkCC = () => {
if (window.cc) {
onCCInit();
clearInterval(this.$data.intervalId);
} else {
// console.log('cc is not init');
}
}
this.$data.intervalId = setInterval(checkCC, 500);
setTimeout(checkCC, 0);
}, },
}); });
</script> </script>

View File

@ -1,6 +1,6 @@
{ {
"name": "ccc-devtools", "name": "ccc-devtools",
"version": "2.1.0", "version": "2.1.1",
"author": "Next", "author": "Next",
"repo": "https://github.com/potato47/ccc-devtools.git" "repo": "https://github.com/potato47/ccc-devtools.git"
} }