[ANSWERED] 3rd Party FFGL Kaleidoscope Plugin
-
Hi, i have a patch i built in v3 in 2023 which when i reopen in v3 or v4 complains "The following actors/plugins could not be loaded: Kaleidoscope - K3 (ID = '316D2B4B')"
it's looking for this actor
but i can't remember where i sourced it from, any suggestions?
cheers, Mr J
-
So that looks like a user actor that I have, that someone else must have made and shared once upon a time.
Here's a link to my variations:
Version 4
https://www.dropbox.com/scl/fi...Version 3
https://www.dropbox.com/scl/fi... -
thanks @mark_m
i've already got the one you shared (screenshot below) but it's not the same as the one i'm after
But appreciate your help
Rgds, Mr J
-
User Actors have a red bar across the top in Isadora 4. This one is orange, which means its a video effect.
It's a 3rd-party FFGL effect. The lack of spaces between words and the capital letters used in the inputs' names indicate that it isn't a native Isadora actor, nor is it one of our FFGL plugins because its name doesn't start with "FFGL". (I can also tell because I have the same one in my FFGL effect bin.)
-
@mark_m said:
Here's a link to my variations: Version 4https://www.dropbox.com/scl/fi...Version" class="redactor-linkify-object">https://www.dropbox.com/scl/fi... 3https://www.dropbox.com/scl/fi...
Would love it if you uploaded these to the Add-Ons Page (link in my signature) if you haven't already :)
-
-
-
I have another question to the topic. I use the official Isadora TT Kaleidoscope. I miss 2 things in this actor.
Speed Change and reverse mode. Any help highly appreciated ! I need it by tmw.
best p.
-
@gapworks said:
Speed Change and reverse mode. Any help highly appreciated ! I need it by tmw.
I don't have time to do it for you by tomorrow, but I've actually had a large amount of success workshopping GLSL Shaders with ChatGPT. If you copy the GLSL Shader code into there, tell it you want additional inputs, tell it what you want those inputs to do, and tell it to match the special formatting used for GLSL Shaders in Isadora by feeding it the following text from part 3 of the TroikaTronix GLSL Shader Tutorial:
The really exciting opportunity offered by the GLSL Shader actor is the ability to manipulate shader parameters in real time. Shaders accept real-time input through a mechanism known as uniform variables. For example, if you wanted the shader to receive a floating point number, you would add a line like this. uniform float myVariableName; This defines a floating point number called myVariableName as an input. Then, you would use that variable in your code as needed. The trick here is to make that variable available to you as an input to the GLSL Shader actor. This is achieved using a special comment line that you add to the shader like this // ISADORA_FLOAT_PARAM(name, id, min, max, default, "help text"); In OpenGL Shader Language, any line that starts with "//" is a considered to be a comment; in other words, it is ignored by the compiler. But it is not ignored by Isadora. Using comments like the one above, you can create an input for the GLSL Shader actor that sends it's value to a uniform variable in the shader Let's go though each part of this special comment in detail // ISADORA_FLOAT_PARAM — This portion simply identified what kind of parameter is being defined. In this case, single floating point number. name — This is where you define the name of the variable. This name must exactly correspond to the variable name given in the uniform variable — statement in the shader code. You cannot include spaces in this name; if you need a space, use the underscore (_) character instead. id — This identifier, which can be from 1 to 4 characters long, uniquely identifies the input. Should you re-arrange the order of the inputs, Isadora uses this identifier to ensure the links to that input are maintained. For each shader program, this identifier must be unique. min — For numeric parameters, this defines the minimum possible value for the input. max — For numeric parameters, this defines the maximum possible value for the input. default — For numeric parameters, this defines the the default value for this input when the actor is added to the scene. This input is only meaningful if you add the source code for this shader to the Isadora's GLSL Plugins file. (More on this feature later.) "help text" — This defines the help text that will appear in the information view for this input. If you share your shader code, you can help those who use it by providing useful, descriptive information about this input. Isadora's philosophy has always been to make it easy for the user to use the program; giving useful details in the help text supports that philosophy.
-
sorry but i just don't get it!