diff options
| author | JacobPalecki <[email protected]> | 2021-05-19 15:04:45 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-19 15:04:45 -0700 |
| commit | f88751f8653b4bce9d5e3ed3109da2f2427a6f99 (patch) | |
| tree | c67a4e59da866c86cdfffb786a76090525637166 /grapher/Models/Charts/ChartState/ChartState.cs | |
| parent | Merge pull request #86 from a1xd/fix-input (diff) | |
| parent | remove unused variable, improve legend position (diff) | |
| download | rawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.tar.xz rawaccel-f88751f8653b4bce9d5e3ed3109da2f2427a6f99.zip | |
Merge pull request #87 from matthewstrasiotto/streamer_mode
Improve use of whitespace on charts, make elements bolder, add "streaming mode" toggle for overlaying charts using Chroma key in OBS
Diffstat (limited to 'grapher/Models/Charts/ChartState/ChartState.cs')
| -rw-r--r-- | grapher/Models/Charts/ChartState/ChartState.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartState/ChartState.cs b/grapher/Models/Charts/ChartState/ChartState.cs index 5a86713..a50eaf0 100644 --- a/grapher/Models/Charts/ChartState/ChartState.cs +++ b/grapher/Models/Charts/ChartState/ChartState.cs @@ -117,5 +117,12 @@ namespace grapher.Models.Charts.ChartState ChartXY.SetStandard(GainChart.ChartY); } } + + public void SetStreaming(bool streaming) + { + SensitivityChart.SetStreaming(streaming); + GainChart.SetStreaming(streaming); + VelocityChart.SetStreaming(streaming); + } } } |