Particle Emitter

Yes, some API & changes under the hood made this incompatible with Vuo 2.
Satoshi didn’t update it for Vuo 2, and has not published the code if I’m right.

I published a few nodes in the node gallery, but my skills are too restricted for now to make a particle node.

For a faire amount of particles you could test this composition using stock nodes : Particles with Stock Nodes (although at the beginning there is a first push of particles before they get added one by one, never took the time to try to fix that.

Otherwise, official particle nodes have a great amount of votes, so they will be added at some point : Particle emitter nodes  

3 Likes

cool thanks BodySoulSpirit that’s useful stock particles composition. I will take a look. I was able to do some cool custom particles in QC with the stock open cl patch. like Lenard jones principle of ideal gases stuff etc… I’m not sure how one would go about doing differential calculous on vector list in Vuo. I suppose maybe with the process list and build list nodes maybe plus calculate nodes. it was really easy with open cl to do that type of vector calculations.

2 Likes

@dust Cool :)

Yes I saw your other posts about installing the SDK and Visual Studio, I’m always glad when some people with coding skills join Vuo, can’t wait to see what you make :)
For particles right now one can use the Make Shader built-in function, the ShaderToy node also, and of course custom nodes using C and openGL.
Nodes in other languages are also part of feature requests.

You mentioned Visual Studio, so far I’ve been making nodes mostly as raw .c files, uncompiled, which Vuo also supports, using a simple text/code editor named “Atom”, or with QT, and only complied some of them.

So for now creating a particles node in C with OpenGL is possible, I wonder though in the future with apple dropping support for OpenGL and Vuo planning to support Apple’s Metal, if and how we will need to update the nodes.

Anyway, as you may have seen, all of Vuo’s stock nodes code (except for Vuo pro nodes) are available in the .src package to download, browsing though them and the Vuo API website is what helps me the most when creating nodes :)

So again, welcome to Vuo, and can’t wait to see what you’ll make ;)

1 Like

bodysoulspirit well I got vs code to run c and objective c programs in the terminal. I haven’t been able to get it to run a c make file to compile by clicking on run. how ever running make in the terminal works for me. that’s good to know that Vuo excepts just the raw c code for a node and it doesn’t have to be compiled, although I’m not sure if that would work with plugins that link to frameworks. I saw that it was possible to run raw c as a node in a post about cross and dot products.

my coding skills can be limited in some areas. I did do eight years of computer science at a university so I can cobble things together with frameworks and stuff, but they didn’t teach me Xcode or Mac programing because it wasn’t cross platform. so I had to teach myself all the Mac stuff.

my open gl or glsl skills are fairly limited. I have read the book of shaders a couple times and usually use a higher level of abstraction like open frameworks or something when doing gl stuff. I’m not sure if looking at Vuo source code would help, my coding skill levels are no where up to pare with the developers of Vuo.

it does seem possible to use to use frameworks and other languages besides open gl in a Vuo node. I see there is a core image framework example node and one for metal. I think I might like metal i’m not really sure yet. I loved working with open cl kernels inside quartz composer and making patches or nodes for qc with frameworks was easy because Xcode had a template for plugins. I have been out of the game for sometime with health complications so I am not up to date with the newer frameworks like metal or machine learning etc…

right now I got to figure out translating datatypes to the ones that Vuo nodes use. the list example I can’t run because i’m missing QT. i’m not so good with cmake either. I used to use cmake with open cv and I was able to build example files into Xcode but seems Vuo cmake files don’t build into example Xcode files with all the headers etc… I’m reading the documentation now.

I’m thinking about rebuilding some qc plugins I made for Vuo. right now I have a MIDI control send app I want to build into a Vuo node. It is done in c with core MIDI. It seems control send is missing from the stock MIDI Vuo nodes. it only requires one input for an integer, possibly a list for selecting which MIDI device to send to, I’m not sure about that yet. I might just send to all devices. maybe it would be a good idea to see how Vuo does its MIDI nodes. I jus don’t think I have the skills to be able to build Vuo from source but maybe looking at some source files might help.