GUI.DragWindow()

作者:追风剑情 发布于:2014-7-21 22:14 分类:GUI

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class GUIDragWindow : MonoBehaviour {
  5.  
  6. Rect windowRect = new Rect (20, 20, 250, 250);
  7.  
  8. void OnGUI () {
  9. windowRect = GUI.Window (0, windowRect, DoMyWindow, "My Window");
  10. }
  11.  
  12. void DoMyWindow (int windowID) {
  13.  
  14. GUI.Button (new Rect (10,20,100,20), "Can't drag me");
  15.  
  16. //GUI.DragWindow (new Rect (0,0, 1000, 20));//Rect设置Drag区域
  17. GUI.DragWindow ();
  18. }
  19. }

运行效果

运行效果dragwindow.png

标签: DragWindow

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号