How are new devs supposed to deal with broken docs?

As far as I know, UnrealEngine Blueprint and C++ references are scarce to begin with, so most of what you are looking for is nowhere to be found.
If you can’t find documentation, check the source code directly instead.
Here are the steps I would take to find out.

  1. do a site search on the Epicgames site and enter the following in the URL.
    “{SearchWord} site:https://dev.epicgames.com/”
    *The search window in the documentation page is a dummy. Ignore it!
    You will probably find the relevant page, but the content may be empty.

  2. search Google for third-party information.

  3. check the source code of the implementation part of the information you are looking for.

  4. actually use it and see how it works.

I too have had a hard time finding information, but after I realized that the magnifying glass symbol was not doing any work, it became much easier.

1 Like