File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ for ease,f in pairs(math.ease) do
99 end
1010end
1111do -- grapher - line chart
12- local current_runtime_data = {}
12+ local current_runtime_data = {
13+ output_bounds = {0 , 10 },
14+ step = 0 ,
15+ scroll = false ,
16+ input_bounds = {- 10 ,10 },
17+ }
1318 local sampled_data = {}
1419 local mouse_hovering = false
1520 local relative_mx = 0
@@ -953,7 +958,7 @@ do -- grapher - line chart
953958 end
954959 if pace .reset_proxygraph then points_cache = {} pace .reset_proxygraph = nil end
955960 local input_data = SampleData (tracked_proxy , graph_x_variable , runtime_data )
956-
961+
957962 if runtime_data .nils then
958963 if runtime_data .nils .x and graph_axis == " x" then graph_axis = " y" graph_title = " nil output on x, switched to y" end
959964 if runtime_data .nils .y and graph_axis == " y" then graph_axis = " z" graph_title = " nil output on y, switched to z" end
You can’t perform that action at this time.
0 commit comments