mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-29 17:16:57 -04:00
bookmark jump animation
This commit is contained in:
parent
25890062df
commit
e428bbb018
3 changed files with 69 additions and 17 deletions
34
app/scripts/ui/menu/bookmark_jump_animation.gd
Normal file
34
app/scripts/ui/menu/bookmark_jump_animation.gd
Normal file
|
@ -0,0 +1,34 @@
|
|||
extends Control
|
||||
class_name BookmarkJumpAnimation
|
||||
|
||||
var base_position: Vector2
|
||||
var base_z_index: int
|
||||
var tween: Tween
|
||||
|
||||
|
||||
func start_jump_animation() -> void:
|
||||
base_position = position
|
||||
base_z_index = z_index
|
||||
z_index = 1
|
||||
|
||||
var up_position: Vector2 = base_position + Vector2(0, -6)
|
||||
var down_position: Vector2 = base_position + Vector2(0, 6)
|
||||
|
||||
if is_instance_valid(tween): tween.stop()
|
||||
tween = create_tween()
|
||||
tween.set_loops()
|
||||
|
||||
tween.tween_interval(1.0)
|
||||
tween.tween_property(self, "position", down_position, 0.15).set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_OUT)
|
||||
tween.tween_property(self, "position", up_position, 0.2).set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_OUT)
|
||||
tween.tween_property(self, "position", base_position, 0.15).set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_IN)
|
||||
|
||||
|
||||
func stop_jump_animation() -> void:
|
||||
if is_instance_valid(tween): tween.stop()
|
||||
position = base_position
|
||||
z_index = base_z_index
|
||||
|
||||
|
||||
func _exit_tree() -> void:
|
||||
stop_jump_animation()
|
Loading…
Add table
Add a link
Reference in a new issue