eduEngine 1.0
Course framework for DA376B
Loading...
Searching...
No Matches
Public Member Functions | List of all members
Scene Class Reference

A Scene may hold, update and render 3D geometry and GUI elements. More...

#include <Scene.hpp>

Inheritance diagram for Scene:
eeng::SceneBase

Public Member Functions

bool init () override
 For scene resource initialization.
 
void update (float time, float deltaTime, InputManagerPtr input) override
 General update method that is called each frame.
 
void render (float time, int windowWidth, int windowHeight) override
 For rendering of scene contents.
 
void destroy () override
 For destruction of scene resources.
 

Detailed Description

A Scene may hold, update and render 3D geometry and GUI elements.

Member Function Documentation

◆ destroy()

void Scene::destroy ( )
overridevirtual

For destruction of scene resources.

Implements eeng::SceneBase.

◆ init()

bool Scene::init ( )
overridevirtual

For scene resource initialization.

Returns

Implements eeng::SceneBase.

◆ render()

void Scene::render ( float time,
int windowWidth,
int windowHeight )
overridevirtual

For rendering of scene contents.

Parameters
timeTotal time elapsed in seconds
screenWidthCurrent width of the window in pixels
screenHeightCurrent height of the window in pixels

Implements eeng::SceneBase.

◆ update()

void Scene::update ( float time,
float deltaTime,
InputManagerPtr input )
overridevirtual

General update method that is called each frame.

Parameters
timeTotal time elapsed in seconds
deltaTimeTime elapsed since the last frame
inputInput from mouse, keyboard and controllers

Implements eeng::SceneBase.


The documentation for this class was generated from the following files: