2023-07-21 09:50:06 +00:00
|
|
|
#*
|
|
|
|
#* waypoint_marker.gd
|
|
|
|
#* =============================================================================
|
|
|
|
#* Copyright 2021-2023 Serhii Snitsaruk
|
|
|
|
#*
|
|
|
|
#* Use of this source code is governed by an MIT-style
|
|
|
|
#* license that can be found in the LICENSE file or at
|
|
|
|
#* https://opensource.org/licenses/MIT.
|
|
|
|
#* =============================================================================
|
|
|
|
#*
|
|
|
|
|
2022-12-15 13:49:38 +00:00
|
|
|
@tool
|
|
|
|
extends Marker2D
|
|
|
|
|
|
|
|
|
|
|
|
func _ready() -> void:
|
|
|
|
queue_redraw()
|
|
|
|
|
|
|
|
|
|
|
|
func _draw() -> void:
|
|
|
|
draw_circle(Vector2.ZERO, 50.0, Color.CHARTREUSE)
|