Inherited ACharacter components fail to refresh in editor

There is a bug when declaring and creating a component in a custom ACharacter that make this new component’s properties show bugged in the blueprint editor.

Reproducing the bug

  1. Create a new c++ Character class “Boo”.
  2. Create a new blueprint BP_Boo inheriting from Boo.
  3. Declare a component pointer in Boo.h (I used USphereComponent* but it seems to bug with any component) with a UPROPERTY(VisibleAnywhere) macro…
  4. Initialize the component in Boo’s constructor (I did it calling CreateDefaultSubobject(FName)).
  5. Compile the class, open the blueprint editor and see the component’s Transform only showing the Scale property.
  6. Attach the component to the RootComponent (did it calling USceneComponent::SetupAttachment) right after the call to CreateDefaultSubobject.
  7. Compile the class and check the component’s Transform again. Still bugged.
  8. Close the engine editor and open again. Check the component’s Transform seem to be showing the correct properties now.

Sometimes however even closing the editor and opening again will not “fix” the problem, then you need to do it again.

I have no idea why this happens as I just started to learn how to use the engine but it’s kinda scary to see such a bug in such a commom work area that isn’t fixed yet.

Thanks.

Hey ptr0x-

Thank you for submitting a bug report. I have reproduced this issue and logged a report for it here Unreal Engine Issues and Bug Tracker (UE-44683) . You can track the report’s status as the issue is reviewed by our development staff. Please be aware that this issue may not be prioritized or fixed soon.

Cheers