» 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

~8d ago

joreg: Postponed: Next vvvv beginner course starting April 29: https://thenodeinstitute.org/courses/vvvv-beginner-class-summer-2024/

~1mth ago

~1mth ago

joreg: The Winter Season of vvvv workshops is now over but all recordings are still available for purchase: https://thenodeinstitute.org/ws23-vvvv-intermediates/

~2mth ago

schlonzo: Love the new drag and drop functionality for links in latest previews!

~2mth ago

joreg: Workshop on 29 02: Create Sequencers and Precise Clock Based Tools. Signup here: https://thenodeinstitute.org/courses/ws23-vvvv-08-create-sequencers-and-precise-clock-based-tools-in-vvvv-gamma/