mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-15 22:25:07 +00:00
06f80bfb51
First Contact: Live is now offbeat [alienSuccess] code block is a bit smaller Mission Control is now stretchable Tap Trial - Started working on coding the inputs - Animated monkey (tap, double, and triple (incomplete))
20 lines
No EOL
439 B
C#
20 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |