diff options
author | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-01-27 18:51:13 +0200 |
---|---|---|
committer | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-01-27 18:51:18 +0200 |
commit | fbdee2def3d82fda4a65a91e060a166ee5293222 (patch) | |
tree | a1c63297cf892999436d63335761fcbba014a580 /game/shared/characters | |
parent | fd9f97b0146087ba54fb923bf9536e048b366a65 (diff) | |
download | gamejam-ggj-2024-fbdee2def3d82fda4a65a91e060a166ee5293222.tar.gz gamejam-ggj-2024-fbdee2def3d82fda4a65a91e060a166ee5293222.tar.bz2 gamejam-ggj-2024-fbdee2def3d82fda4a65a91e060a166ee5293222.zip |
Add basic animation to stage
Diffstat (limited to 'game/shared/characters')
-rw-r--r-- | game/shared/characters/character_animation.gd | 32 | ||||
-rw-r--r-- | game/shared/characters/character_animation.tscn | 14 |
2 files changed, 40 insertions, 6 deletions
diff --git a/game/shared/characters/character_animation.gd b/game/shared/characters/character_animation.gd new file mode 100644 index 0000000..d3fdfc4 --- /dev/null +++ b/game/shared/characters/character_animation.gd @@ -0,0 +1,32 @@ +@tool +extends Node2D + +@onready var animated_sprite: AnimatedSprite2D = %CharacterAnimatedSprite +var _sprite_frames: SpriteFrames + +@export var sprite_frames: SpriteFrames : + set(v): + _sprite_frames = v + if not is_node_ready(): + await ready + animated_sprite.sprite_frames = _sprite_frames + get: + return _sprite_frames + + +func _reset_animation(): + animated_sprite.animation = "default" + + +func play_happy(): + animated_sprite.animation = "happy" + var tween = create_tween() + tween.tween_property(animated_sprite, "scale", Vector2.ONE, 1).set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_ELASTIC).from(Vector2(1.3, 0.8)) + tween.tween_callback(_reset_animation).set_delay(0.5) + + +func play_mad(): + animated_sprite.animation = "mad" + var tween = create_tween() + tween.tween_property(animated_sprite, "scale", Vector2.ONE, 1).set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_BACK).from(Vector2(1.2, 0.8)) + tween.tween_callback(_reset_animation).set_delay(0.5) diff --git a/game/shared/characters/character_animation.tscn b/game/shared/characters/character_animation.tscn index 04ddb12..2dabd95 100644 --- a/game/shared/characters/character_animation.tscn +++ b/game/shared/characters/character_animation.tscn @@ -1,10 +1,12 @@ -[gd_scene load_steps=2 format=3 uid="uid://k0mx61qjphst"] - -[ext_resource type="SpriteFrames" uid="uid://c5j2ojumuirph" path="res://game/microgames/heart_break/assets/heart_animation.tres" id="1_utnrb"] +[gd_scene load_steps=3 format=3 uid="uid://k0mx61qjphst"] +[ext_resource type="Script" path="res://game/shared/characters/character_animation.gd" id="1_qpodi"] +[ext_resource type="SpriteFrames" uid="uid://dbwmqcig0qbw8" path="res://game/shared/characters/ali_animation.tres" id="2_pffd0"] [node name="CharacterAnimation" type="Node2D"] +script = ExtResource("1_qpodi") +sprite_frames = ExtResource("2_pffd0") -[node name="Character" type="AnimatedSprite2D" parent="."] -sprite_frames = ExtResource("1_utnrb") -frame_progress = 0.924904 +[node name="CharacterAnimatedSprite" type="AnimatedSprite2D" parent="."] +unique_name_in_owner = true +sprite_frames = ExtResource("2_pffd0") |