Chapter 6 warning
by Jesse Motes · in Torque Game Engine · 07/08/2005 (10:16 pm) · 0 replies
In chapter 6 on page 226:
function MasterScreen::update(%this)
should be:
function ServerScreen::Update(%this)
and page 228:
Screen.Update();
should be:
ServerScreen.Update();
the way it's printed in the book it doesn't work because screen.update(); is calling screen::update(%this) which doesn't exist.
function MasterScreen::update(%this)
should be:
function ServerScreen::Update(%this)
and page 228:
Screen.Update();
should be:
ServerScreen.Update();
the way it's printed in the book it doesn't work because screen.update(); is calling screen::update(%this) which doesn't exist.