HeavenStudioPlus/Assets/Scripts/LevelEditor/SettingsDialog/TabButton.cs

20 lines
439 B
C#
Raw Normal View History

2022-07-10 03:22:59 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HeavenStudio.Editor.Track;
using TMPro;
namespace HeavenStudio.Editor
{
public class TabButton : MonoBehaviour
{
[SerializeField] GameObject Content;
public void OnClick()
{
var tabsManager = transform.parent.GetComponent<TabsManager>();
tabsManager.SetActiveContent(Content);
}
}
}