Compare commits

...

3 Commits

Author SHA1 Message Date
jlink 3bd70f221e Minigame click max 3 mal
Blob Target Collider angepasst
2026-01-15 11:41:50 +01:00
Jonathan b810ea1d9f Merge pull request 'Kampf Tooltip wird ausgeblendet' (#43) from Kampf_Tooltip into develop
Reviewed-on: #43
Reviewed-by: Jonathan <cblech@ymail.com>
2025-12-11 17:29:54 +01:00
jlink fc00559483 Kampf Tooltip wird ausgeblendet 2025-12-10 15:53:55 +01:00
3 changed files with 8 additions and 0 deletions
@@ -14,5 +14,9 @@ position = Vector2(23, -96)
scale = Vector2(0.547474, 0.547474)
texture = SubResource("AtlasTexture_ane0o")
[node name="CollisionShape2D" parent="TargetSelection/Click" index="0"]
position = Vector2(-1.955, -98.545)
scale = Vector2(0.6400007, 0.68000054)
[node name="Sprite2D" parent="TargetSelection/HoverIndicator" index="0"]
position = Vector2(1, -126)
@@ -168,6 +168,7 @@ theme_override_constants/margin_left = 200
theme_override_constants/margin_right = 200
[node name="MarginContainer" type="MarginContainer" parent="ActionSelect/BottomPanel/VBoxContainer/MarginContainer2"]
visible = false
layout_mode = 2
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
@@ -137,6 +137,9 @@ public partial class MinigameController : Node2D
public void Hit()
{
if (_hits == null) return;
if(_hits.Count >= _maxHitCount) return;
int i;
for (i = 0; i < _regions!.Count - 1; i++)