Untitled
unknown
plain_text
5 months ago
330 B
5
Indexable
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Timer : MonoBehaviour { float counter = 0f; void Start() { } private void Update() { counter += Time.deltaTime; print(counter); //print ((int)counter); } }
Editor is loading...
Leave a Comment