Loads of crap

This commit is contained in:
Dan Baker 2025-06-26 14:46:23 +01:00
parent b5bf7619e6
commit 1dc768ad27
725 changed files with 15096 additions and 191 deletions

View file

@ -6,17 +6,14 @@ var _rng: RandomNumberGenerator = RandomNumberGenerator.new()
func _ready():
randomize()
print("Global RNG initialized with seed: ", _rng.seed)
# Set a specific seed for reproducible results
func set_seed(seed_value: int) -> void:
_rng.seed = seed_value
print("RNG seed set to: ", seed_value)
# Randomize the seed (for non-reproducible results)
func randomize() -> void:
_rng.randomize()
print("RNG seed randomized to: ", _rng.seed)
# Get the current seed value
func get_seed() -> int: