Settings.java 607 B

1234567891011121314151617181920212223
  1. package eu.tankernn.gameEngine.settings;
  2. public class Settings {
  3. //Display settings
  4. public static final float FOV = 70;
  5. public static final float NEAR_PLANE = 0.1f;
  6. public static final float FAR_PLANE = 1000;
  7. //Sky color
  8. public static final float RED = 0.7f;
  9. public static final float GREEN = 0.75f;
  10. public static final float BLUE = 0.8f;
  11. public static final float TERRAIN_SIZE = 800;
  12. public static final float ANISOTROPIC_FILTERING_AMOUNT = 4f;
  13. public static final int MULTISAMPLING = 2;
  14. /**
  15. * Maximum number of joints in a skeleton.
  16. */
  17. public static final int MAX_JOINTS = 50;
  18. }