mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
31 lines
582 B
C#
31 lines
582 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using HeavenStudio.Editor.Track;
|
||
|
|
||
|
namespace HeavenStudio.Editor
|
||
|
{
|
||
|
public class SpecialTimelineTempo : TabsContent
|
||
|
{
|
||
|
// Start is called before the first frame update
|
||
|
void Start()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void OnOpenTab()
|
||
|
{
|
||
|
SpecialTimeline.instance.FixObjectsVisibility();
|
||
|
}
|
||
|
|
||
|
public override void OnCloseTab()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|