Adjusted the documentation of a few nodes.

This commit is contained in:
Weird Constructor 2021-09-03 05:13:02 +02:00
parent 8c28c210a6
commit 93739afa25
3 changed files with 4 additions and 10 deletions

View file

@ -21,7 +21,7 @@ impl FbWr {
"FbWr inp\nSignal input\nRange: (-1..1)\n";
pub const DESC : &'static str =
"Feedback Delay Writer\n\n\
"Feedback Delay Writer\n\
HexoSynth does not allow direct feedback cycles in it's graph.\n\
To make feedback possible anyways the 'FbWr' and 'FbRd' nodes are provided.\n\
This node allows you to write a signal into the corresponsing signal delay buffer.\n\
@ -91,7 +91,7 @@ impl FbRd {
"FbRd sig\nFeedback signal output.\nRange: (-1..1)\n";
pub const DESC : &'static str =
"Feedback Delay Reader\n\n\
"Feedback Delay Reader\n\
HexoSynth does not allow direct feedback cycles in it's graph.\n\
To make feedback possible anyways the 'FbWr' and 'FbRd' nodes are provided.\n\
This node allows you to tap into the corresponsing 'FbWr' signal delay \

View file

@ -93,7 +93,7 @@ impl TSeq {
"TSeq gat6\nTrack 6 gate output\nRange: (-1..1)\n";
pub const DESC : &'static str =
"Tracker (based) Sequencer\n\n\
"Tracker Sequencer\n\n\
This node implements a sequencer that can be programmed \
using the tracker interface in HexoSynth on the right.\n\
It provides 6 control signals and 6 gate outputs.";

View file

@ -75,16 +75,10 @@ impl VOsc {
"VOsc sig\nOscillator output\nRange: (-1..1)\n";
pub const DESC : &'static str =
r#"V Oscillator
A vector phase shaping oscillator, to create interesting waveforms and ways to
manipulate them. It has two parameters ('v' and 'd') to shape the phase of the
sinusoid wave, and a third parameter 'vs' to add extra spice.
With distortion you can beef up the oscillator output even more and to
make it more harmonic you can apply oversampling.
A vector phase shaping oscillator, to create interesting waveforms and ways to manipulate them. It has two parameters ('v' and 'd') to shape the phase of the sinusoid wave, and a 'vs' parameter to add extra spice. Distortion can beef up the oscillator output and you can apply oversampling.
"#;
pub const HELP : &'static str =
r#"VOsc - Vector Phase Shaping Oscillator
A vector phase shaping oscillator, to create interesting waveforms and
ways to manipulate them. It has two parameters ('v' and 'd') to shape the
phase of the sinusoid wave, and a third parameter 'vs' to add extra spice.