监听屏幕大小改变

作者:追风剑情 发布于:2016-11-10 21:02 分类:NGUI

以下为NGUI源码

UICamera.cs
  1. void LateUpdate ()
  2. {
  3. #if UNITY_EDITOR
  4. if (!Application.isPlaying || !handlesEvents) return;
  5. #else
  6. if (!handlesEvents) return;
  7. #endif
  8. int w = Screen.width;
  9. int h = Screen.height;
  10.  
  11. if (w != mWidth || h != mHeight)
  12. {
  13. mWidth = w;
  14. mHeight = h;
  15.  
  16. UIRoot.Broadcast("UpdateAnchors");
  17.  
  18. if (onScreenResize != null)
  19. onScreenResize();
  20. }
  21. }

 

标签: NGUI

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号