mirror of
https://github.com/Relintai/pandemonium_engine_easy_charts.git
synced 2024-12-31 14:27:22 +01:00
11 lines
276 B
GDScript3
11 lines
276 B
GDScript3
|
tool
|
||
|
extends Node2D
|
||
|
class_name Chart2D
|
||
|
|
||
|
enum PointShapes { Dot, Triangle, Square, Cross }
|
||
|
enum TemplatesNames { Default, Clean, Gradient, Minimal, Invert }
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
pass # Replace with function body.
|