update method

void update(
  1. double dt
)

This method is called every frame to update the post process.

Use this to update any state that needs to be updated every frame. This is called after the update method of the Component class.

An example of usage is to update the time uniform of a shader.

Implementation

void update(double dt) {}