mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 04:05:11 +00:00
4f08887078
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))
24 lines
No EOL
542 B
C#
24 lines
No EOL
542 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using HeavenStudio.Editor.Track;
|
|
|
|
using TMPro;
|
|
|
|
namespace HeavenStudio.Editor
|
|
{
|
|
public class TabsManager : MonoBehaviour
|
|
{
|
|
[SerializeField] GameObject activeContent;
|
|
|
|
public void SetActiveContent(GameObject content)
|
|
{
|
|
if (activeContent != null)
|
|
{
|
|
activeContent.SetActive(false);
|
|
}
|
|
activeContent = content;
|
|
activeContent.SetActive(true);
|
|
}
|
|
}
|
|
} |