21 lines
427 B
C#
21 lines
427 B
C#
// (c) Copyright HutongGames, LLC 2010-2013. All rights reserved.
|
|
|
|
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HutongGames.PlayMaker.Actions
|
|
{
|
|
[ActionCategory(ActionCategory.GUILayout)]
|
|
[Tooltip("Close a GUILayout group started with BeginArea.")]
|
|
public class GUILayoutEndArea : FsmStateAction
|
|
{
|
|
public override void Reset()
|
|
{
|
|
}
|
|
|
|
public override void OnGUI()
|
|
{
|
|
GUILayout.EndArea();
|
|
}
|
|
}
|
|
} |