mirror of
https://github.com/mightypanders/GMTKJam2021.git
synced 2025-01-30 21:59:55 +01:00
8 lines
171 B
GDScript
8 lines
171 B
GDScript
class_name DropOffPoint
|
|
extends Node2D
|
|
export var destinationColor = Color.yellow
|
|
onready var sprite = $Sprite
|
|
|
|
func modulate_color():
|
|
sprite.modulate = destinationColor
|