Files
Convention-Unity-Demo/Assets/Dreamteck/Splines/Examples/Projection/Scripts/LapCounter.cs
2025-09-25 19:04:05 +08:00

19 lines
369 B
C#

namespace Dreamteck.Splines.Examples
{
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LapCounter : MonoBehaviour
{
int currentLap;
public TextMesh text;
public void CountLap()
{
currentLap++;
text.text = "LAP " + currentLap;
}
}
}