Moving Unreal Engine Camera While Game Is Paused You can enable camera movement while the game is paused by setting a few simple options: bShouldPerformFullTickWhenPaused and bIsCameraMoveableWhenPaused.
Optimize Shader Compilation & Package Sizes Unreal Engine Project Settings allow a major reduction (up to 50%) of shader permutations affecting shader compile times, package size, and load times. You can find the options under the Engine > Rendering > Shader...
Rotating meshes using Vertex Shaders Rotating (ambient) meshes in your world adds a dynamic element, but doing this on the CPU and having to pass it to the GPU each frame is a relatively slow operation. Without realizing you may...
Simple C++ FPS Template for Unreal Engine As I have been preparing some Unreal Engine C++ tutorials, I wanted to use the Built-in C++ FPS Template that ships with the engine as a base project and found it has VR and Touch-input...