Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

First Person Exploration Kit UE4

First Person Exploration Kit is a complete package to create a First Person Environmental Exploration or Adventure game · By Kai Werder

problem with finding my way around blueprint

A topic by anjonjo00 created Nov 25, 2020 Views: 197 Replies: 2
Viewing posts 1 to 3

Hi Kai!

I wanted to thank you for making such a great Kit! It's awesome for a beginner like me. But as a beginner, I have trouble finding my way around blueprints. I wanted to ask you if you can tell me where do I change the custom text on HUD for doors for example. It says "will be filled later" but I can't find  where to change that custom text to something I need written.

Again, thank you so much!

Developer (2 edits)

Hey Anjonjo,

finally, I got enough time on my hand. First thank you!

Some things can be found be searching (and then clicking on the little binoculars' icon, so it searches the whole project). You find the settings for what you are searching under FirstPersonKitBP→UMG->UMG_InteractionWidget-> on the event graph the top green comment and then the lowest "set custom Text to Tag" -> there you see "will be filled later".

But before you change that because the doors can have three states (open, close and locked) there is a custom function behind it called "Custom Text For Doors". In that function it checks if a key is needed (if you set a custom key name instead of leaving it blank / none it requires that key). That is why you should only use the BP_Door actor as it "casts to" that actor to find out if a custom key is set.

If you have a second blueprint actor for doors just plug a "cast to" where the red cast is written and plug it into cast failed with the first. I would really try to limit your door blueprint actors. It is something as I only made one door asset I did not really think about.


If you just need a different static mesh as your door (just thought about that) create a new function in the "construction script" of the door actor. Say set static mesh and as the target set StaticMesh (the door from the viewport). For the new actor create a custom variable (see right panel for settings) set it to editable and put your default door as the default value (otherwise you don't have a door or have to set it for each actor in the level new). Then you should be able to set a custom door static mesh for each door. :) I hope that was what you were after. In the next update for .26 I will include that.


For tips to get yourself around the assets I would advice to read the comments and slowly click through all actors and in there the Macros and custom functions are probably also interesting. Sadly not everything follows the same logic. That's due to my experience back then. Btw. every variable should have a tooltip explaining what it does and if you search it just do it with control + F.

Have a great day and if you need some guidance again chat me up. It just may take some time ;)

(1 edit) (+1)

Thank you so much for such a fast reply! I took time and looked around all variables and blueprints right when I bought the kit to see if I can learn something from it  but I'm still not very familiar with how it all works. The comments helped a lot! 

I will try this now. 

Thank you for helping out  a fellow game designer! :)