remove prints

This commit is contained in:
fenix-hub 2022-01-10 19:20:42 +01:00
parent 67b12be831
commit 3d6a73d81b
2 changed files with 4 additions and 7 deletions

View File

@ -86,10 +86,10 @@ __meta__ = {
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="DataTooltip" parent="CanvasLayer" instance=ExtResource( 1 )]
margin_left = -163.544
margin_top = 34.4964
margin_right = -163.68
margin_bottom = 35.2964
margin_left = -136.674
margin_top = -56.7206
margin_right = -136.81
margin_bottom = -55.9206
[node name="PointData" parent="CanvasLayer/DataTooltip" index="0"]
margin_left = -189.809

View File

@ -455,7 +455,6 @@ func calculate_tics():
calculate_interval_tics(y_margin_min, y_margin_max, v_dist, y_chors)
for i in y_chors.size():
y_chors[i] = String(y_chors[i]) #Can't cast directly on calculate_interval_tics because it mess up with the sorting
print(y_chors)
x_chors = x_labels.duplicate(true)
@ -472,8 +471,6 @@ func build_chart():
SIZE = get_size() - Vector2(OFFSET.x, 0)
origin = Vector2(OFFSET.x, SIZE.y - OFFSET.y)
print(SIZE)
print(origin)
func count_functions():
functions = y_labels.size()