Customizing Camera Components
Camera components can be customized to create your own camera behaviors. There are mainly three types of components you can create: ECameraComponentFollow, ECameraComponentAim and ECameraExtensionBase. They are responsible for determining camera position,determining camera rotation and post-processing camera rotation/rotation/effects respectively.
Other types of class you can override include:
ECameraSettingsComponent: The core component responsible for updating each component and applying the result to the owned camera. It is not recommended to override this class.
ECameraManager: A manager used to manage all cameras in the level. It is not recommended to override this class.
ECameraGroupActorComponent: The component used to calculate the group actor position and rotation. You can override this class to implement your method for deriving group actor position and rotation.
ECameraHUD: The HUD class used to display HUD content. You can extend this class if you have more HUD requirements to fulfill, or you can copy and paste the source code into your own HUD class.
EPlayerCameraManager: A customized player camera manager used to enable adding and clearing camera post processing effects such as DOF, bloom, exposure, etc. You can extend this class if you want to have a finer control over the camera, or you can copy and paste the source code into your own player camera manager class.
All follow component, aim components and extension components such as ScreenFollow and TargetingAim can be inherited. If you add new functionality to some specific component, you can inherit and customize it.
Last updated