» AddonPack.Effects
This site relies heavily on Javascript. You should enable it if you want the full experience. Learn more.

AddonPack.Effects

Here is how you prepare effects for the addonpack:

Provide a Shader Info

To provide the nodelist with information about a shader that others find it easier, you should use the following keywords at the beginning of the shader code:

//@author: yourname
//@help: this shader does very nice things
//@tags: tag1, tag2, tag3 ...
//@credits: the other guys name

Creating Pins

Writing a variable in the toplevel of the shader creates an input pin for you. For simple pin names you do not have to do anything special, just start with a capital letter:

float Alpha;

Creates a pin named 'Alpha' with default value 0.
Or:

float Alpha = 1;

This will create a pin named 'Alpha' with default value 1.
In case you have a more complex name for your pin write it like this:

float Alpha <string uiname="Alpha of Gradient Center";> = 1;

This will create a pin named 'Alpha of Gradient Center' with default value 1.
You can also tell the vvvv GUI to constrain the value:

float Alpha <float uimin=0.0; float uimax=1.0; string uiname="Alpha of Gradient Center";> = 1;

Creating Color Pins

Especially when porting shader-code from public libraries you will often notice that a code like

float4 cAmb <String uiname="Color";>  = {1, 1, 1, 1};

creates only a float input with 4 slices.
Just insert the Semantic

 : COLOR 

to get a 'real' ColorInput.

float4 cAmb : COLOR <String uiname="Color";>  = {1, 1, 1, 1};

Texture Transformations

If you want to transform a texture on a regular shape you would intuitively expect the center of rotation and scaling in the middle of the texture. But the default center of transform is the texture coordinate (0, 0), which is the upper left corner of your texture.
To counteract this, we provide the convenience sematic 'TEXTUREMATRIX' for you:

float4x4 tTex: TEXTUREMATRIX <string uiname="Texture Transform";>;

You should use this semantic every time when you intend to use the transform matrix if this pin to transform texture coordinates.

anonymous user login

Shoutbox

~3mth ago

joreg: END OF SHOUTBOX! As this page has is now legacy, it will no longer feature new content. For latest news, see: http://vvvv.org

~4mth ago

joreg: vvvvTv S0204 is out: Custom Widgets with Dear ImGui: https://youtube.com/live/nrXfpn5V9h0

~4mth ago

joreg: New user registration is currently disabled as we're moving to a new login provider: https://visualprogramming.net/blog/2024/reclaiming-vvvv.org/

~4mth ago

joreg: vvvvTv S02E03 is out: Logging: https://youtube.com/live/OpUrJjTXBxM

~4mth ago

~4mth ago

joreg: Follow TobyK on his Advent of Code: https://www.twitch.tv/tobyklight

~4mth ago

joreg: vvvvTv S02E02 is out: Saving & Loading UI State: https://www.youtube.com/live/GJQGVxA1pIQ

~4mth ago

joreg: We now have a presence on LinkedIn: https://www.linkedin.com/company/vvvv-group

~5mth ago

joreg: vvvvTv S02E01 is out: Buttons & Sliders with Dear ImGui: https://www.youtube.com/live/PuuTilbqd9w

~5mth ago

joreg: vvvvTv S02E00 is out: Sensors & Servos with Arduino: https://visualprogramming.net/blog/2024/vvvvtv-is-back-with-season-2/