Hello, I have a ship object that I want to add scene components to in the blueprint editor and add them to an array but I can’t see the array in the editor. this is what i currently have in the .h file
If you want it in Components panel you need to add it to the Constructor: ( I’m not sure if it’s possible to use TArray, you need to add them individually ) :
Basically I want to place scene components on the ship object in the blueprint editor and save them to an array. I can create the points in code and add them to an array I just wanted to do it in the editor.
I have tried this and get same result, For now I’m just doing the array in c++ and moving the scene components in the editor but I would still like to learn why I can’t see the array in the details panel.
I just tested this, and yes, it doesn’t show up in Class Defaults. But you can enable Show Inherited variables in the My Blueprint tab, which will list it along with the other variables, then select it to edit it in the Details Panel.
This solution was it, I can see the array in the details panel now Thank you. Also is there a way I can add a Scene component from within the editor none of the created components show up in the drop down menu.