Home | History | Annotate | Download | only in events

Lines Matching refs:rotation

68     protected Quaternion rotation;
96 * The target rotates with the given rotation
98 Rotation,
202 oc.write(rotation, "rotation", Quaternion.IDENTITY);
213 rotation = (Quaternion) in.readSavable("rotation", Quaternion.IDENTITY);
239 if (rotation != null) {
242 q2.multLocal(rotation);
246 case Rotation:
247 if (rotation != null) {
248 spatial.setLocalRotation(rotation);
271 control.rotation = rotation.clone();
376 * returns the rotation of the target
377 * @return the rotation quaternion
380 return rotation;
384 * sets the rotation of the target
385 * This can be used only if direction Type is Direction.PathAndRotation or Direction.Rotation
387 * With Rotation the rotation of the target will be set with the given Quaternion.
388 * @param rotation the rotation quaternion
390 public void setRotation(Quaternion rotation) {
391 this.rotation = rotation;