Hi,
Yes, I know that was a crazy title, but I’m having some difficulties. Also, I can’t edit and fix the the word can’t, my typo. I was looking at some sample code and this is what I found:
CameraBoom->AttachTo(RootComponent);
and the documentation for that is this:
How in the world was I suppose to figure out that I had to just pass in RootComponent into the AttachTo function. Looking at the reference, it passed 4 parameters too.
It was another situation when I checked a particular class and a variable was not listed on that page, when I searched the whole API, the variable showed up for that class, but it wasn’t a link for that
variable on that page.
Basically, I really want to get good at programming and I don’t feel like the API reference is descriptive enough for me to use. If you feel that if I would had known C++ a little bit better that I would had
been able to come to this CameraBoom->AttachTo(RootComponent) from this reference:
void AttachTo
(
class USceneComponent * InParent,
FName InSocketName,
EAttachLocation::Type AttachType,
bool bWeldSimulatedBodies
)
please let me know. I did take a course in college for C++ and went through lynda’s C++ course and I have a good understanding of C++. But I feel like an API should at least tell you what parameters to put in and what
it does. It should also have a note section that a programmer should know if it would prevent the code from working correctly.
So basically, with the limitations of the API reference, can you tell me how you were able to get good at programming in Unreal Engine with not very useful documentations out there.
Please know that I’m not bashing the creators of the API; I just want to know how to get good at Unreal Engine programming. Thanks.