Compare commits

..

2 Commits

Author SHA1 Message Date
1dc441ed7b Toothbrush is very slightly more powerful
Some checks failed
linting & formatting / build (push) Failing after 31s
2025-09-08 18:03:17 -06:00
92a516577b Player HUD clear alert should only play when the alert level was in the danger zone 2025-09-08 17:59:46 -06:00
4 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@ extends SurfaceSnapTool
# the wimpy toothbrush # the wimpy toothbrush
const PAINT_COLOR := Color(1, 0, 0, 0.3) const PAINT_COLOR := Color(1, 0, 0, 0.3)
const BRUSH_SCALE := 0.2 const BRUSH_SCALE := 0.5
@export var damage := 0.0063 # ~8 seconds to destroy standard nodule @export var damage := 0.0063 # ~8 seconds to destroy standard nodule

View File

@ -77,7 +77,6 @@ collision_mask = 4
hit_from_inside = true hit_from_inside = true
[node name="BeamPassthroughArea" type="Area3D" parent="Raycast"] [node name="BeamPassthroughArea" type="Area3D" parent="Raycast"]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0)
collision_layer = 128 collision_layer = 128
collision_mask = 0 collision_mask = 0

View File

@ -23,4 +23,5 @@ func play_tank_full_alert() -> void:
func _on_clear_alert() -> void: func _on_clear_alert() -> void:
alert_clear_player.play("alert_clear") if World.instance.manager.alert_level >= 2:
alert_clear_player.play("alert_clear")

View File

@ -458,10 +458,10 @@ anchor_left = 0.5
anchor_top = 0.5 anchor_top = 0.5
anchor_right = 0.5 anchor_right = 0.5
anchor_bottom = 0.5 anchor_bottom = 0.5
offset_left = -20.2593 offset_left = -20.7219
offset_top = -19.6536 offset_top = -16.7788
offset_right = -20.2593 offset_right = -20.7219
offset_bottom = -19.6536 offset_bottom = -16.7788
grow_horizontal = 2 grow_horizontal = 2
grow_vertical = 2 grow_vertical = 2
script = ExtResource("4_ud8na") script = ExtResource("4_ud8na")