Graphics module interface.
More...
#include <NcGraphics.h>
|
virtual void | SetCamera (Camera *camera) noexcept=0 |
| Set the main Camera. More...
|
|
virtual auto | GetCamera () noexcept -> Camera *=0 |
| Get the main Camera. More...
|
|
virtual void | SetUi (ui::IUI *ui) noexcept=0 |
| Set a custom ui to receive draw callbacks during rendering. More...
|
|
virtual bool | IsUiHovered () const noexcept=0 |
| Returns if the ui is currently hovered by the mouse.
|
|
virtual void | SetSkybox (const std::string &path)=0 |
| Set the current skybox. More...
|
|
virtual auto | GetSkybox () const -> nc::asset::AssetId=0 |
| Gets the current skybox. More...
|
|
virtual void | ClearEnvironment ()=0 |
| Clear all environment data (currently only the skybox). More...
|
|
virtual auto | IsPostProcessEffectEnabled (PostProcessEffectId effectId) const -> bool=0 |
| Returns if a post process effect is enabled.
|
|
virtual void | SetPostProcessEffectEnabled (PostProcessEffectId effectId, bool enabled)=0 |
| Enabled or disable a post process effect.
|
|
virtual auto | GetPostProcessEffectProperties (PostProcessEffectId effectId, PostProcessPassFlag::type pass) const -> const PostProcessPassProperties &=0 |
| Get the pass properties for a post process effect.
|
|
virtual void | SetPostProcessEffectProperties (PostProcessEffectId effectId, PostProcessPassFlag::type pass, const PostProcessPassProperties &properties)=0 |
| Set the pass properties for a post process effect.
|
|
| Module (size_t id=0) noexcept |
| Constructor for the Module interface. More...
|
|
auto | Id () const noexcept |
| Get the module's unique id.
|
|
virtual void | OnBuildTaskGraph (task::UpdateTasks &, task::RenderTasks &) |
| Called on registered modules when the task graphs are constructed.
|
|
virtual void | OnBeforeSceneLoad () |
| Called on registered modules prior to loading a new scene.
|
|
virtual void | OnBeforeSceneFragmentLoad () |
| Called on registered modules immediately before loading a SceneFragment file.
|
|
virtual void | OnAfterSceneFragmentLoad () |
| Called on registered modules immediately after loading a SceneFragment file.
|
|
virtual void | Clear () noexcept |
| Called on registered modules prior to clearing the Registry. This includes Scene::Unload() and NcEngine::Shutdown().
|
|
Graphics module interface.
Update Tasks DebugRendererNewFrame (only in dev builds) Depends On: None Component Access: WireframeRenderer ParticleEmitterUpdate Depends On: CommitStagedChanges Component Access: Read: ParticleEmitter, Transform
Render Tasks Render Depends On: None Component Access: Write: Camera, WireframeRenderer Read: StaticMesh, SkinnedMesh, DirectionalLight, PointLight, SpotLight, Transform
◆ ClearEnvironment()
virtual void nc::NcGraphics::ClearEnvironment |
( |
| ) |
|
|
pure virtual |
Clear all environment data (currently only the skybox).
This is called automatically on scene changes. The main Camera is not cleared as it can be set on a persistent Entity.
◆ GetCamera()
virtual auto nc::NcGraphics::GetCamera |
( |
| ) |
-> Camera * |
|
pure virtualnoexcept |
Get the main Camera.
- Returns
- Camera*
◆ GetSkybox()
virtual auto nc::NcGraphics::GetSkybox |
( |
| ) |
const -> nc::asset::AssetId |
|
pure virtual |
Gets the current skybox.
- Returns
- The AssetID of the current skybox, or NullAssetID if none set.
◆ SetCamera()
virtual void nc::NcGraphics::SetCamera |
( |
Camera * |
camera | ) |
|
|
pure virtualnoexcept |
Set the main Camera.
A valid Camera must always be registered during execution except during scene changes.
- Parameters
-
camera | A pointer to a valid Camera. |
◆ SetSkybox()
virtual void nc::NcGraphics::SetSkybox |
( |
const std::string & |
path | ) |
|
|
pure virtual |
Set the current skybox.
- Parameters
-
path | A path to a skybox asset file. |
◆ SetUi()
virtual void nc::NcGraphics::SetUi |
( |
ui::IUI * |
ui | ) |
|
|
pure virtualnoexcept |
Set a custom ui to receive draw callbacks during rendering.
- Parameters
-
ui | A pointer to a valid IUI implementation. |
The documentation for this struct was generated from the following file: