speed-square-pc/speed_square_pc_source/game_state.gd
2024-01-31 19:57:37 +05:30

14 lines
202 B
GDScript

extends Node
var time_taken = 0.0
var stop_stopwatch = false
func _process(delta):
if stop_stopwatch == false:
time_taken += delta
#if stop_stopwatch == true:
#print("stopped the watch")