1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2025-02-16 17:13:58 +00:00
hella-farm/entities/monocle.gd

32 lines
693 B
GDScript3
Raw Normal View History

extends BetterCharacterBody2D
class_name Monocle
2024-04-24 04:16:09 +02:00
@onready var animator: AnimationPlayer = %"Animator"
func _on_move(movement: Vector2) -> void:
better_move_and_collide(movement)
2024-04-22 00:56:35 +02:00
func _on_dragged(_cursor: Cursor) -> void:
collision_layer = 16
collision_mask = 18
2024-04-29 03:20:27 +02:00
z_index = Enums.ZIndex.EntityAir
2024-04-29 03:33:43 +02:00
y_sort_enabled = false
2024-04-24 04:16:09 +02:00
animator.play(&"drag_start")
2024-04-22 00:56:35 +02:00
func _on_fallen() -> void:
collision_layer = 8
collision_mask = 14
2024-04-29 03:20:27 +02:00
z_index = Enums.ZIndex.EntityGround
2024-04-29 03:33:43 +02:00
y_sort_enabled = true
2024-04-24 04:16:09 +02:00
animator.play(&"RESET")
2024-04-29 03:20:27 +02:00
func _on_trapped() -> void:
z_index = Enums.ZIndex.EntitySacrifice
2024-04-29 03:33:43 +02:00
y_sort_enabled = false
2024-04-29 03:20:27 +02:00
func _on_freed() -> void:
z_index = Enums.ZIndex.EntityGround
2024-04-29 03:33:43 +02:00
y_sort_enabled = true