Attempting to create company logo 'on-screen'.

Hey all -

Wanting to have company logo on screen while in play mode. It’s not animated by any measure - just a template on top.

i can’t figure it out - as i’m not blueprint savy. i’ve got it started but it doesn’t seem to be working!

any suggestions would be greatly appreciated!

Thx -

1d4630f8965b546b993fdd24d5b327f7205ce651.jpeg

e7c2a2a761039af63c48000ae7adca5157651944.jpeg

It looks like that should work. I have only set Widgets from the Controller and from the Level Blueprint though. It’s possible it may not work from the Character.

I think you need to Get Player Controller instead of Owning Player on the Create Widget

Try set the Owning Player with the Get Controller, from inside this ThirdPersonCharacter BP. Probably that’s why it’s not working correctly

thanks folks but no dice! followed instructions - but all i get is this!

these messages are like a foreign language! :slight_smile:

It looks like there’s code inside your UI that’s preventing you from spawning it as it would cause an infinite loop. Do you have any code we can look at inside your UI? Possibly something related to clicking on the person on your team spawning info about them or something?

When you click Call Stack in the error log, what does it take you to? if it’s to BP code can you take a screenshot of it for us?

@pinworm -

thanks mate - okay, here are some screen grabs. the first 2 below are from my UI.

When I click on ‘Call Stack’ - I get a message. I don’t know how to execute this.

any suggestions? :smiley:

Your mistake is trying to spawn the UI widget actor from within the Event Construct of the UI widget actor.

What happens here is that the widget spawns, then has it’s construct spawn another widget, which has that construct spawn another widget, and so on. Therefore, Infinite Loop.

Move the nodes from outside of the UI actor’s event graph. Place them in a different blueprint. I would recommend the Player Controller’s Event Begin Play function.

@anonymous_user_9259ac75 -

thank mate - that helped a lot. however, not totally resolved - but **** near close!

so when i started this - i had no idea about UI - so i bought a UI Kit from the marketplace and copied it over to my content folder. however, i decided to do it on my own.

now the problem is - the UI Kit is overlapping my UI - they’re meshed together & and I have no idea how to get rid of it!

ui_ue_012.JPG

928e337d4e027c65aab1d6020fc66c5c28baf21d.jpeg

6b898e3402c65bda575c5f82848382f22fdb9573.jpeg

1b2c18016725ebc59d7246ba3e0ac7b99a0bf123.jpeg

9329a3b9deb499450401a1096a3a192aa26f04c1.jpeg

okay - resolved!

killed the ui kit in my content browser :slight_smile:

thanks all!!