Advertisement
Guest User

Untitled

a guest
Jun 12th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @Override
  2. public Vec3 getSkyColor(Entity cameraEntity, float partialTicks)
  3. {
  4. Color color = new Color(178, 162, 82);
  5. float f4 = ((float)(color.getRed()))/255.0F;
  6. float f5 = ((float)(color.getGreen()))/255.0F;
  7. float f6 = ((float)(color.getBlue()))/255.0F;
  8. return Vec3.createVectorHelper((double)f4, (double)f5, (double)f6);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement