Game Focus
From SemanticLab
The game automatically adjusts its view to the active GameCharacter which is always displayed in the game area's center.
You may change the focus by performing the following steps:
- create another GameCharacter object (which might be invisible as well), and
- set the active game character to that object.
m.setActiveCharacter(invisibleGameCharacter);
The disadvantage of this approach is that the player cannot control the real GameCharacter during the time the proxy object is in charge.
You may return the focus to the real GameCharacter by using the setActiveCharacter function again.
m.setActiveCharacter(myGameCharacter);

