pandemonium_engine_easy_charts/addons/easy_charts/Utilities/Slice/slice.gd
Nicolò Santilio 624662e8a2
Update 0.4.1
- bugfix
- added PieChart
- implemented real time plotting
- implemented array plotting
2020-11-06 19:32:11 +01:00

18 lines
341 B
GDScript

extends Reference
class_name Slice
var x_value : String
var y_value : String
var from_angle : float
var to_angle : float
var function : String
var color : Color
func _init(x : String, y : String, from : float, to : float, fun : String, col : Color):
x_value = x
y_value = y
from_angle = from
to_angle = to
function = fun
color = col