update method

void update(
  1. double dt
)

Called before a frame is drawn.

Override this method to do any updates to the node or node tree before it's drawn to screen.

// Make the node rotate at a fixed speed
void update(double dt) {
  rotation = rotation * 10.0 * dt;
}

Implementation

void update(double dt) {}