Question! Lets say I want to have a struct for each level - same variable type. Should I Split it into "Rocks Level 1" and "Rocks Level 2" Or would it be more beneficia to have just "Rocks Level" as the struct itself and then make the "Levels" as Nested?
A little more context. I want the player to be able to pick up rocks, and when they do, the rocks will go into this struct. Should it then go into different structs or the same struct with a lot of nesting?
You can create a struct which has one variable which is the array item you've created. I use a similar "array within an array" item in my Project Dojo, for creature storage
2 minutes in and my questions were answered, thank you for this video, now i just need to figure out how to hide text for false booleans, and only show the true boolean text.
@@HellisfearI have an idea... What if the knowledgeable instructor who created the video just teaches us what exactly a struct is? Wouldn't hurt anyone! Why do I have to learn cpp because I want to know what a struct is? What are these video tutorials for?
@@stephenmurya Do you not understand that blueprints are heavily influenced by c++? Everything from functions, to events, if statements, variables and forloops is a direct reference to programming and c++ specifically. If you want to know what structs are specifically or what theyre for, just google it and you'll find what you need. What the uploaded described is reslly all thats neccesary.
it's just a collection of variables. If you're making an RPG for example, a strut would be a great way to store all the character combat stats like attack, crit and health. You store one variable of that strut type on any character you want to apply those stats to and you can break anywhere you need to for easy clean access. It works well with interfaces and data tables/assets as well.
Sorry to hear that. What exactly do you mean use it in another blueprint? A struct is just a variable type, so it depends entirely on how you want to use them. In another blueprint just create a new variable of that struct and use it same as any other variable, be it a float, integer or bool.
Clean and efficient tutorial, thank you so much, liked and subscribed!
I love it when tutorials do the thing before doing the thing to not teach us about the thing at the start.
That's fucking great, but you missed the most important step. How do you make one?
In your content browser, right-click, select Blueprints, then Structure
easy to understand and not boring to watch
Great tutorial. How i can set for all structures members bool with for each loop? I'm tried but have branch marcos error.
Question!
Lets say I want to have a struct for each level - same variable type. Should I Split it into "Rocks Level 1" and "Rocks Level 2"
Or would it be more beneficia to have just "Rocks Level" as the struct itself and then make the "Levels" as Nested?
A little more context. I want the player to be able to pick up rocks, and when they do, the rocks will go into this struct. Should it then go into different structs or the same struct with a lot of nesting?
Wonderful thank you so much!!
Very helpful thank you!
if i have 16 arrays the hold 8 paper tile maps each, how do i make a struct that holds those 16 arrays? Also awesome job showing how structs work.
You can create a struct which has one variable which is the array item you've created. I use a similar "array within an array" item in my Project Dojo, for creature storage
i cant even split mine and i have no idea why, never had this problem before
You went on a break, came back and left out what the node is your connecting to.
2 minutes in and my questions were answered, thank you for this video, now i just need to figure out how to hide text for false booleans, and only show the true boolean text.
and got it already
Man digger den mist vergess ich aber auch jedes mal wieder ey, danke
You never for once mentioned what a struct is or what they are used for, only how to use them. This is not useful/helpful to beginners like me
This is where knowing actual programming like c++ would be useful to you.
@@HellisfearI have an idea...
What if the knowledgeable instructor who created the video just teaches us what exactly a struct is? Wouldn't hurt anyone!
Why do I have to learn cpp because I want to know what a struct is? What are these video tutorials for?
@@stephenmurya Do you not understand that blueprints are heavily influenced by c++?
Everything from functions, to events, if statements, variables and forloops is a direct reference to programming and c++ specifically. If you want to know what structs are specifically or what theyre for, just google it and you'll find what you need. What the uploaded described is reslly all thats neccesary.
it's just a collection of variables. If you're making an RPG for example, a strut would be a great way to store all the character combat stats like attack, crit and health. You store one variable of that strut type on any character you want to apply those stats to and you can break anywhere you need to for easy clean access. It works well with interfaces and data tables/assets as well.
@@tbrown52589 Thank you ❤️
Great, but you never show how to use it in another bp... Useless tutorial.
Sorry to hear that. What exactly do you mean use it in another blueprint? A struct is just a variable type, so it depends entirely on how you want to use them.
In another blueprint just create a new variable of that struct and use it same as any other variable, be it a float, integer or bool.