Java com.badlogic.gdx.graphics Cubemap fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.graphics Cubemap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.graphics Cubemap.

The text is from its open source code.

Constructor

Cubemap(FileHandle positiveX, FileHandle negativeX, FileHandle positiveY, FileHandle negativeY, FileHandle positiveZ, FileHandle negativeZ)
Construct a Cubemap with the specified texture files for the sides, does not generate mipmaps.
Cubemap(Pixmap positiveX, Pixmap negativeX, Pixmap positiveY, Pixmap negativeY, Pixmap positiveZ, Pixmap negativeZ)
Construct a Cubemap with the specified Pixmap s for the sides, does not generate mipmaps.
Cubemap(TextureData positiveX, TextureData negativeX, TextureData positiveY, TextureData negativeY, TextureData positiveZ, TextureData negativeZ)
Construct a Cubemap with the specified TextureData 's for the sides
Cubemap(int width, int height, int depth, Format format)
Construct a Cubemap with Pixmap s for each side of the specified size.