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