Skip to content

Commit

Permalink
Remove unneeded debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
wjt committed Dec 16, 2024
1 parent a5f781d commit 4583871
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion scenes/background/background.gd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ func _process(delta: float) -> void:

if tilt:
speed = clamp (speed + tilt * (20 * delta), -10.0, 10.0)
print("speed", speed)

scroll_offset.x -= (delta * speed)
1 change: 0 additions & 1 deletion snow.gd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ func adjust(shader_parameter: StringName, adjustment: float, min: float, max: fl
var m = material as ShaderMaterial
var value = m.get_shader_parameter(shader_parameter)
value = clampf(value + adjustment, min, max)
print(shader_parameter, " -> ", value)
m.set_shader_parameter(shader_parameter, value)

func _process(delta: float) -> void:
Expand Down

0 comments on commit 4583871

Please sign in to comment.