Home | History | Annotate | Download | only in input

Lines Matching refs:direction

56   Vector3f direction = new Vector3f();
86 //Setting the direction to Spatial to camera, this means the camera will copy the movements of the Node
114 //computing the normalized direction of the cam to move the teaNode
115 direction.set(cam.getDirection()).normalizeLocal();
117 direction.multLocal(5 * tpf);
118 teaNode.move(direction);
121 direction.multLocal(-5 * tpf);
122 teaNode.move(direction);
125 direction.crossLocal(Vector3f.UNIT_Y).multLocal(5 * tpf);
126 teaNode.move(direction);
129 direction.crossLocal(Vector3f.UNIT_Y).multLocal(-5 * tpf);
130 teaNode.move(direction);