I added a WidgetComponent via C++ in my actor class and it does not move along
with my actor, when I move it. The Widget just stuck at the place where it was spawned.
If do the same in the actor blueprint and add WidgetComponent there it works.
The Widget moves along with my actor.
The WidgetComponent created via C++ has the same settings as the blueprint one and it
is a direct child of the root component like the blueprint one.
I don’t see, what I have to set, that the WidgetComponent moves along with the actor.
I tried to set some different attachment rules but that didn’t solve the problem.
I attached a widget component to an actor the same way you did and didn’t have the issue you have. Is there anything else you did with your widget after setting it’s class?
Would you mind showing your .h as well? Also, you should try attaching up your Widget manually as well. I had issues that only happened when I didn’t do that.
...
IconWidget = CreateDefaultSubobject<UWidgetComponent>(TEXT("IconWidget"));
IconWidget->SetupAttachment(RootComponent);
if (IconWidget)
{
...
I’ve tried it with SetUpAttachment(…), AttachTo(…) and AttachToComponents(…) with different parameters. I didn’t work.
Meanwhile, I created the icon widget in the blueprint instead of creating it in C++.
When I have the time I take a look into the Unreal source code and find out what are they doing when I create a WidgetComponent in the blueprint. And find the missing parameters or differences.
It’s a little bit bugging me, that I can’t find the solution
UCLASS(Blueprintable)
class SRS_API ACarAssetActor : public AActor, public ICarIActor
{
GENERATED_BODY()
public:
ACarAssetActor ();
...
// Widget component
UPROPERTY(Blueprintable, EditAnywhere, BlueprintReadWrite)
UWidgetComponent* IconWidget;
..
}
If you are willing to send me your source files I would be willing to take a look at them. If you end up determining this is a bug you can submit it here.
Lucky me, I have just learned that I have access to the Unreal (enterprise) customer support in the next few weeks.
So, if i don’t find the solution, the support will hopefully.
I will post the solution or bug here.
Thanks for the effort.
I suffered from this problem too. And I found some solution. you can add SetAbsolute function to constructer in your Actor. you can also use this function in your widget component constructer.
This function changes the relative transform of your component from world to parent.
Nevertheless if your widget doesn’t move, I recommend to do following actions. Content Browser > [Right click your Actor BP inherited C++ class] > Asset Actions > Reload
Instead you can add this code to BeginPlay not constructor.
I have experienced frequently constructer code is not refreshed well after modifying.