mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
remove old files
This commit is contained in:
parent
9f72fece18
commit
fe13ca5baa
6 changed files with 0 additions and 124 deletions
|
@ -1,28 +0,0 @@
|
||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace HeavenStudio.Editor
|
|
||||||
{
|
|
||||||
public class SnapDialog : MonoBehaviour
|
|
||||||
{
|
|
||||||
[SerializeField] private GameObject snapSetter;
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SwitchSnapDialog()
|
|
||||||
{
|
|
||||||
if(snapSetter.activeSelf) {
|
|
||||||
snapSetter.SetActive(false);
|
|
||||||
} else {
|
|
||||||
snapSetter.SetActive(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Update()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: f32d53b1d58c64e41b71bd7520435169
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,43 +0,0 @@
|
||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace HeavenStudio.Editor
|
|
||||||
{
|
|
||||||
public class TempoFinder : MonoBehaviour
|
|
||||||
{
|
|
||||||
[SerializeField] private GameObject tempoFinder;
|
|
||||||
private bool pressed;
|
|
||||||
private float timePressed;
|
|
||||||
[SerializeField] private BPMText bpmText;
|
|
||||||
private void Awake()
|
|
||||||
{
|
|
||||||
pressed = false;
|
|
||||||
timePressed = 0f;
|
|
||||||
}
|
|
||||||
public void SwitchTempoDialog()
|
|
||||||
{
|
|
||||||
if(tempoFinder.activeSelf) {
|
|
||||||
tempoFinder.SetActive(false);
|
|
||||||
timePressed = 0;
|
|
||||||
bpmText.ResetText();
|
|
||||||
} else {
|
|
||||||
tempoFinder.SetActive(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public void TapBPM()
|
|
||||||
{
|
|
||||||
pressed = true;
|
|
||||||
}
|
|
||||||
private void Update()
|
|
||||||
{
|
|
||||||
timePressed += Time.deltaTime;
|
|
||||||
if(pressed)
|
|
||||||
{
|
|
||||||
pressed = false;
|
|
||||||
bpmText.ChangeText(timePressed);
|
|
||||||
timePressed = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 1b489f3aef16a65499f9596abda39c35
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,20 +0,0 @@
|
||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
using UnityEngine.UI;
|
|
||||||
using UnityEngine.EventSystems;
|
|
||||||
|
|
||||||
namespace HeavenStudio.Editor
|
|
||||||
{
|
|
||||||
public class TempoFinderButton : Button, IPointerDownHandler
|
|
||||||
{
|
|
||||||
public TempoFinder tempoFinder;
|
|
||||||
public override void OnPointerDown(PointerEventData eventData)
|
|
||||||
{
|
|
||||||
if (eventData.button == PointerEventData.InputButton.Left)
|
|
||||||
{
|
|
||||||
tempoFinder.TapBPM();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 9557e460670800e458d7bb141135de55
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Loading…
Reference in a new issue