mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-05-01 00:34:24 +02:00
20 lines
439 B
C#
20 lines
439 B
C#
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);
|
|
}
|
|
}
|
|
} |