Package org.spoutcraft.client.entity

Examples of org.spoutcraft.client.entity.EntityText


    output.writeDouble(moveZ);
  }

  @Override
  public void run(int playerId) {
    EntityText entity = new EntityText(Minecraft.getMinecraft().theWorld);
    entity.setPosition(posX, posY, posZ);
    entity.setScale(scale);
    entity.setText(text);
    entity.setRotateWithPlayer(true);
    entity.motionX = moveX;
    entity.motionY = moveY;
    entity.motionZ = moveZ;
    entity.setDuration(duration);
    Minecraft.getMinecraft().theWorld.spawnEntityInWorld(entity);
  }
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.entity.EntityText

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.