reduce sample rate for engine

This commit is contained in:
interfisch 2025-05-23 07:35:41 +02:00
parent b39ae55230
commit 7f4f8433fb

View file

@ -2,7 +2,7 @@ extends Node
#var sample_hz = 44100.0 # Keep the number of samples to mix low, GDScript is not super fast.
var sample_hz = 44100.0/4 # Keep the number of samples to mix low, GDScript is not super fast.
var sample_hz = 44100.0/8 # Keep the number of samples to mix low, GDScript is not super fast.
@onready var noise = FastNoiseLite.new()
var phase_rotation = 0.0