fix newlines in descriptions
This commit is contained in:
parent
d4d027183b
commit
dcfa217fd0
2 changed files with 8 additions and 7 deletions
|
@ -21,7 +21,7 @@ impl FbWr {
|
||||||
"FbWr inp\nSignal input\nRange: (-1..1)\n";
|
"FbWr inp\nSignal input\nRange: (-1..1)\n";
|
||||||
|
|
||||||
pub const DESC : &'static str =
|
pub const DESC : &'static str =
|
||||||
"Feedback Delay Writer\n\
|
"Feedback Delay Writer\n\n\
|
||||||
HexoSynth does not allow direct feedback cycles in it's graph.\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\
|
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\
|
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";
|
"FbRd sig\nFeedback signal output.\nRange: (-1..1)\n";
|
||||||
|
|
||||||
pub const DESC : &'static str =
|
pub const DESC : &'static str =
|
||||||
"Feedback Delay Reader\n\
|
"Feedback Delay Reader\n\n\
|
||||||
HexoSynth does not allow direct feedback cycles in it's graph.\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\
|
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 \
|
This node allows you to tap into the corresponsing 'FbWr' signal delay \
|
||||||
|
|
|
@ -75,6 +75,7 @@ impl VOsc {
|
||||||
"VOsc sig\nOscillator output\nRange: (-1..1)\n";
|
"VOsc sig\nOscillator output\nRange: (-1..1)\n";
|
||||||
pub const DESC : &'static str =
|
pub const DESC : &'static str =
|
||||||
r#"V Oscillator
|
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 'vs' parameter to add extra spice. Distortion can beef up the oscillator output and 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 =
|
pub const HELP : &'static str =
|
||||||
|
|
Loading…
Reference in a new issue