This doc is not useful. https://docs.unrealengine.com/en-US/…ain/index.html
Could someone add more details about Mac please.
I asked a question here: https://answers.unrealengine.com/que…-from-mac.html
This doc is not useful. https://docs.unrealengine.com/en-US/…ain/index.html
Could someone add more details about Mac please.
I asked a question here: https://answers.unrealengine.com/que…-from-mac.html
Is there somewhere we can suggest corrections?
For example with the GetWorldTimerManager at https://docs.unrealengine.com/en-US/…ger/index.html is says the include is #include “GameFramework/Actor.h” but you actually need to #include “TimerManager.h” to use it.
Easy one here, and not high priority, but still important I would think:
In “Archviz Interior Rendering” page, under “Samples and Tutorials > Engine Feature Examples”, there’s a typo of the label of the ray tracing quality switch replace node. The label of the actual node is, I think, “RayTracingQualitySwitchReplace”, while this page has two instances of it typed as “RayTracingQualityReplaceSwitch” in the following location:
Hello,
A lot of the language throughout the documentation uses masculine pronouns by default. For example this passage from Exposing C++ to Blueprints Visual Scripting in Unreal Engine | Unreal Engine 5.2 Documentation
[]
At Epic, a lot of the workflow is that content creators will make a very complex Blueprint, and a programmer can see how he can compress a lot of that work into C++ by coding a new Blueprint node, so he moves that chunk of functionality into a new C++ function.
[/]
It would be neat if we could change the pronouns in the documentation to use the more inclusive “they” where appropriate, or at least have a more even mix.
Thanks
There is no github repo named “Unreal Engine”
The right side has the nav for contents of the current doc page / section in a little hovering window. In Firefox 79.0, it’s covering lots of the table text in the Sky Atmosphere Reference page for Console Commands, and is likely doing it on other pages if it’s working like that on other pages.
I cannot read the text descriptions of settings and such easily enough. I’ll attempt to go to the same page in Edge and Chrome.
The Unreal Engine C++ API has many “weak” design choices i.e. ways the API allows being used that are incorrect. Case in point how “CreateDefaultSubobject” must ONLY be called from within a constructor but this is in no way of being enforced by the compiler due to the design.
If a software design choice means the software expresses MANY incorrect possible uses that the compiler will not be able to detect this increases the burden and cost on everything and everyone downstream. Even if a mistake is not made the cost of testing and uncertainty is still increased regardless.
Improving the documentation for the C++ API regarding critical programming theory for the engine is seriously needed and requires an expert on the architecture and workings of the engine in order to write it ( not another “beginners guide” by dummies for dummies please! ).
The translation of the Chinese version is not very good. In many places, the semantics are impractical, or the sentences are repeated, and some polysemous words are incorrectly translated. It feels like machine translation. I hope it can be optimized manually.
That is the least issue but I thought of informing you.
Here:
https://docs.unrealengine.com/en-US/…ity/index.html
In the table describing mobility types, you have a typo.
It states: “Not, however, that their Materials can still be animated.” while it perhaps should be: “Note, however, (…)”.
But I am not a native speaker so perhaps it is some structure I cannot understand, but probably no.
In the Behaviour Tree Quick Start Guide, Section 5 Step 7 shows a Blueprint setup that’s impossible since it has two Patrol Location variables. When you try to set it up that way, you get an error that says “PatrolLocation is in use by another variable or function!” If there’s a way to make this work, it’s not described in the tutorial.
Hi, there are formatting errors in the macro example code here:
https://docs.unrealengine.com/en-US/…your%20object.
e.g. DECLARE_MULTICAST_DELEGATE{div class=“errorhighlight” id=“Error1”>_RetVal, etc.{/div>
Hi, I am getting broken image links on every page of the C++ API Reference.
See the attached image for reference. (Image taken from https://docs.unrealengine.com/en-US/…ule/index.html)
Image is taken from the latest version of Chome, but this issue happens on Internet Explorer and Firefox as well.
Trying to open the broken URL https://docs.unrealengine.com/Images…***_public.png in a separate window or tab takes me back to the top page of the documentation.
@echo_four It might have been a misinformation, thanks for clarifying. I think I’ve seen it here: https://answers.unrealengine.com/que…-outdated.html
Basically I couldn’t figure out how to display the interface, might have been due to my non-english keyboard. Right now I don’t need it anymore, but I might at a later time.
On this page https://docs.unrealengine.com/en-US/…hon/index.htmlit refers to “readme file under *Engine\Plugins\Experimental\PythonScriptPlugin\SphinxDocs”. *This readme file does not exist.
Hi, im fairly new to UE4 and i did this tutorial documentation word for word but it doesnt work. Im not sure if im on the right subject but maybe this can help, im trying to make a game that can take real world photos (mostly selfies) from your phone while youre playing the game. please help, thank you!
Hello,
I am trying to follow the programming quick start guide (https://docs.unrealengine.com/en-US/…art/index.html) and it does not compile. It says that quite a few things are undefined and nowhere in the guide does it have code that would define them. What is missing?
Error (active) E0020 identifier "RootComponent" is undefined
Error (active) E0020 identifier "GetActorLocation" is undefined
Error (active) E0020 identifier "GetActorRotation" is undefined
Error (active) E0020 identifier "GetGameTimeSinceCreation" is undefined
Error (active) E0020 identifier "SetActorLocationAndRotation" is undefined
Error C2065 'RootComponent': undeclared identifier
Error C3861 'GetActorLocation': identifier not found
Error C3861 'GetActorRotation': identifier not found
Error C3861 'GetGameTimeSinceCreation': identifier not found
Error C3861 'SetActorLocationAndRotation': identifier not found
Thanks!
On,
The code line
UMyEngineSubsystem MySubsystem = GEngine->GetEngineSubsystem<UMyEngineSubsystem>();
Doesn’t compile. However changing it to,
UMyEngineSubsystem* MySubsystem = GEngine->GetEngineSubsystem<UMyEngineSubsystem>();
does.
Blackmagic video I/O Quick Start for UE 4.25 with macOS Catalina is not showing some options. Try to keep different documentation for Windows & Mac
Hello, I’d just like to comment that the tutorials and documentation are top notch, best in the industry.
I’m starting out so I’d really appreciate more tutorials on Modo/Unreal interaction
For instance the following page details Maya/Max workflow, it would be really nice if modo was an option.
Hi, in the Automation Spec page (https://docs.unrealengine.com/en-US/…pec/index.html), inside BeforeEach and AfterEach feature description, at the second example I think that:
BeforeEach([this]()
{
RunOrder = TEXT("B");
});
Should be changed to (note the +):
BeforeEach([this]()
{
RunOrder **+**= TEXT("B");
});
Because after it, the test checks if RunOrder is equal to “AB”, but it’s “B” instead.