Package com.flansmod.common

Examples of com.flansmod.common.RotatedAxes


  public EntityLivingBase camera;
 
    public EntityDriveable(World world)
    {
        super(world);
    axes = new RotatedAxes();
    prevAxes = new RotatedAxes();
        preventEntitySpawning = true;
        setSize(1F, 1F);
        yOffset = 6F / 16F;
    ignoreFrustumCheck = true;
    renderDistanceWeight = 200D;
View Full Code Here


    initType(DriveableType.getDriveable(driveableType), false);
   
    prevRotationYaw = tag.getFloat("RotationYaw");
    prevRotationPitch = tag.getFloat("RotationPitch");
    prevRotationRoll = tag.getFloat("RotationRoll");
    axes = new RotatedAxes(prevRotationYaw, prevRotationPitch, prevRotationRoll);
    }
View Full Code Here

TOP

Related Classes of com.flansmod.common.RotatedAxes

Copyright © 2018 www.massapicom. 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.