testss
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityEditor.Timeline
|
||||
{
|
||||
readonly struct HorizontalScope : IDisposable
|
||||
{
|
||||
public readonly Rect rect;
|
||||
|
||||
public HorizontalScope(GUIContent content, GUIStyle style)
|
||||
{
|
||||
rect = EditorGUILayout.BeginHorizontal(content, style);
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
EditorGUILayout.EndHorizontal();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user