I believe you need a combine rotator node instead of add. It's similar in BPs because of the way quaternion math works. Adding floats together works, but adding a rotator to another rotator does a lot of behind the scenes math that doesn't translate to what you would expect. Combine rotators adds each axis angle individually and then recombines into a resulting rotator.
Just a note: The original Biome plugin Data Asset uses Soft Pointers for the StaticMeshes. This ensures that Unreal doesn't load all the meshes added to your Data Asset into memory unless PCG specifically calls for them to be loaded. While this might not make much of a difference when you have only a few meshes, it will become significant as you add more assets.
12:54 I think the error is because quaternion rotator are four quad vector array (x,y,z,w), while the rotator used in the data assets is a euler rotator composed by 3 vector. If i remember correctly even though quaternion are present in c++ they are not represented in blueprint
Huh, that's interesting. But when I sample the information with the A hotkey, it shows Rotation.Yaw / Roll / Pitch. There is no 4th. So it's odd that it's trying to get a 4 digit version. Possibly a bug. Either way got to figure out a good workaround.
@@Procedural_Minds The reason for that is that Quats are not really human readable, so they should always be translated to XYZ when displayed. The reason they are using Quats is that it avoids a locking problem that exists in XYZ(Euler Angles). Great video:)
Exactly what I needed! However, whenever I compile the Primary Data Asset (PDA) for new variables, it removes the Data Asset from the parameters inside the PCG Graph Settings. Any ideas on how to prevent that from happening?
You can set the one in the PCG graph to a soft object reference instead, then it won't clear out. But it is technically more expensive and meant for other use cases. If you're using it just to generate and not doing any runtime stuff, it should be fine.
Question, so I’ve been dissecting Electric Dreams lately, and I couldn’t help but notice the similarities, they used these functionalities a ton. Do they use data assets to build their assemblies? Would love a tutorial going through it!
Unfortunately it's been quite some time since I've looked at the Electric Dreams demo. But if i recall it's 5.2 or 5.3. If that's the case then it couldn't be Data Asset driven as that was introduced in 5.4.
I spent so much time trying to figure out a way to do something similar to this with what we had in 5.3... Unfortunately I still can't migrate to 5.4 in some of the projects I'm working on with PCG.
Hello! Great video, thank you for teaching us about pcg, there is very little information even on the subject, one question, what is the difference between doing this method to generate a forest instantiating our tree variations in the range of the spline and doing it with a pcg and a spawn static mesh and add our trees to them and use a layer of the landcape so that it only makes them appear there?
This doesn't require a landscape at all. This is entirely independent. You can use it for trees, or you can use it for debris, or houses, or whatever else you'd like.
Any idea how to set the Data Asset from a parent blueprint? I don't want my artists setting the data asset directly, I'd rather give them an Enum on the blueprint and set it inside
Then data asset might not be the best use case for you. I don't believe you can do it dynamically. The main use case of data assets is to be able to easily swap different premade configurations.
Just to add, if you weren't using Data Assets previously then you need to learn Epic's Best Practices. If Epic do it, you should do it. Obviously there is more than one way to skin a cat in game dev, but in my 14 years of experience I've learned that what you think is right is most likely wrong unless Epic did it first. They spend time, money and human resources on figuring out the best method before it even lands in preview. And in the case of PCG Biome's setup, it saves a lot of time switching things around to test if you use data assets.
@@Procedural_Minds I know, although you could implement them, the Biome setup has added that method. I meant in general though, not you specifically. Most people I see on a daily basis aren't doing 10% of best practice and Data Assets have been one of the methods Epic has been staunch on implementing in their system. I'm guilty of skipping on best practice myself sometimes when I'm in a rush or prototyping. But I tend to iterate back and do what Epic does.
@@Procedural_Minds Oh okay Because right now i have a dataset with multiple structs that are indexed that has a lot of information and i just wondered if i could eliminate the step to make a dataset and just change the struct in the PCG area but thanks anyways!
@@tallere1781 Since replying I actually took at the 5.5 roadmap. You can edit the Data Assets in PCG now. So you can probably use that to get the result you want. Assuming you can update to 5.5 once it releases. :)
@@Procedural_Minds bad grammar from my side , I understand the difference between using data table and the hard coded way, I dont really need to be able to switch out any assets quickly
They are for different use cases. I can preconfigure data assets to be certain setups that I want and swap between them as simply as dragging and dropping using only one graph.
Great stuff. I am admittedly a noob dev. What are some of the advantages of using this rather than just a spline sampler? Is it the bool and other variables that would let you spawn things with more complicated logic? Probably a stupid question but I don’t immediately see the benefit
@@Josh_Alfaro This isn't about showing how to transform your points, it's about showing how you can now store all the information in a data asset and easily swap them out for different variations using the same base.
Honestly, as a hardcore Unity dev I expected a lot more from UE5. The PCG are full of errors and buggy behavior, a lot of it scream to be improved so much. In the time I spent trying to get this going I could've written a PCG with splines in C# 5 times that still uses Scriptable Objects for data assets and dynamic generation...
This is a new and beta feature that isn't ready for production. So I wouldn't use this as the benchmark for completed and fully implemented Unreal features.
This is saving me years of my life, I absolutely love this
Haha. Glad you found it helpful. :)
I believe you need a combine rotator node instead of add.
It's similar in BPs because of the way quaternion math works. Adding floats together works, but adding a rotator to another rotator does a lot of behind the scenes math that doesn't translate to what you would expect. Combine rotators adds each axis angle individually and then recombines into a resulting rotator.
Interesting, good to know. Thanks!
Fantastic, love the clear straightforward approach.
Thank you, I'm glad you liked it. :)
@@Procedural_Minds Seriously. Nearly lost my mind trying to do this kind of thing using loops. Your method has got things moving!
Just a note: The original Biome plugin Data Asset uses Soft Pointers for the StaticMeshes. This ensures that Unreal doesn't load all the meshes added to your Data Asset into memory unless PCG specifically calls for them to be loaded. While this might not make much of a difference when you have only a few meshes, it will become significant as you add more assets.
That is interesting. I didn't notice this in the biome setup. I'll check it out. Thanks!
@@Procedural_Minds And I think the new Proxy node might be the key to directly setting rotation.
Wow, what a convoluted way of doing it, epic...
Thank you for figuring that out!!
Wait till the next video when I show how you do loops in PCG. It makes this look straight forward. lol
@@Procedural_Minds haha :D you had my interest, now you have my attention! thanks! great channel content by the way
12:54 I think the error is because quaternion rotator are four quad vector array (x,y,z,w), while the rotator used in the data assets is a euler rotator composed by 3 vector. If i remember correctly even though quaternion are present in c++ they are not represented in blueprint
Huh, that's interesting. But when I sample the information with the A hotkey, it shows Rotation.Yaw / Roll / Pitch. There is no 4th. So it's odd that it's trying to get a 4 digit version. Possibly a bug. Either way got to figure out a good workaround.
@@Procedural_Minds The reason for that is that Quats are not really human readable, so they should always be translated to XYZ when displayed. The reason they are using Quats is that it avoids a locking problem that exists in XYZ(Euler Angles). Great video:)
Exactly what I needed! However, whenever I compile the Primary Data Asset (PDA) for new variables, it removes the Data Asset from the parameters inside the PCG Graph Settings. Any ideas on how to prevent that from happening?
You can set the one in the PCG graph to a soft object reference instead, then it won't clear out. But it is technically more expensive and meant for other use cases. If you're using it just to generate and not doing any runtime stuff, it should be fine.
14:06 I wonder if it's rather that you're passing it a rotation vector as opposed to just the yaw portion?
From what people have been saying, under the hood it's stored differently than it is on the user side. But if I did per axis that could possibly work.
Question, so I’ve been dissecting Electric Dreams lately, and I couldn’t help but notice the similarities, they used these functionalities a ton. Do they use data assets to build their assemblies? Would love a tutorial going through it!
Unfortunately it's been quite some time since I've looked at the Electric Dreams demo. But if i recall it's 5.2 or 5.3. If that's the case then it couldn't be Data Asset driven as that was introduced in 5.4.
@@Procedural_Mindsyou’re right, looks like a data table actually, not data asset
I spent so much time trying to figure out a way to do something similar to this with what we had in 5.3... Unfortunately I still can't migrate to 5.4 in some of the projects I'm working on with PCG.
Yeah I've wanted this myself since PCG came out. Hopefully you'll be able to update to it soon or find good workarounds.
Hello! Great video, thank you for teaching us about pcg, there is very little information even on the subject, one question, what is the difference between doing this method to generate a forest instantiating our tree variations in the range of the spline and doing it with a pcg and a spawn static mesh and add our trees to them and use a layer of the landcape so that it only makes them appear there?
This doesn't require a landscape at all. This is entirely independent. You can use it for trees, or you can use it for debris, or houses, or whatever else you'd like.
@@Procedural_Minds Ahhh true!! thnx u so much!!
Any idea how to set the Data Asset from a parent blueprint? I don't want my artists setting the data asset directly, I'd rather give them an Enum on the blueprint and set it inside
Then data asset might not be the best use case for you. I don't believe you can do it dynamically. The main use case of data assets is to be able to easily swap different premade configurations.
Just to add, if you weren't using Data Assets previously then you need to learn Epic's Best Practices. If Epic do it, you should do it. Obviously there is more than one way to skin a cat in game dev, but in my 14 years of experience I've learned that what you think is right is most likely wrong unless Epic did it first. They spend time, money and human resources on figuring out the best method before it even lands in preview. And in the case of PCG Biome's setup, it saves a lot of time switching things around to test if you use data assets.
I'm using data assets for my game. They weren't available for PCG prior to this update.
@@Procedural_Minds I know, although you could implement them, the Biome setup has added that method. I meant in general though, not you specifically. Most people I see on a daily basis aren't doing 10% of best practice and Data Assets have been one of the methods Epic has been staunch on implementing in their system. I'm guilty of skipping on best practice myself sometimes when I'm in a rush or prototyping. But I tend to iterate back and do what Epic does.
Hi is it possible to read data from a structure instead of a data asset in pcg because i want to change values in a struct format on the pcg
I don't believe it is possible, but once you make them attributes in PCG you can modify them any way you want separately.
@@Procedural_Minds Oh okay Because right now i have a dataset with multiple structs that are indexed that has a lot of information and i just wondered if i could eliminate the step to make a dataset and just change the struct in the PCG area but thanks anyways!
@@tallere1781 Since replying I actually took at the 5.5 roadmap. You can edit the Data Assets in PCG now. So you can probably use that to get the result you want. Assuming you can update to 5.5 once it releases. :)
I kind of like the "old" way much more .. is there any fps gains in doing it that way?
What do you mean by the old way? Using grass landscape nodes and foliage?
@@Procedural_Minds bad grammar from my side , I understand the difference between using data table and the hard coded way, I dont really need to be able to switch out any assets quickly
why not use save graph instance? i think it better than dataAsset
They are for different use cases. I can preconfigure data assets to be certain setups that I want and swap between them as simply as dragging and dropping using only one graph.
Great stuff. I am admittedly a noob dev. What are some of the advantages of using this rather than just a spline sampler? Is it the bool and other variables that would let you spawn things with more complicated logic? Probably a stupid question but I don’t immediately see the benefit
Spline sampler is just how you generate the points, data assets store all the information you can use for those points you generate.
@@Procedural_Mindsbut you can do all the same things with a transform points node no?
@@Josh_Alfaro This isn't about showing how to transform your points, it's about showing how you can now store all the information in a data asset and easily swap them out for different variations using the same base.
Great content !! What if I want to use this method to spawn BPs tho ?
Then just swap out the Static Mesh Actor Spawn Actor and plug your BP into it. :)
@@Procedural_Minds Wow Thank You so much !! Tried to figure it out the hard way :)
very helpful ;)
Thank you! :)
if errors in the graph still don't disappear, restart engine; worked for me
That's a great tip, thanks for sharing! :)
@@Procedural_Minds happy to help. btw is there a way to place meshes at random location on level?
@@Ionut-l7c You can do it with just blueprints or have your bounds of the PCG graph cover the full level if you're using world partition for example.
@@Procedural_Minds thanks alot!
Sorry - but why so complicate. There is almost no advantage of the "data assets system" ..... there are other less complicate systems.
What other system is there for quickly swapping full meshes and settings? I'd love to learn.
Honestly, as a hardcore Unity dev I expected a lot more from UE5. The PCG are full of errors and buggy behavior, a lot of it scream to be improved so much. In the time I spent trying to get this going I could've written a PCG with splines in C# 5 times that still uses Scriptable Objects for data assets and dynamic generation...
This is a new and beta feature that isn't ready for production. So I wouldn't use this as the benchmark for completed and fully implemented Unreal features.