mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 02:57:38 +02:00
Playback speed slider
This commit is contained in:
@ -93,7 +93,7 @@ namespace RhythmHeavenMania.Editor
|
||||
UpdateEditorStatus(true);
|
||||
}
|
||||
|
||||
public void Update()
|
||||
public void LateUpdate()
|
||||
{
|
||||
// This is buggy
|
||||
/*if (Conductor.instance.isPlaying || Conductor.instance.isPaused)
|
||||
@ -147,7 +147,7 @@ namespace RhythmHeavenMania.Editor
|
||||
}
|
||||
|
||||
if (Timeline.instance.timelineState.selected == true)
|
||||
if (Input.GetMouseButtonUp(0) && Timeline.instance.CheckIfMouseInTimeline())
|
||||
if (Input.GetMouseButtonUp(0))
|
||||
{
|
||||
List<TimelineEventObj> selectedEvents = Timeline.instance.eventObjs.FindAll(c => c.selected == true && c.eligibleToMove == true);
|
||||
|
||||
|
Reference in New Issue
Block a user