*/
public void login(WonderlandClientSender sender, WonderlandClientID clientID) {
this.sender = sender;
this.clientID = clientID;
ViewCellMO view = getViewCell();
// see if there is an initial position specified
CellTransform xform = getInitialPosition();
if (xform != null) {
view.setLocalTransform(xform);
}
if (!view.isLive()) {
try {
WonderlandContext.getCellManager().insertCellInWorld(view);
} catch (MultipleParentException ex) {
Logger.getLogger(ViewCellCacheMO.class.getName()).log(Level.SEVERE, null, ex);
}