The_Dark_Side_of_Earth/utils/global.gd

10 lines
221 B
GDScript3
Raw Normal View History

class_name Global
static var next_dmg_id : int = 0 :
get:
next_dmg_id += 1
return next_dmg_id
2025-10-05 15:01:51 +02:00
static func vec_mod(vec : Vector2, modulus : float):
return Vector2(fposmod(vec.x, modulus), fposmod(vec.y, modulus))