瀏覽代碼

Resize problems fix (#141)

Resolve various resize issues on s3d windows
Jed974 4 年之前
父節點
當前提交
fc4aafa22d
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      hide/comp/Scene.hx

+ 2 - 0
hide/comp/Scene.hx

@@ -147,7 +147,9 @@ class Scene extends Component implements h3d.IDrawable {
 		};
 		engine.onResized = function() {
 			if( s2d == null ) return;
+			setCurrent();
 			visible = engine.width > 32 && engine.height > 32; // 32x32 when hidden !
+			s2d.scaleMode = Resize; // setter call
 			onResize();
 		};
 		engine.init();