I made an actor with certain components, i want to also add an optional primitive (in this case a plane) to created object inside the editor. In unity i could just plug the plane into the variable and done.
Is there no feature to just set objects by drag the reference into the variable? Or is there something different wrong? Its a little hard to explain so see the images:
I want to assign “Plane 1” (which is not part of the blueprint by default to “render mesh”
When you place the blueprint in the scene, you can set the mesh. It will point to a static mesh definition in the content browser.
If you want the mesh to be part of the blueprint, but also be able to set it, then you need to add a mesh component, and use the variable to set the mesh ( of this component ) in the construction script.
If you want the blueprint to point at an actual mesh in the scene, then you need the variable to be of type ‘static mesh actor’.