Having components inside of a component

Hey wiwip-

When is setInteractText() being called? It appears that you are doing interactText->AttachParent prior to the CreateDefaultSubobject<> call. This would cause a crash since interactText is NULL when AttachParent is set. Moving interactText = CreateDefaultSubobject(TEXT("InteractText")); to the constructor above the other code you posted should help.

Cheers