Package com.badlogic.gdx
package com.badlogic.gdx
-
ClassDescriptionAn
Application
is the main entry point of your project.Enumeration of possibleApplication
typesConvenience implementation ofApplicationListener
.AnApplicationListener
is called when theApplication
is created, resumed, rendering, paused or destroyed.The ApplicationLogger provides an interface for a libGDX Application to log messages and exceptions.This interface encapsulates the creation and management of audio resources.Provides standard access to the filesystem, classpath, Android app storage (internal and external), and Android assets directory.Indicates how to resolve a path to a file.AnApplicationListener
that delegates to aScreen
.Environment class holding references to theApplication
,Graphics
,Audio
,Files
andInput
instances.This interface encapsulates communication with the graphics processor.Class describing the bits per pixel, depth buffer precision, stencil precision and number of MSAA samples.Describe a fullscreen display modeEnumeration describing different types ofGraphics
implementations.Describes a monitorInterface to the input facilities.Mouse buttons.Keys.Enumeration of potentially available peripherals.Callback interface forInput.getTextInput(TextInputListener, String, String, String)
An adapter class forInputProcessor
.Queues events that are later passed to anInputProcessor
.AnInputProcessor
that delegates to an ordered list of other InputProcessors.An InputProcessor is used to receive input events from the keyboard and the touch screen (mouse on the desktop).A LifecycleListener can be added to anApplication
viaApplication.addLifecycleListener(LifecycleListener)
.Provides methods to perform networking operations, such as simple HTTP get and post requests, and TCP server/client socket communication.Provides common HTTP methods to use when creating aNet.HttpRequest
.Contains getters and setters for the following parameters: httpMethod: GET or POST are most common, can useHttpMethods
for static references url: the url headers: a map of the headers, setter can be called multiple times timeout: time spent trying to connect before giving up content: A string containing the data to be used when processing the HTTP request. Abstracts the concept of a HTTP Request:HTTP response interface with methods to get the response data as a byte[], aString
or anInputStream
.Listener to be able to do custom logic once theNet.HttpResponse
is ready to be processed, register it withNet.sendHttpRequest(HttpRequest, HttpResponseListener)
.A Preference instance is a hash map holding different values.Represents one of many application screens, such as a main menu, a settings menu, the game screen and so on.Convenience implementation ofScreen
.The version of libGDX