Ejemplo n.º 1
0
        private void bsp_initilised(q3bsptree bsp)
        {
            camera.playerMover = new Q3Movement(camera, bsp);

            // although we have the bsp tree
            // the rest of map not fully loaded yet
        }
Ejemplo n.º 2
0
        public Q3Movement(SceneCamera camera, q3bsptree bsp)
        {
            this.bsp = bsp;

            this.groundTrace = null;

            this.camera = camera;
        }