Files
beyond/Assets/ThirdParty/PlayMaker/Actions/GUILayout/GUILayoutEndScrollView.cs
2024-11-20 15:21:28 +01:00

16 lines
375 B
C#

// (c) Copyright HutongGames, LLC 2010-2013. All rights reserved.
using UnityEngine;
namespace HutongGames.PlayMaker.Actions
{
[ActionCategory(ActionCategory.GUILayout)]
[Tooltip("Close a group started with GUILayout Begin ScrollView.")]
public class GUILayoutEndScrollView : FsmStateAction
{
public override void OnGUI()
{
GUILayout.EndScrollView();
}
}
}