Examples of upVector()


Examples of org.spout.api.geo.discrete.Transform.upVector()

    }
    if (inputState.getRight()) {
      offset = offset.add(ts.rightVector().mul(speed * dt));
    }
    if (inputState.getJump()) {
      offset = offset.add(ts.upVector().mul(speed * dt));
    }
    if (inputState.getCrouch()) {
      offset = offset.sub(ts.upVector().mul(speed * dt));
    }

 
View Full Code Here

Examples of org.spout.api.geo.discrete.Transform.upVector()

    }
    if (inputState.getJump()) {
      offset = offset.add(ts.upVector().mul(speed * dt));
    }
    if (inputState.getCrouch()) {
      offset = offset.sub(ts.upVector().mul(speed * dt));
    }

    player.get(EntityHead.class).setOrientation(Quaternionf.fromAxesAnglesDeg(inputState.pitch(), inputState.yaw(), ts.getRotation().getAxesAngleDeg().getZ()));
    player.getPhysics().translate(offset);
    player.getPhysics().setRotation(Quaternionf.fromAxesAnglesDeg(inputState.pitch(), inputState.yaw(), ts.getRotation().getAxesAngleDeg().getZ()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.