change player light tween to circ

This commit is contained in:
yuki 2025-11-25 16:22:25 -03:00
parent 9c6af1c034
commit 2a4919dbeb

View file

@ -31,7 +31,7 @@ func _enter(_previous_state_path: String, _data: Dictionary = {}) -> void:
player_light_tween = create_tween()
player_light_tween.tween_property(room.player.point_light, "texture_scale", 1.0, room.config.transition_in_duration).set_trans(Tween.TRANS_BOUNCE).set_ease(Tween.EASE_OUT)
player_light_tween.tween_property(room.player.point_light, "texture_scale", 1.0, room.config.transition_in_duration).set_trans(Tween.TRANS_CIRC).set_ease(Tween.EASE_OUT)
await player_light_tween.finished