diff options
author | Marcelo Costa <> | 2024-01-27 18:26:37 -0300 |
---|---|---|
committer | Marcelo Costa <> | 2024-01-27 18:26:37 -0300 |
commit | c63d013a3608ad473b1fcf14b83178bb2bfc20b7 (patch) | |
tree | b3ef3af284848f8b3d4bba655b88681c4c50a325 /game/microgames/baseball_kiss/baseball_kiss.gd | |
parent | 1aa604aca63ede5f97a68a1b20b51d157b3e614d (diff) | |
download | gamejam-ggj-2024-c63d013a3608ad473b1fcf14b83178bb2bfc20b7.tar.gz gamejam-ggj-2024-c63d013a3608ad473b1fcf14b83178bb2bfc20b7.tar.bz2 gamejam-ggj-2024-c63d013a3608ad473b1fcf14b83178bb2bfc20b7.zip |
Baseball Kiss Microgame MVP
Diffstat (limited to 'game/microgames/baseball_kiss/baseball_kiss.gd')
-rw-r--r-- | game/microgames/baseball_kiss/baseball_kiss.gd | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/game/microgames/baseball_kiss/baseball_kiss.gd b/game/microgames/baseball_kiss/baseball_kiss.gd new file mode 100644 index 0000000..85205ed --- /dev/null +++ b/game/microgames/baseball_kiss/baseball_kiss.gd @@ -0,0 +1,36 @@ +extends Microgame + +var seconds_to_finish = 5 +var endsize = 5 +var kiss_get = false +var path = null +@onready var kiss = %Kiss + +# Called when the node enters the scene tree for the first time. +func _ready(): + var paths = $Paths.get_children() + var choose_path = randi_range(0, paths.size()-1) + print(choose_path) + path = paths[choose_path].get_child(0) + path.rotates = false + kiss.reparent(path) + kiss.position = Vector2.ZERO + path.progress_ratio = 0 + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + if(!kiss_get): + path.progress_ratio = clamp(path.progress_ratio+delta*(1.0/seconds_to_finish),0,1) + var kiss_size = 1 + (endsize*path.progress_ratio) + kiss.scale = Vector2(kiss_size ,kiss_size) + + + +func _on_hand_collision_area_shape_entered(area_rid, area, area_shape_index, local_shape_index): + if(area == kiss): + kiss_get = true + $PepeCharacter.player_control = false + %PepeSprite.play("catch") + $BreCharacter.play("win") + kiss.queue_free() |