This commit is contained in:
Rendo 2025-10-17 18:22:49 +05:00
commit 074bb21ffd
18 changed files with 99 additions and 51 deletions

View file

@ -5,4 +5,6 @@ extends Node
var sync_time : float
func _process(delta: float) -> void:
sync_time = fposmod(sync_time+delta,1)
sync_time += delta
if sync_time > 1:
sync_time -= 1