pollen-not-included/components/scripts/drop_shadow_component.gd
Dan 2a9e78b52e Refactor: Added explicit typing and void return types
- Introduced explicit typing to variables and functions across multiple scripts for better code clarity.
- Specified 'void' as the return type for functions that do not return a value.
- Removed redundant code in some scripts.
2024-05-15 10:42:16 +01:00

24 lines
719 B
GDScript

extends Node2D
@export var parent_sprite : Sprite2D = null
@export var drop_shadow_distance : int = 10
var drop_shadow_sprite : Sprite2D = null
func _ready() -> void:
if parent_sprite is Sprite2D:
drop_shadow()
pass
func drop_shadow() -> void:
drop_shadow_sprite = parent_sprite.duplicate()
drop_shadow_sprite.scale = Vector2(1.1, 1.1)
drop_shadow_sprite.set_modulate(Color(0, 0, 0, 0.1))
drop_shadow_sprite.set_position(Vector2(drop_shadow_distance, drop_shadow_distance))
#drop_shadow_sprite.global_position = parent_sprite.global_position + Vector2(drop_shadow_distance, drop_shadow_distance)
drop_shadow_sprite.show_behind_parent = true
parent_sprite.add_child.call_deferred(drop_shadow_sprite)