Adjusted the documentation of a few nodes.
This commit is contained in:
parent
8c28c210a6
commit
93739afa25
3 changed files with 4 additions and 10 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\n\
|
"Feedback Delay Writer\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\n\
|
"Feedback Delay Reader\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 \
|
||||||
|
|
|
@ -93,7 +93,7 @@ impl TSeq {
|
||||||
"TSeq gat6\nTrack 6 gate output\nRange: (-1..1)\n";
|
"TSeq gat6\nTrack 6 gate output\nRange: (-1..1)\n";
|
||||||
|
|
||||||
pub const DESC : &'static str =
|
pub const DESC : &'static str =
|
||||||
"Tracker (based) Sequencer\n\n\
|
"Tracker Sequencer\n\n\
|
||||||
This node implements a sequencer that can be programmed \
|
This node implements a sequencer that can be programmed \
|
||||||
using the tracker interface in HexoSynth on the right.\n\
|
using the tracker interface in HexoSynth on the right.\n\
|
||||||
It provides 6 control signals and 6 gate outputs.";
|
It provides 6 control signals and 6 gate outputs.";
|
||||||
|
|
|
@ -75,16 +75,10 @@ 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 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.
|
|
||||||
"#;
|
"#;
|
||||||
pub const HELP : &'static str =
|
pub const HELP : &'static str =
|
||||||
r#"VOsc - Vector Phase Shaping Oscillator
|
r#"VOsc - Vector Phase Shaping Oscillator
|
||||||
|
|
||||||
A vector phase shaping oscillator, to create interesting waveforms and
|
A vector phase shaping oscillator, to create interesting waveforms and
|
||||||
ways to manipulate them. It has two parameters ('v' and 'd') to shape the
|
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.
|
phase of the sinusoid wave, and a third parameter 'vs' to add extra spice.
|
||||||
|
|
Loading…
Reference in a new issue