Sorry Here are a few steps. I will talk about the key stages, the rest from the textbook.
First add the relevant information to your JSON, for example:
nodes:{ innovation:{ 'color':colour.darkblue, 'shape':'dot', 'radius':30, 'image': 'innovation.png', 'image_w':130, 'image_h':24, 'alpha':1 }, participation:{ 'color':colour.purple, 'shape':'dot', 'radius':40, 'image':'participation.png', 'image_w':130, 'image_h':24, 'alpha':1 }, ...
Upload all your images when the item loads.
init:function(system){
Then to move the images themselves ...
particleSystem.eachNode(function(node, pt){ ...
source share