Sorry I’m completely new to unreal engine. In my previous coding projects on other platforms, the documentation has included descriptions and examples, for each function, class, etc.
However whenever I look something up in the UE docs I get something like the image below; no description or examples.
How am I supposed to know what this function does? Am I missing something?
At work, but I saw this and didn’t want to pass this by because I was struggling with this when I first got on the Unreal scene - what you are showing is a high level overview of a file. It is telling you base information such as where this file belongs (core), it’s header (IMPORTANT), the include file (IMPORTANT) and the source of the file. If you are coming from a C#/Unity background this will throw you at first because this is a peek at low-level file management - something you never had to deal with before. This is telling you what to put at the top of either the .cpp or .h file dependent on context (90 percent of the time, the .cpp file, unless the header file needs the include. Then they are put at the top of the .h file)