Different types of textures

jMonkeyEngine supports various kinds of textures:

  • UV Mapped textures are professionally created textures that look like sewing patterns. Take your time to learn how to create them in your model editor; you will most likely use them in your games.
  • MIPmaps (MIP stands for "multum in parvo," meaning "many in one") provide several different levels of detail (LODs) for one texture in one file. Depending on how close (or far) the camera is, the engine automatically renders a more (or less) detailed texture for the object; this improves performance. jMonkeyEngine generates MIPmaps internally for all textures when a texture is sent to the GPU. This optimization happens "behind the scenes"—you don't have to do anything.
  • Seamless ...

Get jMonkeyEngine 3.0 Beginner's Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.