暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

GUIGroupScope.cs 292B

123456789101112131415161718
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEditor
  4. {
  5. struct GUIGroupScope : IDisposable
  6. {
  7. public GUIGroupScope(Rect position)
  8. {
  9. GUI.BeginGroup(position);
  10. }
  11. public void Dispose()
  12. {
  13. GUI.EndGroup();
  14. }
  15. }
  16. }