Provide the camera handler rather than the camera.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3753 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-11-09 22:34:15 +00:00
parent 35caa3a79f
commit 4a1b366cd8
3 changed files with 9 additions and 8 deletions
@@ -23,7 +23,6 @@ package com.threerings.jme.client;
import com.jmex.bui.BRootNode;
import com.jme.input.InputHandler;
import com.jme.renderer.Camera;
import com.jme.renderer.Renderer;
import com.jme.scene.Node;
import com.jme.system.DisplaySystem;
@@ -42,6 +41,7 @@ import com.threerings.crowd.client.PlaceView;
import com.threerings.crowd.util.CrowdContext;
import com.threerings.jme.JmeContext;
import com.threerings.jme.camera.CameraHandler;
/**
* The Jabber client takes care of instantiating all of the proper
@@ -187,8 +187,8 @@ public class JabberClient
return _app.getContext().getDisplay();
}
public Camera getCamera () {
return _app.getContext().getCamera();
public CameraHandler getCameraHandler () {
return _app.getContext().getCameraHandler();
}
public Node getGeometry () {