mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
d96570513e
* modularize tabs-style menus * make remix properties use modular design * add persistent settings
20 lines
No EOL
429 B
C#
20 lines
No EOL
429 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using HeavenStudio.Editor.Track;
|
|
|
|
using TMPro;
|
|
|
|
namespace HeavenStudio.Editor
|
|
{
|
|
public class TabButton : MonoBehaviour
|
|
{
|
|
public GameObject Content;
|
|
|
|
public void OnClick()
|
|
{
|
|
var tabsManager = transform.parent.GetComponent<TabsManager>();
|
|
tabsManager.SetActiveContent(Content);
|
|
}
|
|
}
|
|
} |