So diamond is something like pointer
in C language right? It contains a
address of variable inside memory and
circle is just copy of value, right?
Pretty much, yeah.
-
-
at the moment, you have no array to insert structs into - nothing is hooked up to the Insert node’s array pin (you either updated the image or I went blind)
-
insert will push other indexes each time it’s called - you will end up with updated structs in front and old ones in the back of the array - the array will double in size. That’s unless Elements is a brand new, empty array with no data.
-
use SetArrayElement (as seen in the pic attached in my previous post) - this will simply replace the array element with the updated one
-
the top bit of my pic above seems to be precisely what you need, Set Members In struct is key, here, just expose RefCube and you’re good to go. No need to break/make structs like that.