What does computer icon mean

What the heck does this symbol mean. I have googled whole evening without an answer.

I mean. It means this node is only cosmetic, non-gameplay actions.

But what does that mean and why does it appear. It doesn’t appear on any tutorials I try to do with UMG. I can’t make my UMG work and I don’t know if this is the reason.

What computer icon? Where is it?

I tryed to follow this tutorial

I’m toying with the fly template and I tryed to figure out how could I show my flying objects speed and mass on screen while I play. I did get the numbers show on the screen, but both values stay 0.0 whole time.

I’m trying to get speed working first and I get this error
Error Accessed None ‘Flyer’ from node ReturnNode in blueprint DebugHUD

Here are some pics.
41879-41880-41881-

instead of setting flyer on EventConstruct, try EventBeginPlay.

the construction script is run in the editor, whenever you update an actor. you wont have a player controller while in the editor because its spawned during gameplay.

also, after the speed node and before the ReturnNode, you should add an IsValid node to check if the Flyer variable is null. that way, when the pawn gets destroyed, it won’t crash from trying to get data out of a non existent pawn.

and also, you should not add the return value to viewport, you should add WidgetVar to viewport, because that reference allows you to remove it from viewport.

At the Widget blueprint, you can’t get Event begin play. Other changes I did’ but they didn’t resolve the initial problem. I can’t get speed to update on my screen while I play.

Still thank you for input. I’m come from Unity and UE is different enough to make simple things seem hard :wink:

I think My problems root is this error

Error Accessed None ‘variable’ from node ReturnNode in blueprint DebugHUD

It’s same as nullreference in Unity and I think it means it doesn’t find reference to my FlyerPawn BP or something. I don’t know how to fix that :frowning:

you don’t need event begin play in the widget, you can use the event in the HUD.

in the HUD:
after creating the widget, and setting widgetVar, you can set widgetVar::Flyer, then add widgetVar to viewport.

inside the widget, you don’t have to do anything to set up its references, you can handle all of that from the HUD, because the HUD has better access to the pawn, playerstate, widgets it spawns, etc…

i use the Hud as a central place to manage the references to data that needs to be displayed. in the Hud i always check if the references i need are valid, and if they are not, i continually attempt to update those references every frame until they are valid.

these images might help:

you seem to be casting a player controller to a pawn, which is wrong. a player controller owns a pawn, but is not a type of pawn, so your cast will always fail.

instead of getPlayerController, you should try getOwningPawn.

So the first pick is hud BP and the second is your character controller?

pfff. Thanks for all the help. You guys teached a lot. But apparently it was all about variable types.
I connected float to a draw text node, but what i had to do was create a string variable in my flyingpawn BP and connect my flyspeed float to it. And then get that string variable in my HUD BP.
42332-42333-
Thank you again for all the help. Trying to explane your problem when you don’t really understand whole platform, can be a frustarting thing to do :confused:

I was asking how to get my vehicle speed show on screen while I play. UMG was just one solution I tryed. This worked.