bccd88e164
* prep UI for chart section
* all special layers now on one area
todo: have buttons toggle between special layers (selection mode shows all?), use the tabs system for this
* swapping between special timelines - prelim
* special entities can be placed
* spec. timeline base functions complete
music volume changes should work now
* attempt at input lag reduction
needs testing
* fix dsp issues
* smaller DSP buffer?
* Revert "smaller DSP buffer?"
This reverts commit 9d36db5ff9
.
* make conductor clock use real time (double)
change order of execution of input-related scripts to further attempt a reduction in input latency
* start values can be changed
make the old special entity bar visible when the corresponding type is selected
* creation of Chart Sections (TODO: GO REFERENCE)
* added GO references
* section edit dialog
* disable wrapping on chart section obj
* backspace can now delete entities
* entities don't shift when duplicated
* fix PlayerActionEvent order of operations
- fixed remix loading trying to clear special timeline while it's writing to itself
* make oop check match parity
* more operation order fix
* fix Karate Man BG initialization
* show section progress in editor
todo: section progress in-game
* more fix for entity duping
96 lines
3 KiB
C#
96 lines
3 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using TMPro;
|
|
|
|
using DG.Tweening;
|
|
|
|
namespace HeavenStudio.Editor.Track
|
|
{
|
|
public class VolumeTimelineObj : SpecialTimelineObj
|
|
{
|
|
[Header("Components")]
|
|
[SerializeField] private TMP_Text volumeTXT;
|
|
[SerializeField] private GameObject volumeLine;
|
|
|
|
public DynamicBeatmap.VolumeChange volumeChange;
|
|
|
|
new private void Update()
|
|
{
|
|
base.Update();
|
|
if (hovering)
|
|
{
|
|
SpecialTimeline.hoveringTypes |= SpecialTimeline.HoveringTypes.VolumeChange;
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.MusicVolume)
|
|
{
|
|
float newVolume = Input.mouseScrollDelta.y;
|
|
|
|
if (Input.GetKey(KeyCode.LeftShift))
|
|
newVolume *= 5f;
|
|
if (Input.GetKey(KeyCode.LeftControl))
|
|
newVolume /= 100f;
|
|
|
|
volumeChange.volume += newVolume;
|
|
|
|
//make sure volume is positive
|
|
volumeChange.volume = Mathf.Clamp(volumeChange.volume, 0, 100);
|
|
}
|
|
}
|
|
|
|
UpdateVolume();
|
|
}
|
|
|
|
private void UpdateVolume()
|
|
{
|
|
volumeTXT.text = $"{volumeChange.volume}%";
|
|
}
|
|
|
|
public override void Init()
|
|
{
|
|
UpdateVolume();
|
|
}
|
|
|
|
public override void OnLeftClick()
|
|
{
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.MusicVolume)
|
|
StartMove();
|
|
}
|
|
|
|
public override void OnRightClick()
|
|
{
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.MusicVolume)
|
|
{
|
|
GameManager.instance.Beatmap.volumeChanges.Remove(volumeChange);
|
|
DeleteObj();
|
|
}
|
|
}
|
|
|
|
public override bool OnMove(float beat)
|
|
{
|
|
foreach (var volumeChange in GameManager.instance.Beatmap.volumeChanges)
|
|
{
|
|
if (this.volumeChange == volumeChange)
|
|
continue;
|
|
if (beat > volumeChange.beat - Timeline.instance.snapInterval && beat < volumeChange.beat + Timeline.instance.snapInterval)
|
|
return false;
|
|
}
|
|
this.volumeChange.beat = beat;
|
|
return true;
|
|
}
|
|
|
|
public override void SetVisibility(Timeline.CurrentTimelineState.State state)
|
|
{
|
|
if (state == Timeline.CurrentTimelineState.State.MusicVolume || state == Timeline.CurrentTimelineState.State.Selection)
|
|
{
|
|
gameObject.SetActive(true);
|
|
if (state == Timeline.CurrentTimelineState.State.MusicVolume)
|
|
volumeLine.SetActive(true);
|
|
else
|
|
volumeLine.SetActive(false);
|
|
}
|
|
else
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|
|
} |