mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
15 lines
No EOL
383 B
C#
15 lines
No EOL
383 B
C#
using UnityEngine;
|
|
|
|
// this is a script for testing
|
|
|
|
namespace RhythmHeavenMania.Tests
|
|
{
|
|
public class WTF : MonoBehaviour
|
|
{
|
|
private void Update()
|
|
{
|
|
this.gameObject.transform.rotation = Quaternion.Euler(0, 0, Mathf.Lerp(0, 360, Conductor.instance.loopPositionInAnalog));
|
|
print(Conductor.instance.loopPositionInAnalog);
|
|
}
|
|
}
|
|
} |