prototyping

This commit is contained in:
2024-09-04 18:39:41 +05:30
parent 70303078c7
commit f5e1024744
62 changed files with 29061 additions and 12386 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Marker : MonoBehaviour
{
public float myTime = 0f;
void Update(){
transform.position = new Vector3(myTime * AudioAnalyzer.instance.zoomingYMult, 0);
}
}