Hi,
Could anyone help explain to me, when to use Level BP, Actor/Object BP, and Game BP? As a beginner, I’m confused with different BP use cases.
I only know those 3 BPs by the way, maybe I missed another?
Thank you,
Hi,
Could anyone help explain to me, when to use Level BP, Actor/Object BP, and Game BP? As a beginner, I’m confused with different BP use cases.
I only know those 3 BPs by the way, maybe I missed another?
Thank you,
Level BP when you need direct references for things dragged into the level, and other things effecting the level. Actor when you need things just effecting the actor. Game state when you need data stored that will continue after player is destroyed and game is still running.
“direct references for things dragged into the level” << What is the difference between these “things” and the ordinary Actors? Aren’t they just Actors basically?
“Game state when you need data stored that will continue after player is destroyed and game is still running.” << What kind of data? Any real-world example?
Thank you!
For example, in my beat em up template, I duplicated the third person character BP and named it Enemy001. I dragged theenemy bp into the map, and named it jobber (a no nothing lacky pro wrestling term for those that don’t know), and each one added becomes like jobber 2…3…4…etc etc. In the level BP, it allows me to check when that certain character is overlapping a box or not. OR if two jobbers are destroyed so that I can clear or advance for 1 time. VS the enemy BP will fire a signal everytime the actor is destroyed. It seems to offer a selectivity to doing things by getting the direct references. Afaik, this is the only way to get direct references to things dragged into the level. It still can be a pain in the a$$ but it does offer you more control.
Yes, in that same beat em up template project. I have an integer in the game state called “Player01LivesCounter”. The game state keeps going between levels. So it will always be accurate for how many lives. Whereas, if the same integer were in the third person character’s bp, it would get reset every time a map loaded.
Thank you very much!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.