What does the make node do?

I’m using a template, and I’m commenting the blueprint before I learn while I work. However I’ve come across a function that makes one struct into an array and pushes it into a ‘make’ of another struct before pushing all of that into a debug function.

What am I looking at? There were no comments.

Make a struct is how you can set set member variables in that struct.

Imagine a struct is a box with comparments you defined for certain things. Make means that you open the box and put the actual objects inside their designated compartments.

You’ll also want to look at Set Members in struct, which allows for cleaner work a lot of times.

Extending on your analogy…

Make: opens compartment so you can add/modify its contents.
Set Members: closes the compartment…essentially locking in the make objects inside it.