diff options
author | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-01-27 19:15:33 +0200 |
---|---|---|
committer | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-01-27 19:15:33 +0200 |
commit | 99b7a48dd674b0b62e21ca2f76caede42c20a308 (patch) | |
tree | 43eca3465704e9376884422149231b845f94298d /game/transition | |
parent | 7e93b486c18cd1498381c506a28d3c246ca68825 (diff) | |
download | gamejam-ggj-2024-99b7a48dd674b0b62e21ca2f76caede42c20a308.tar.gz gamejam-ggj-2024-99b7a48dd674b0b62e21ca2f76caede42c20a308.tar.bz2 gamejam-ggj-2024-99b7a48dd674b0b62e21ca2f76caede42c20a308.zip |
Smaller resolution for assets
Diffstat (limited to 'game/transition')
-rw-r--r-- | game/transition/transition.gd | 5 | ||||
-rw-r--r-- | game/transition/transition.tscn | 18 |
2 files changed, 15 insertions, 8 deletions
diff --git a/game/transition/transition.gd b/game/transition/transition.gd index 563e6d1..519d69f 100644 --- a/game/transition/transition.gd +++ b/game/transition/transition.gd @@ -15,7 +15,12 @@ var _characters = [] func _ready() -> void: animation_player.speed_scale = speed_scale _characters = %Characters.get_children() + + +func reset() -> void: animation_player.play("RESET") + for c in _characters: + c._reset_animation() func microgame_fade_out(): diff --git a/game/transition/transition.tscn b/game/transition/transition.tscn index a86b07a..11b9fb1 100644 --- a/game/transition/transition.tscn +++ b/game/transition/transition.tscn @@ -321,8 +321,8 @@ anchor_right = 1.0 anchor_bottom = 1.0 offset_left = 360.0 offset_top = 68.0 -offset_right = 792.0 -offset_bottom = 288.0 +offset_right = -360.0 +offset_bottom = -360.0 grow_horizontal = 2 grow_vertical = 2 @@ -350,10 +350,10 @@ anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = 511.0 -offset_top = -116.0 -offset_right = 747.0 -offset_bottom = -5.99976 +offset_left = -65.0 +offset_top = -440.0 +offset_right = 171.0 +offset_bottom = -330.0 grow_horizontal = 2 grow_vertical = 2 text = "blabla" @@ -372,6 +372,7 @@ grow_vertical = 2 [node name="CharacterAnimation" parent="Foreground/Characters" instance=ExtResource("2_2nft6")] position = Vector2(338, 305) +scale = Vector2(2, 2) sprite_frames = ExtResource("3_gxf7f") [node name="Sprite2D2" type="Sprite2D" parent="Foreground/Characters/CharacterAnimation"] @@ -384,6 +385,7 @@ vframes = 9 [node name="CharacterAnimation2" parent="Foreground/Characters" instance=ExtResource("2_2nft6")] position = Vector2(163, 386) +scale = Vector2(2, 2) [node name="Sprite2D" type="Sprite2D" parent="Foreground/Characters/CharacterAnimation2"] show_behind_parent = true @@ -395,7 +397,7 @@ vframes = 9 [node name="CharacterAnimation3" parent="Foreground/Characters" instance=ExtResource("2_2nft6")] position = Vector2(820, 306) -scale = Vector2(-1, 1) +scale = Vector2(-2, 2) sprite_frames = ExtResource("5_l50r6") [node name="Sprite2D3" type="Sprite2D" parent="Foreground/Characters/CharacterAnimation3"] @@ -408,7 +410,7 @@ vframes = 9 [node name="CharacterAnimation4" parent="Foreground/Characters" instance=ExtResource("2_2nft6")] position = Vector2(982, 389) -scale = Vector2(-1, 1) +scale = Vector2(-2, 2) sprite_frames = ExtResource("6_eiuh1") [node name="Sprite2D4" type="Sprite2D" parent="Foreground/Characters/CharacterAnimation4"] |