1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-22 16:14:22 +00:00
hella-farm/entities/imp.gd

28 lines
560 B
GDScript3
Raw Normal View History

extends CharacterBody2D
class_name Imp
2024-04-15 00:45:18 +00:00
@onready var sprite: SpriteLeftRight = $"Sprite"
2024-04-20 03:00:23 +00:00
@onready var eater: Eater = $"Eater"
2024-04-19 01:39:07 +00:00
func _on_move(movement: Vector2):
2024-04-18 23:46:25 +00:00
move_and_collide(movement)
sprite.handle_move(movement)
2024-04-19 01:39:07 +00:00
func _on_eater_eaten(edible: Edible) -> void:
edible.get_parent().queue_free()
2024-04-20 03:00:23 +00:00
func _on_draggable_dragged(_cursor: Cursor) -> void:
collision_layer = 16
collision_mask = 18
z_index = 1
eater.collision_mask = 16
func _on_draggable_dropped() -> void:
collision_layer = 8
collision_mask = 14
z_index = 0
eater.collision_mask = 8