git auto update

This commit is contained in:
lhy6305 2025-04-18 21:18:46 +08:00
parent 8424c55d48
commit 8c3c46e394

View File

@ -57,7 +57,8 @@
libmain.stageroot=new PIXI.Container(); libmain.stageroot=new PIXI.Container();
libmain.stageroot.sortableChildren=true; libmain.stageroot.sortableChildren=true;
libmain.stageroot.boundsArea=new PIXI.Rectangle(); libmain.stageroot.boundsArea=new PIXI.Rectangle(0, 0, 0, 0);
libmain.stageroot.cullArea=libmain.stageroot.boundsArea;
libmain.render=function() { libmain.render=function() {
try { try {
libmain.renderer.render(libmain.stageroot); libmain.renderer.render(libmain.stageroot);
@ -86,8 +87,6 @@
libmain.mainframe.style.height=res[1]+"px"; libmain.mainframe.style.height=res[1]+"px";
libmain.mainframe.style.left=res[2]+"px"; libmain.mainframe.style.left=res[2]+"px";
libmain.mainframe.style.top=res[3]+"px"; libmain.mainframe.style.top=res[3]+"px";
libmain.stageroot.boundsArea.x=0;
libmain.stageroot.boundsArea.y=0;
libmain.stageroot.boundsArea.width=res[0]; libmain.stageroot.boundsArea.width=res[0];
libmain.stageroot.boundsArea.height=res[1]; libmain.stageroot.boundsArea.height=res[1];
libmain.renderer.width=res[0]; libmain.renderer.width=res[0];