Untitled
unknown
plain_text
a year ago
330 B
8
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