I’m an experienced Unity developer who recently wished to switch to Unreal, but I am having trouble getting to understand the basics with all my Unity3d mindset.
So I have added the class to the scene and there is a connection. But I want to try and manipulate simple objects in the scene, like moving them around and such, using code. So in Unity I would just drag a primitive box underneath my GameObject containing my class. But when I try to do that in Unreal, I get this:
How do I get a “Root Component”? And how do I attach my class to that, and put primitive objects underneath it?
An Actor without a root component has no position.
If you are building an Actor through blueprints, it has a “dummy” Scene Component by default that exists to give it a position. You can add other components below that, or replace it as the root component.
In the C++ case, the default Actor does not provide this root component. In your class constructor you will need to create some form of Scene Component and assign it to the RootComponent variable. The simplest form of this would be:
If you wanted to add a Mesh component you could instead create that. Looking at StaticMeshActor.cpp should give some insight in how to do this for a more complex (and visual) component type.
If your goal is to build up a number of related static meshes, or what not in a hierarchy, I’d probably recommend looking at building that out in blueprints rather than C++ as it is much easier to make proper asset references and relationships in your hierarchy there.
Thank you, I will try and look into it. Regarding your last statement about Blueprint, I guess I am just the kind of programmer that’s scared of WYSIWYG stuff, but everybody talks so good about Blueprint so I should probably look into it instead.
Just in case anyone comes here in the future this actually doesn’t work as written here. It has been changed, at least in my “current” version of 4.5.1.
ANEWImpactEffect::ANEWImpactEffect(const class FPostConstructInitializeProperties& PCIP) : Super(PCIP)
{
//Default root component needed for C++ classes, Blueprints create one on the fly
DummyRoot = PCIP.CreateDefaultSubobject<USceneComponent>(this, TEXT("RootComponent"));
RootComponent = DummyRoot;
}
I encountered this issue when my ImpactEffects were always spawning at the origin (V(0) or 0,0,0). Blueprints automatically create a dummy component but there isn’t one in C++. So this will fill that need.
Thanks for helping me get in the right direction though (so many months later)!