If a file called conf.lua is present in your game folder (or .love file), it is run before the LÖVE modules are loaded. You can use this file to overwrite the love.conf function, which is later called by the LÖVE 'boot' script. Using the love.conf function, you can set some configuration options, and change things like the default size of the window, which modules are loaded, and other stuff.
love.conf( t )
t | table | The love.conf function takes one argument: a table filled with all the default values which you can overwrite to your liking. If you want to change the default window size, for instance, do: function love.conf(t) t.window.width = 1024 t.window.height = 768 end If you don't need the physics module or joystick module, do the following. function love.conf(t) t.modules.joystick = false t.modules.physics = false end Setting unused modules to false is encouraged when you release your game. It reduces startup time slightly (especially if the joystick module is disabled) and reduces memory usage (slightly). Note that you can't disable love.filesystem; it's mandatory. The same goes for the love module itself. love.graphics needs love.window to be enabled. |
t | string | This flag determines the name of the save directory for your game. Note that you can only specify the name, not the location where it will be created: t.identity = "gabe_HL3" -- Correct t.identity = "c:/Users/gabe/HL3" -- Incorrect Alternatively love.filesystem.setIdentity can be used to set the save directory outside of the config file. |
t | boolean | This flag determines if game directory should be searched first then save directory (true) or otherwise (false) |
t | string | t.version should be a string, representing the version of LÖVE for which your game was made. It should be formatted as "X.Y.Z" where X is the major release number, Y the minor, and Z the patch level. It allows LÖVE to display a warning if it isn't compatible. Its default is the version of LÖVE running. |
t | boolean | Determines whether a console should be opened alongside the game window (Windows only) or not. Note: On OSX you can get console output by running LÖVE through the terminal. |
t | boolean | Sets whether the device accelerometer on iOS and Android should be exposed as a 3-axis Joystick. Disabling the accelerometer when it's not used may reduce CPU usage. |
t | boolean | Sets whether files are saved in external storage (true) or internal storage (false) on Android. |
t | boolean | Determines whether gamma-correct rendering is enabled, when the system supports it. |
t | table | Audio options. |
t | boolean | Request microphone permission from the user. When user allows it, love.audio.getRecordingDevices will lists recording devices available. Otherwise, love.audio.getRecordingDevices returns empty table and a message is shown to inform user when called. |
t | boolean | Sets whether background audio / music from other apps should play while LÖVE is open. See love.system.hasBackgroundMusic for more details. |
t | table | It is possible to defer window creation until love.window.setMode is first called in your code. To do so, set t.window = nil in love.conf (or t.screen = nil in older versions.) If this is done, LÖVE may crash if any function from love.graphics is called before the first love.window.setMode in your code. The t.window table was named t.screen in versions prior to 0.9.0. The t.screen table doesn't exist in love.conf in 0.9.0, and the t.window table doesn't exist in love.conf in 0.8.0. This means love.conf will fail to execute (therefore it will fall back to default values) if care is not taken to use the correct table for the LÖVE version being used. |
t | string | Sets the title of the window the game is in. Alternatively love.window.setTitle can be used to change the window title outside of the config file. |
t | string | A filepath to an image to use as the window's icon. Not all operating systems support very large icon images. The icon can also be changed with love.window.setIcon. |
t | number | Sets the window's dimensions. If these flags are set to 0 LÖVE automatically uses the user's desktop dimensions. |
t | number | Sets the window's dimensions. If these flags are set to 0 LÖVE automatically uses the user's desktop dimensions. |
t | boolean | Removes all border visuals from the window. Note that the effects may wary between operating systems. |
t | boolean | If set to true this allows the user to resize the game's window. |
t | number | Sets the minimum width and height for the game's window if it can be resized by the user. If you set lower values to window.width and window.height LÖVE will always favor the minimum dimensions set via window.minwidth and window.minheight. |
t | number | Sets the minimum width and height for the game's window if it can be resized by the user. If you set lower values to window.width and window.height LÖVE will always favor the minimum dimensions set via window.minwidth and window.minheight. |
t | boolean | Whether to run the game in fullscreen (true) or windowed (false) mode. The fullscreen can also be toggled via love.window.setFullscreen or love.window.setMode. |
t | string | Specifies the type of fullscreen mode to use (normal or desktop). Generally the desktop is recommended, as it is less restrictive than normal mode on some operating systems. |
t | boolean | Sets whetever to enable or disable automatic DPI scaling. |
t | number | Enables or deactivates vertical synchronization. Vsync tries to keep the game at a steady framerate and can prevent issues like screen tearing. It is recommended to keep vsync activated if you don't know about the possible implications of turning it off. Before LÖVE 11.0, this value was boolean (true or false). Since LÖVE 11.0, this value is number (1 to enable vsync, 0 to disable vsync, -1 to use adaptive vsync when supported). Note that in iOS, vertical synchronization is always enabled and cannot be changed. |
t | number | The number of bits per sample in the depth buffer (16/24/32, default nil) |
t | number | Then number of bits per sample in the depth buffer (generally 8, default nil) |
t | number | The number of samples to use with multi-sampled antialiasing. |
t | number | The index of the display to show the window in, if multiple monitors are available. |
t | boolean | See love.window.getPixelScale, love.window.toPixels, and love.window.fromPixels. It is recommended to keep this option disabled if you can't test your game on a Mac or iOS system with a Retina display, because code will need tweaking to make sure things look correct. |
t | number | Determines the position of the window on the user's screen. Alternatively love.window.setPosition can be used to change the position on the fly. |
t | number | Determines the position of the window on the user's screen. Alternatively love.window.setPosition can be used to change the position on the fly. |
t | table | Module options. |
t | boolean | Enable the audio module. |
t | boolean | Enable the event module. |
t | boolean | Enable the graphics module. |
t | boolean | Enable the image module. |
t | boolean | Enable the joystick module. |
t | boolean | Enable the keyboard module. |
t | boolean | Enable the math module. |
t | boolean | Enable the mouse module. |
t | boolean | Enable the physics module. |
t | boolean | Enable the sound module. |
t | boolean | Enable the system module. |
t | boolean | Enable the timer module. |
t | boolean | Enable the touch module. |
t | boolean | Enable the video module. |
t | boolean | Enable the window module. |
t | boolean | Enable the thread module. |
Callback function triggered when a directory is dragged and dropped onto the window.
love.directorydropped( path )
path | string | The full platform-dependent path to the directory. It can be used as an argument to love.filesystem.mount, in order to gain read access to the directory with love.filesystem. |
Called when the device display orientation changed, for example, user rotated their phone 180 degrees.
love.displayrotated( index, orientation )
index | number | The index of the display that changed orientation. |
orientation | DisplayOrientation | The new orientation. |
The error handler, used to display error messages.
mainLoop = love.errorhandler( msg )
msg | string | The error message. |
mainLoop | function | Function which handles one frame, including events and rendering, when called. If this is nil then LÖVE exits immediately. |
Callback function triggered when a file is dragged and dropped onto the window.
love.filedropped( file )
file | DroppedFile | The unopened File object representing the file that was dropped. |
Callback function triggered when window receives or loses focus.
love.focus( focus )
focus | boolean | True if the window gains focus, false if it loses focus. |
Called when a Joystick's virtual gamepad axis is moved.
love.gamepadaxis( joystick, axis, value )
joystick | Joystick | The joystick object. |
axis | GamepadAxis | The virtual gamepad axis. |
value | number | The new axis value. |
Called when a Joystick's virtual gamepad button is pressed.
love.gamepadpressed( joystick, button )
joystick | Joystick | The joystick object. |
button | GamepadButton | The virtual gamepad button. |
Called when a Joystick's virtual gamepad button is released.
love.gamepadreleased( joystick, button )
joystick | Joystick | The joystick object. |
button | GamepadButton | The virtual gamepad button. |
Called when a Joystick is connected.
love.joystickadded( joystick )
joystick | Joystick | The newly connected Joystick object. |
Called when a joystick axis moves.
love.joystickaxis( joystick, axis, value )
joystick | Joystick | The joystick object. |
axis | number | The axis number. |
value | number | The new axis value. |
Called when a joystick hat direction changes.
love.joystickhat( joystick, hat, direction )
joystick | Joystick | The joystick object. |
hat | number | The hat number. |
direction | JoystickHat | The new hat direction. |
Called when a joystick button is pressed.
love.joystickpressed( joystick, button )
joystick | Joystick | The joystick object. |
button | number | The button number. |
Called when a joystick button is released.
love.joystickreleased( joystick, button )
joystick | Joystick | The joystick object. |
button | number | The button number. |
Called when a Joystick is disconnected.
love.joystickremoved( joystick )
joystick | Joystick | The now-disconnected Joystick object. |
Callback function triggered when a key is pressed.
love.keypressed( key, scancode, isrepeat )
key | KeyConstant | Character of the pressed key. |
scancode | Scancode | The scancode representing the pressed key. |
isrepeat | boolean | Whether this keypress event is a repeat. The delay between key repeats depends on the user's system settings. |
love.keypressed( key, isrepeat )
key | KeyConstant | Character of the key pressed. |
isrepeat | boolean | Whether this keypress event is a repeat. The delay between key repeats depends on the user's system settings. |
Callback function triggered when a key is pressed.
love.keypressed( key, scancode, isrepeat )
key | KeyConstant | Character of the pressed key. |
scancode | Scancode | The scancode representing the pressed key. |
isrepeat | boolean | Whether this keypress event is a repeat. The delay between key repeats depends on the user's system settings. |
love.keypressed( key, isrepeat )
key | KeyConstant | Character of the key pressed. |
isrepeat | boolean | Whether this keypress event is a repeat. The delay between key repeats depends on the user's system settings. |
Callback function triggered when a keyboard key is released.
love.keyreleased( key, scancode )
key | KeyConstant | Character of the released key. |
scancode | Scancode | The scancode representing the released key. |
This function is called exactly once at the beginning of the game.
love.load( arg, unfilteredArg )
arg | table | Command-line arguments given to the game. |
unfilteredArg | table | Unfiltered command-line arguments given to the executable (see #Notes). |
Callback function triggered when the system is running out of memory on mobile devices.
Mobile operating systems may forcefully kill the game if it uses too much memory, so any non-critical resource should be removed if possible (by setting all variables referencing the resources to '''nil'''), when this event is triggered. Sounds and images in particular tend to use the most memory.
love.lowmemory()
Callback function triggered when window receives or loses mouse focus.
love.mousefocus( focus )
focus | boolean | Whether the window has mouse focus or not. |
Callback function triggered when the mouse is moved.
love.mousemoved( x, y, dx, dy, istouch )
x | number | The mouse position on the x-axis. |
y | number | The mouse position on the y-axis. |
dx | number | The amount moved along the x-axis since the last time love.mousemoved was called. |
dy | number | The amount moved along the y-axis since the last time love.mousemoved was called. |
istouch | boolean | True if the mouse button press originated from a touchscreen touch-press. |
Callback function triggered when a mouse button is pressed.
love.mousepressed( x, y, button, istouch, presses )
x | number | Mouse x position, in pixels. |
y | number | Mouse y position, in pixels. |
button | number | The button index that was pressed. 1 is the primary mouse button, 2 is the secondary mouse button and 3 is the middle button. Further buttons are mouse dependent. |
istouch | boolean | True if the mouse button press originated from a touchscreen touch-press. |
presses | number | The number of presses in a short time frame and small area, used to simulate double, triple clicks |
Callback function triggered when a mouse button is released.
love.mousereleased( x, y, button, istouch, presses )
x | number | Mouse x position, in pixels. |
y | number | Mouse y position, in pixels. |
button | number | The button index that was released. 1 is the primary mouse button, 2 is the secondary mouse button and 3 is the middle button. Further buttons are mouse dependent. |
istouch | boolean | True if the mouse button release originated from a touchscreen touch-release. |
presses | number | The number of presses in a short time frame and small area, used to simulate double, triple clicks |
Callback function triggered when the game is closed.
r = love.quit()
r | boolean | Abort quitting. If true, do not close the game. |
Called when the window is resized, for example if the user resizes the window, or if love.window.setMode is called with an unsupported width or height in fullscreen and the window chooses the closest appropriate size.
love.resize( w, h )
w | number | The new width. |
h | number | The new height. |
The main function, containing the main loop. A sensible default is used when left out.
mainLoop = love.run()
mainLoop | function | Function which handlers one frame, including events and rendering when called. |
Called when the candidate text for an IME (Input Method Editor) has changed.
The candidate text is not the final text that the user will eventually choose. Use love.textinput for that.
love.textedited( text, start, length )
text | string | The UTF-8 encoded unicode candidate text. |
start | number | The start cursor of the selected candidate text. |
length | number | The length of the selected candidate text. May be 0. |
Called when text has been entered by the user. For example if shift-2 is pressed on an American keyboard layout, the text '@' will be generated.
love.textinput( text )
text | string | The UTF-8 encoded unicode text. |
Callback function triggered when a Thread encounters an error.
love.threaderror( thread, errorstr )
thread | Thread | The thread which produced the error. |
errorstr | string | The error message. |
Callback function triggered when a touch press moves inside the touch screen.
love.touchmoved( id, x, y, dx, dy, pressure )
id | light userdata | The identifier for the touch press. |
x | number | The x-axis position of the touch inside the window, in pixels. |
y | number | The y-axis position of the touch inside the window, in pixels. |
dx | number | The x-axis movement of the touch inside the window, in pixels. |
dy | number | The y-axis movement of the touch inside the window, in pixels. |
pressure | number | The amount of pressure being applied. Most touch screens aren't pressure sensitive, in which case the pressure will be 1. |
Callback function triggered when the touch screen is touched.
love.touchpressed( id, x, y, dx, dy, pressure )
id | light userdata | The identifier for the touch press. |
x | number | The x-axis position of the touch press inside the window, in pixels. |
y | number | The y-axis position of the touch press inside the window, in pixels. |
dx | number | The x-axis movement of the touch press inside the window, in pixels. This should always be zero. |
dy | number | The y-axis movement of the touch press inside the window, in pixels. This should always be zero. |
pressure | number | The amount of pressure being applied. Most touch screens aren't pressure sensitive, in which case the pressure will be 1. |
Callback function triggered when the touch screen stops being touched.
love.touchreleased( id, x, y, dx, dy, pressure )
id | light userdata | The identifier for the touch press. |
x | number | The x-axis position of the touch inside the window, in pixels. |
y | number | The y-axis position of the touch inside the window, in pixels. |
dx | number | The x-axis movement of the touch inside the window, in pixels. |
dy | number | The y-axis movement of the touch inside the window, in pixels. |
pressure | number | The amount of pressure being applied. Most touch screens aren't pressure sensitive, in which case the pressure will be 1. |
Callback function used to update the state of the game every frame.
love.update( dt )
dt | number | Time since the last update in seconds. |
Callback function triggered when window is minimized/hidden or unminimized by the user.
love.visible( visible )
visible | boolean | True if the window is visible, false if it isn't. |
Callback function triggered when the mouse wheel is moved.
love.wheelmoved( x, y )
x | number | Amount of horizontal mouse wheel movement. Positive values indicate movement to the right. |
y | number | Amount of vertical mouse wheel movement. Positive values indicate upward movement. |
Data:getFFIPointer
Gets an FFI pointer to the Data.
This function should be preferred instead of Data:getPointer because the latter uses light userdata which can't store more all possible memory addresses on some new ARM64 architectures, when LuaJIT is used.
pointer = Data:getFFIPointer()
pointer | cdata | A raw void* pointer to the Data, or nil if FFI is unavailable. |
Data:getPointer
Gets a pointer to the Data. Can be used with libraries such as LuaJIT's FFI.
pointer = Data:getPointer()
pointer | light userdata | A raw pointer to the Data. |
Object:release
Destroys the object's Lua reference. The object will be completely deleted if it's not referenced by any other LÖVE object or thread.
This method can be used to immediately clean up resources without waiting for Lua's garbage collector.
success = Object:release()
success | boolean | True if the object was released by this call, false if it had been previously released. |
Object:type
Gets the type of the object as a string.
type = Object:type()
type | string | The type as a string. |
Object:typeOf
Checks whether an object is of a certain type. If the object has the type with the specified name in its hierarchy, this function will return true.
b = Object:typeOf( name )
name | string | The name of the type to check for. |
b | boolean | True if the object is of the specified type, false otherwise. |
Gets a list of the names of the currently enabled effects.
effects = love.audio.getActiveEffects()
effects | table | The list of the names of the currently enabled effects. |
love.audio.getActiveSourceCount
Gets the current number of simultaneously playing sources.
count = love.audio.getActiveSourceCount()
count | number | The current number of simultaneously playing sources. |
Returns the distance attenuation model.
model = love.audio.getDistanceModel()
model | DistanceModel | The current distance model. The default is 'inverseclamped'. |
Gets the current global scale factor for velocity-based doppler effects.
scale = love.audio.getDopplerScale()
scale | number | The current doppler scale factor. |
Gets the settings associated with an effect.
settings = love.audio.getEffect( name )
name | string | The name of the effect. |
settings | table | The settings associated with the effect. |
Gets the maximum number of active effects supported by the system.
maximum = love.audio.getMaxSceneEffects()
maximum | number | The maximum number of active effects. |
love.audio.getMaxSourceEffects
Gets the maximum number of active Effects in a single Source object, that the system can support.
maximum = love.audio.getMaxSourceEffects()
maximum | number | The maximum number of active Effects per Source. |
Returns the orientation of the listener.
fx, fy, fz, ux, uy, uz = love.audio.getOrientation()
fx | number | Forward x of the listener orientation. |
fy | number | Forward y of the listener orientation. |
fz | number | Forward z of the listener orientation. |
ux | number | Up x of the listener orientation. |
uy | number | Up y of the listener orientation. |
uz | number | Up z of the listener orientation. |
Returns the position of the listener. Please note that positional audio only works for mono (i.e. non-stereo) sources.
x, y, z = love.audio.getPosition()
x | number | The X position of the listener. |
y | number | The Y position of the listener. |
z | number | The Z position of the listener. |
love.audio.getRecordingDevices
Gets a list of RecordingDevices on the system.
The first device in the list is the user's default recording device. The list may be empty if there are no microphones connected to the system.
Audio recording is currently not supported on iOS.
devices = love.audio.getRecordingDevices()
devices | table | The list of connected recording devices. |
Returns the velocity of the listener.
x, y, z = love.audio.getVelocity()
x | number | The X velocity of the listener. |
y | number | The Y velocity of the listener. |
z | number | The Z velocity of the listener. |
Returns the master volume.
volume = love.audio.getVolume()
volume | number | The current master volume |
Gets whether audio effects are supported in the system.
supported = love.audio.isEffectsSupported()
supported | boolean | True if effects are supported, false otherwise. |
Creates a new Source usable for real-time generated sound playback with Source:queue.
source = love.audio.newQueueableSource( samplerate, bitdepth, channels, buffercount )
samplerate | number | Number of samples per second when playing. |
bitdepth | number | Bits per sample (8 or 16). |
channels | number | 1 for mono or 2 for stereo. |
buffercount (0) | number | The number of buffers that can be queued up at any given time with Source:queue. Cannot be greater than 64. A sensible default (~8) is chosen if no value is specified. |
source | Source | The new Source usable with Source:queue. |
Creates a new Source from a filepath, File, Decoder or SoundData.
Sources created from SoundData are always static.
source = love.audio.newSource( filename, type )
filename | string | The filepath to the audio file. |
type | SourceType | Streaming or static source. |
source | Source | A new Source that can play the specified audio. |
source = love.audio.newSource( file, type )
file | File | A File pointing to an audio file. |
type | SourceType | Streaming or static source. |
source | Source | A new Source that can play the specified audio. |
source = love.audio.newSource( decoder, type )
decoder | Decoder | The Decoder to create a Source from. |
type | SourceType | Streaming or static source. |
source | Source | A new Source that can play the specified audio. |
source = love.audio.newSource( data, type )
data | FileData | The FileData to create a Source from. |
type | SourceType | Streaming or static source. |
source | Source | A new Source that can play the specified audio. |
source = love.audio.newSource( data )
data | SoundData | The SoundData to create a Source from. |
source | Source | A new Source that can play the specified audio. The SourceType of the returned audio is 'static'. |
Pauses specific or all currently played Sources.
Sources = love.audio.pause()
Sources | table | A table containing a list of Sources that were paused by this call. |
love.audio.pause( source, ... )
source | Source | The first Source to pause. |
... | Source | Additional Sources to pause. |
love.audio.pause( sources )
sources | table | A table containing a list of Sources to pause. |
Plays the specified Source.
love.audio.play( source )
source | Source | The Source to play. |
love.audio.play( sources )
sources | table | Table containing a list of Sources to play. |
love.audio.play( source1, source2, ... )
source1 | Source | The first Source to play. |
source2 | Source | The second Source to play. |
... | Source | Additional Sources to play. |
Sets the distance attenuation model.
love.audio.setDistanceModel( model )
model | DistanceModel | The new distance model. |
Sets a global scale factor for velocity-based doppler effects. The default scale value is 1.
love.audio.setDopplerScale( scale )
scale | number | The new doppler scale factor. The scale must be greater than 0. |
Defines an effect that can be applied to a Source.
Not all system supports audio effects. Use love.audio.isEffectsSupported to check.
success = love.audio.setEffect( name, settings )
name | string | The name of the effect. |
settings | table | The settings to use for this effect, with the following fields: |
settings | EffectType | The type of effect to use. |
settings | number | The volume of the effect. |
settings | number | Effect-specific settings. See EffectType for available effects and their corresponding settings. |
success | boolean | Whether the effect was successfully created. |
success = love.audio.setEffect( name, enabled )
name | string | The name of the effect. |
enabled (true) | boolean | If false and the given effect name was previously set, disables the effect. |
success | boolean | Whether the effect was successfully disabled. |
Sets whether the system should mix the audio with the system's audio.
success = love.audio.setMixWithSystem( mix )
mix | boolean | True to enable mixing, false to disable it. |
success | boolean | True if the change succeeded, false otherwise. |
Sets the orientation of the listener.
love.audio.setOrientation( fx, fy, fz, ux, uy, uz )
fx, fy, fz | number | Forward vector of the listener orientation. |
ux, uy, uz | number | Up vector of the listener orientation. |
Sets the position of the listener, which determines how sounds play.
love.audio.setPosition( x, y, z )
x | number | The x position of the listener. |
y | number | The y position of the listener. |
z | number | The z position of the listener. |
Sets the velocity of the listener.
love.audio.setVelocity( x, y, z )
x | number | The X velocity of the listener. |
y | number | The Y velocity of the listener. |
z | number | The Z velocity of the listener. |
Sets the master volume.
love.audio.setVolume( volume )
volume | number | 1.0 is max and 0.0 is off. |
Stops currently played sources.
love.audio.stop()
love.audio.stop( source )
source | Source | The source on which to stop the playback. |
love.audio.stop( source1, source2, ... )
source1 | Source | The first Source to stop. |
source2 | Source | The second Source to stop. |
... | Source | Additional Sources to stop. |
love.audio.stop( sources )
sources | table | A table containing a list of Sources to stop. |
Gets the number of bits per sample in the data currently being recorded.
bits = RecordingDevice:getBitDepth()
bits | number | The number of bits per sample in the data that's currently being recorded. |
RecordingDevice:getChannelCount
Gets the number of channels currently being recorded (mono or stereo).
channels = RecordingDevice:getChannelCount()
channels | number | The number of channels being recorded (1 for mono, 2 for stereo). |
Gets all recorded audio SoundData stored in the device's internal ring buffer.
The internal ring buffer is cleared when this function is called, so calling it again will only get audio recorded after the previous call. If the device's internal ring buffer completely fills up before getData is called, the oldest data that doesn't fit into the buffer will be lost.
data = RecordingDevice:getData()
data | SoundData | The recorded audio data, or nil if the device isn't recording. |
Gets the name of the recording device.
name = RecordingDevice:getName()
name | string | The name of the device. |
RecordingDevice:getSampleCount
Gets the number of currently recorded samples.
samples = RecordingDevice:getSampleCount()
samples | number | The number of samples that have been recorded so far. |
Gets the number of samples per second currently being recorded.
rate = RecordingDevice:getSampleRate()
rate | number | The number of samples being recorded per second (sample rate). |
Gets whether the device is currently recording.
recording = RecordingDevice:isRecording()
recording | boolean | True if the recording, false otherwise. |
Begins recording audio using this device.
success = RecordingDevice:start( samplecount, samplerate, bitdepth, channels )
samplecount | number | The maximum number of samples to store in an internal ring buffer when recording. RecordingDevice:getData clears the internal buffer when called. |
samplerate (8000) | number | The number of samples per second to store when recording. |
bitdepth (16) | number | The number of bits per sample. |
channels (1) | number | Whether to record in mono or stereo. Most microphones don't support more than 1 channel. |
success | boolean | True if the device successfully began recording using the specified parameters, false if not. |
Stops recording audio from this device. Any sound data currently in the device's buffer will be returned.
data = RecordingDevice:stop()
data | SoundData | The sound data currently in the device's buffer, or nil if the device wasn't recording. |
Creates an identical copy of the Source in the stopped state.
Static Sources will use significantly less memory and take much less time to be created if Source:clone is used to create them instead of love.audio.newSource, so this method should be preferred when making multiple Sources which play the same sound.
source = Source:clone()
source | Source | The new identical copy of this Source. |
Gets a list of the Source's active effect names.
effects = Source:getActiveEffects()
effects | table | A list of the source's active effect names. |
Gets the amount of air absorption applied to the Source.
By default the value is set to 0 which means that air absorption effects are disabled. A value of 1 will apply high frequency attenuation to the Source at a rate of 0.05 dB per meter.
amount = Source:getAirAbsorption()
amount | number | The amount of air absorption applied to the Source. |
Source:getAttenuationDistances
Gets the reference and maximum attenuation distances of the Source. The values, combined with the current DistanceModel, affect how the Source's volume attenuates based on distance from the listener.
ref, max = Source:getAttenuationDistances()
ref | number | The current reference attenuation distance. If the current DistanceModel is clamped, this is the minimum distance before the Source is no longer attenuated. |
max | number | The current maximum attenuation distance. |
Gets the number of channels in the Source. Only 1-channel (mono) Sources can use directional and positional effects.
channels = Source:getChannelCount()
channels | number | 1 for mono, 2 for stereo. |
Gets the Source's directional volume cones. Together with Source:setDirection, the cone angles allow for the Source's volume to vary depending on its direction.
innerAngle, outerAngle, outerVolume = Source:getCone()
innerAngle | number | The inner angle from the Source's direction, in radians. The Source will play at normal volume if the listener is inside the cone defined by this angle. |
outerAngle | number | The outer angle from the Source's direction, in radians. The Source will play at a volume between the normal and outer volumes, if the listener is in between the cones defined by the inner and outer angles. |
outerVolume | number | The Source's volume when the listener is outside both the inner and outer cone angles. |
Gets the direction of the Source.
x, y, z = Source:getDirection()
x | number | The X part of the direction vector. |
y | number | The Y part of the direction vector. |
z | number | The Z part of the direction vector. |
Gets the duration of the Source. For streaming Sources it may not always be sample-accurate, and may return -1 if the duration cannot be determined at all.
duration = Source:getDuration( unit )
unit ('seconds') | TimeUnit | The time unit for the return value. |
duration | number | The duration of the Source, or -1 if it cannot be determined. |
Gets the filter settings associated to a specific effect.
This function returns nil if the effect was applied with no filter settings associated to it.
filtersettings = Source:getEffect( name, filtersettings )
name | string | The name of the effect. |
filtersettings ({}) | table | An optional empty table that will be filled with the filter settings. |
filtersettings | table | The settings for the filter associated to this effect, or nil if the effect is not present in this Source or has no filter associated. The table has the following fields: |
filtersettings | number | The overall volume of the audio. |
filtersettings | number | Volume of high-frequency audio. Only applies to low-pass and band-pass filters. |
filtersettings | number | Volume of low-frequency audio. Only applies to high-pass and band-pass filters. |
Gets the filter settings currently applied to the Source.
settings = Source:getFilter()
settings | table | The filter settings to use for this Source, or nil if the Source has no active filter. The table has the following fields: |
settings | FilterType | The type of filter to use. |
settings | number | The overall volume of the audio. |
settings | number | Volume of high-frequency audio. Only applies to low-pass and band-pass filters. |
settings | number | Volume of low-frequency audio. Only applies to high-pass and band-pass filters. |
Gets the number of free buffer slots in a queueable Source. If the queueable Source is playing, this value will increase up to the amount the Source was created with. If the queueable Source is stopped, it will process all of its internal buffers first, in which case this function will always return the amount it was created with.
buffers = Source:getFreeBufferCount()
buffers | number | How many more SoundData objects can be queued up. |
Gets the current pitch of the Source.
pitch = Source:getPitch()
pitch | number | The pitch, where 1.0 is normal. |
Gets the position of the Source.
x, y, z = Source:getPosition()
x | number | The X position of the Source. |
y | number | The Y position of the Source. |
z | number | The Z position of the Source. |
Returns the rolloff factor of the source.
rolloff = Source:getRolloff()
rolloff | number | The rolloff factor. |
Gets the type of the Source.
sourcetype = Source:getType()
sourcetype | SourceType | The type of the source. |
Gets the velocity of the Source.
x, y, z = Source:getVelocity()
x | number | The X part of the velocity vector. |
y | number | The Y part of the velocity vector. |
z | number | The Z part of the velocity vector. |
Gets the current volume of the Source.
volume = Source:getVolume()
volume | number | The volume of the Source, where 1.0 is normal volume. |
Returns the volume limits of the source.
min, max = Source:getVolumeLimits()
min | number | The minimum volume. |
max | number | The maximum volume. |
Returns whether the Source will loop.
loop = Source:isLooping()
loop | boolean | True if the Source will loop, false otherwise. |
Returns whether the Source is playing.
playing = Source:isPlaying()
playing | boolean | True if the Source is playing, false otherwise. |
Gets whether the Source's position, velocity, direction, and cone angles are relative to the listener.
relative = Source:isRelative()
relative | boolean | True if the position, velocity, direction and cone angles are relative to the listener, false if they're absolute. |
Starts playing the Source.
success = Source:play()
success | boolean | Whether the Source was able to successfully start playing. |
Queues SoundData for playback in a queueable Source.
This method requires the Source to be created via love.audio.newQueueableSource.
success = Source:queue( sounddata )
sounddata | SoundData | The data to queue. The SoundData's sample rate, bit depth, and channel count must match the Source's. |
success | boolean | True if the data was successfully queued for playback, false if there were no available buffers to use for queueing. |
Sets the currently playing position of the Source.
Source:seek( offset, unit )
offset | number | The position to seek to. |
unit ('seconds') | TimeUnit | The unit of the position value. |
Sets the amount of air absorption applied to the Source.
By default the value is set to 0 which means that air absorption effects are disabled. A value of 1 will apply high frequency attenuation to the Source at a rate of 0.05 dB per meter.
Air absorption can simulate sound transmission through foggy air, dry air, smoky atmosphere, etc. It can be used to simulate different atmospheric conditions within different locations in an area.
Source:setAirAbsorption( amount )
amount | number | The amount of air absorption applied to the Source. Must be between 0 and 10. |
Source:setAttenuationDistances
Sets the reference and maximum attenuation distances of the Source. The parameters, combined with the current DistanceModel, affect how the Source's volume attenuates based on distance.
Distance attenuation is only applicable to Sources based on mono (rather than stereo) audio.
Source:setAttenuationDistances( ref, max )
ref | number | The new reference attenuation distance. If the current DistanceModel is clamped, this is the minimum attenuation distance. |
max | number | The new maximum attenuation distance. |
Sets the Source's directional volume cones. Together with Source:setDirection, the cone angles allow for the Source's volume to vary depending on its direction.
Source:setCone( innerAngle, outerAngle, outerVolume )
innerAngle | number | The inner angle from the Source's direction, in radians. The Source will play at normal volume if the listener is inside the cone defined by this angle. |
outerAngle | number | The outer angle from the Source's direction, in radians. The Source will play at a volume between the normal and outer volumes, if the listener is in between the cones defined by the inner and outer angles. |
outerVolume (0) | number | The Source's volume when the listener is outside both the inner and outer cone angles. |
Sets the direction vector of the Source. A zero vector makes the source non-directional.
Source:setDirection( x, y, z )
x | number | The X part of the direction vector. |
y | number | The Y part of the direction vector. |
z | number | The Z part of the direction vector. |
Applies an audio effect to the Source.
The effect must have been previously defined using love.audio.setEffect.
success = Source:setEffect( name, enable )
name | string | The name of the effect previously set up with love.audio.setEffect. |
enable (true) | boolean | If false and the given effect name was previously enabled on this Source, disables the effect. |
success | boolean | Whether the effect was successfully applied to this Source. |
success = Source:setEffect( name, filtersettings )
name | string | The name of the effect previously set up with love.audio.setEffect. |
filtersettings | table | The filter settings to apply prior to the effect, with the following fields: |
filtersettings | FilterType | The type of filter to use. |
filtersettings | number | The overall volume of the audio. Must be between 0 and 1. |
filtersettings | number | Volume of high-frequency audio. Only applies to low-pass and band-pass filters. Must be between 0 and 1. |
filtersettings | number | Volume of low-frequency audio. Only applies to high-pass and band-pass filters. Must be between 0 and 1. |
success | boolean | Whether the effect and filter were successfully applied to this Source. |
Sets a low-pass, high-pass, or band-pass filter to apply when playing the Source.
success = Source:setFilter( settings )
settings | table | The filter settings to use for this Source, with the following fields: |
settings | FilterType | The type of filter to use. |
settings | number | The overall volume of the audio. Must be between 0 and 1. |
settings | number | Volume of high-frequency audio. Only applies to low-pass and band-pass filters. Must be between 0 and 1. |
settings | number | Volume of low-frequency audio. Only applies to high-pass and band-pass filters. Must be between 0 and 1. |
success | boolean | Whether the filter was successfully applied to the Source. |
Source:setFilter()
Sets whether the Source should loop.
Source:setLooping( loop )
loop | boolean | True if the source should loop, false otherwise. |
Sets the pitch of the Source.
Source:setPitch( pitch )
pitch | number | Calculated with regard to 1 being the base pitch. Each reduction by 50 percent equals a pitch shift of -12 semitones (one octave reduction). Each doubling equals a pitch shift of 12 semitones (one octave increase). Zero is not a legal value. |
Sets the position of the Source. Please note that this only works for mono (i.e. non-stereo) sound files!
Source:setPosition( x, y, z )
x | number | The X position of the Source. |
y | number | The Y position of the Source. |
z | number | The Z position of the Source. |
Sets whether the Source's position, velocity, direction, and cone angles are relative to the listener, or absolute.
By default, all sources are absolute and therefore relative to the origin of love's coordinate system 0, 0. Only absolute sources are affected by the position of the listener. Please note that positional audio only works for mono (i.e. non-stereo) sources.
Source:setRelative( enable )
enable (false) | boolean | True to make the position, velocity, direction and cone angles relative to the listener, false to make them absolute. |
Sets the rolloff factor which affects the strength of the used distance attenuation.
Extended information and detailed formulas can be found in the chapter '3.4. Attenuation By Distance' of OpenAL 1.1 specification.
Source:setRolloff( rolloff )
rolloff | number | The new rolloff factor. |
Sets the velocity of the Source.
This does '''not''' change the position of the Source, but lets the application know how it has to calculate the doppler effect.
Source:setVelocity( x, y, z )
x | number | The X part of the velocity vector. |
y | number | The Y part of the velocity vector. |
z | number | The Z part of the velocity vector. |
Sets the current volume of the Source.
Source:setVolume( volume )
volume | number | The volume for a Source, where 1.0 is normal volume. Volume cannot be raised above 1.0. |
Sets the volume limits of the source. The limits have to be numbers from 0 to 1.
Source:setVolumeLimits( min, max )
min | number | The minimum volume. |
max | number | The maximum volume. |
Gets the currently playing position of the Source.
position = Source:tell( unit )
unit ('seconds') | TimeUnit | The type of unit for the return value. |
position | number | The currently playing position of the Source. |
none
Sources do not get attenuated.
inverse
Inverse distance attenuation.
inverseclamped
Inverse distance attenuation. Gain is clamped. In version 0.9.2 and older this is named '''inverse clamped'''.
linear
Linear attenuation.
linearclamped
Linear attenuation. Gain is clamped. In version 0.9.2 and older this is named '''linear clamped'''.
exponent
Exponential attenuation.
exponentclamped
Exponential attenuation. Gain is clamped. In version 0.9.2 and older this is named '''exponent clamped'''.
chorus
Plays multiple copies of the sound with slight pitch and time variation. Used to make sounds sound "fuller" or "thicker".
compressor
Decreases the dynamic range of the sound, making the loud and quiet parts closer in volume, producing a more uniform amplitude throughout time.
distortion
Alters the sound by amplifying it until it clips, shearing off parts of the signal, leading to a compressed and distorted sound.
echo
Decaying feedback based effect, on the order of seconds. Also known as delay; causes the sound to repeat at regular intervals at a decreasing volume.
equalizer
Adjust the frequency components of the sound using a 4-band (low-shelf, two band-pass and a high-shelf) equalizer.
flanger
Plays two copies of the sound; while varying the phase, or equivalently delaying one of them, by amounts on the order of milliseconds, resulting in phasing sounds.
reverb
Decaying feedback based effect, on the order of milliseconds. Used to simulate the reflection off of the surroundings.
ringmodulator
An implementation of amplitude modulation; multiplies the source signal with a simple waveform, to produce either volume changes, or inharmonic overtones.
sawtooth
A sawtooth wave, also known as a ramp wave. Named for its linear rise, and (near-)instantaneous fall along time.
sine
A sine wave. Follows a trigonometric sine function.
square
A square wave. Switches between high and low states (near-)instantaneously.
triangle
A triangle wave. Follows a linear rise and fall that repeats periodically.
lowpass
Low-pass filter. High frequency sounds are attenuated.
highpass
High-pass filter. Low frequency sounds are attenuated.
bandpass
Band-pass filter. Both high and low frequency sounds are attenuated based on the given parameters.
static
The whole audio is decoded.
stream
The audio is decoded in chunks when needed.
queue
The audio must be manually queued by the user.
Compresses a string or data using a specific compression algorithm.
compressedData = love.data.compress( container, format, rawstring, level )
container | ContainerType | What type to return the compressed data as. |
format | CompressedDataFormat | The format to use when compressing the string. |
rawstring | string | The raw (un-compressed) string to compress. |
level (-1) | number | The level of compression to use, between 0 and 9. -1 indicates the default level. The meaning of this argument depends on the compression format being used. |
compressedData | CompressedData or string | CompressedData/string which contains the compressed version of rawstring. |
compressedData = love.data.compress( container, format, data, level )
container | ContainerType | What type to return the compressed data as. |
format | CompressedDataFormat | The format to use when compressing the data. |
data | Data | A Data object containing the raw (un-compressed) data to compress. |
level (-1) | number | The level of compression to use, between 0 and 9. -1 indicates the default level. The meaning of this argument depends on the compression format being used. |
compressedData | CompressedData or string | CompressedData/string which contains the compressed version of data. |
Decode Data or a string from any of the EncodeFormats to Data or string.
decoded = love.data.decode( container, format, sourceString )
container | ContainerType | What type to return the decoded data as. |
format | EncodeFormat | The format of the input data. |
sourceString | string | The raw (encoded) data to decode. |
decoded | ByteData or string | ByteData/string which contains the decoded version of source. |
decoded = love.data.decode( container, format, sourceData )
container | ContainerType | What type to return the decoded data as. |
format | EncodeFormat | The format of the input data. |
sourceData | Data | The raw (encoded) data to decode. |
decoded | ByteData or string | ByteData/string which contains the decoded version of source. |
Decompresses a CompressedData or previously compressed string or Data object.
decompressedData = love.data.decompress( container, compressedData )
container | ContainerType | What type to return the decompressed data as. |
compressedData | CompressedData | The compressed data to decompress. |
decompressedData | Data or string | Data/string containing the raw decompressed data. |
decompressedData = love.data.decompress( container, format, compressedString )
container | ContainerType | What type to return the decompressed data as. |
format | CompressedDataFormat | The format that was used to compress the given string. |
compressedString | string | A string containing data previously compressed with love.data.compress. |
decompressedData | Data or string | Data/string containing the raw decompressed data. |
decompressedData = love.data.decompress( container, format, data )
container | ContainerType | What type to return the decompressed data as. |
format | CompressedDataFormat | The format that was used to compress the given data. |
data | Data | A Data object containing data previously compressed with love.data.compress. |
decompressedData | Data or string | Data/string containing the raw decompressed data. |
Encode Data or a string to a Data or string in one of the EncodeFormats.
encoded = love.data.encode( container, format, sourceString, linelength )
container | ContainerType | What type to return the encoded data as. |
format | EncodeFormat | The format of the output data. |
sourceString | string | The raw data to encode. |
linelength (0) | number | The maximum line length of the output. Only supported for base64, ignored if 0. |
encoded | ByteData or string | ByteData/string which contains the encoded version of source. |
encoded = love.data.encode( container, format, sourceData, linelength )
container | ContainerType | What type to return the encoded data as. |
format | EncodeFormat | The format of the output data. |
sourceData | Data | The raw data to encode. |
linelength (0) | number | The maximum line length of the output. Only supported for base64, ignored if 0. |
encoded | ByteData or string | ByteData/string which contains the encoded version of source. |
Gets the size in bytes that a given format used with love.data.pack will use.
This function behaves the same as Lua 5.3's string.packsize.
size = love.data.getPackedSize( format )
format | string | A string determining how the values are packed. Follows the rules of Lua 5.3's string.pack format strings. |
size | number | The size in bytes that the packed data will use. |
Compute the message digest of a string using a specified hash algorithm.
rawdigest = love.data.hash( hashFunction, string )
hashFunction | HashFunction | Hash algorithm to use. |
string | string | String to hash. |
rawdigest | string | Raw message digest string. |
rawdigest = love.data.hash( hashFunction, data )
hashFunction | HashFunction | Hash algorithm to use. |
data | Data | Data to hash. |
rawdigest | string | Raw message digest string. |
Creates a new Data object containing arbitrary bytes.
Data:getPointer along with LuaJIT's FFI can be used to manipulate the contents of the ByteData object after it has been created.
bytedata = love.data.newByteData( datastring )
datastring | string | The byte string to copy. |
bytedata | ByteData | The new Data object. |
bytedata = love.data.newByteData( Data, offset, size )
Data | Data | The existing Data object to copy. |
offset (0) | number | The offset of the subsection to copy, in bytes. |
size (data:getSize()) | number | The size in bytes of the new Data object. |
bytedata | ByteData | The new Data object. |
bytedata = love.data.newByteData( size )
size | number | The size in bytes of the new Data object. |
bytedata | ByteData | The new Data object. |
Creates a new Data referencing a subsection of an existing Data object.
view = love.data.newDataView( data, offset, size )
data | Data | The Data object to reference. |
offset | number | The offset of the subsection to reference, in bytes. |
size | number | The size in bytes of the subsection to reference. |
view | Data | The new Data view. |
Packs (serializes) simple Lua values.
This function behaves the same as Lua 5.3's string.pack.
data = love.data.pack( container, format, v1, ... )
container | ContainerType | What type to return the encoded data as. |
format | string | A string determining how the values are packed. Follows the rules of Lua 5.3's string.pack format strings. |
v1 | number or boolean or string | The first value (number, boolean, or string) to serialize. |
... | number or boolean or string | Additional values to serialize. |
data | Data or string | Data/string which contains the serialized data. |
Unpacks (deserializes) a byte-string or Data into simple Lua values.
This function behaves the same as Lua 5.3's string.unpack.
v1, ..., index = love.data.unpack( format, datastring, pos )
format | string | A string determining how the values were packed. Follows the rules of Lua 5.3's string.pack format strings. |
datastring | string | A string containing the packed (serialized) data. |
pos (1) | number | Where to start reading in the string. Negative values can be used to read relative from the end of the string. |
v1 | number or boolean or string | The first value (number, boolean, or string) that was unpacked. |
... | number or boolean or string | Additional unpacked values. |
index | number | The index of the first unread byte in the data string. |
v1, ..., index = love.data.unpack( format, data, pos )
format | string | A string determining how the values were packed. Follows the rules of Lua 5.3's string.pack format strings. |
data | Data | A Data object containing the packed (serialized) data. |
pos (1) | number | 1-based index indicating where to start reading in the Data. Negative values can be used to read relative from the end of the Data object. |
v1 | number or boolean or string | The first value (number, boolean, or string) that was unpacked. |
... | number or boolean or string | Additional unpacked values. |
index | number | The 1-based index of the first unread byte in the Data. |
Gets the compression format of the CompressedData.
format = CompressedData:getFormat()
format | CompressedDataFormat | The format of the CompressedData. |
lz4
The LZ4 compression format. Compresses and decompresses very quickly, but the compression ratio is not the best. LZ4-HC is used when compression level 9 is specified. Some benchmarks are available here.
zlib
The zlib format is DEFLATE-compressed data with a small bit of header data. Compresses relatively slowly and decompresses moderately quickly, and has a decent compression ratio.
gzip
The gzip format is DEFLATE-compressed data with a slightly larger header than zlib. Since it uses DEFLATE it has the same compression characteristics as the zlib format.
deflate
Raw DEFLATE-compressed data (no header).
base64
Encode/decode data as base64 binary-to-text encoding.
hex
Encode/decode data as hexadecimal string.
md5
MD5 hash algorithm (16 bytes).
sha1
SHA1 hash algorithm (20 bytes).
sha224
SHA2 hash algorithm with message digest size of 224 bits (28 bytes).
sha256
SHA2 hash algorithm with message digest size of 256 bits (32 bytes).
sha384
SHA2 hash algorithm with message digest size of 384 bits (48 bytes).
sha512
SHA2 hash algorithm with message digest size of 512 bits (64 bytes).
Returns an iterator for messages in the event queue.
i = love.event.poll()
i | function | Iterator function usable in a for loop. |
Pump events into the event queue.
This is a low-level function, and is usually not called by the user, but by love.run.
Note that this does need to be called for any OS to think you're still running,
and if you want to handle OS-generated events at all (think callbacks).
love.event.pump()
Adds an event to the event queue.
From 0.10.0 onwards, you may pass an arbitrary amount of arguments with this function, though the default callbacks don't ever use more than six.
love.event.push( n, a, b, c, d, e, f, ... )
n | Event | The name of the event. |
a (nil) | Variant | First event argument. |
b (nil) | Variant | Second event argument. |
c (nil) | Variant | Third event argument. |
d (nil) | Variant | Fourth event argument. |
e (nil) | Variant | Fifth event argument. |
f (nil) | Variant | Sixth event argument. |
... (nil) | Variant | Further event arguments may follow. |
Adds the quit event to the queue.
The quit event is a signal for the event handler to close LÖVE. It's possible to abort the exit process with the love.quit callback.
love.event.quit( exitstatus )
exitstatus (0) | number | The program exit status to use when closing the application. |
love.event.quit( 'restart' )
'restart' | string | Tells the default love.run to exit and restart the game without relaunching the executable. |
Like love.event.poll(), but blocks until there is an event in the queue.
n, a, b, c, d, e, f, ... = love.event.wait()
n | Event | The name of event. |
a | Variant | First event argument. |
b | Variant | Second event argument. |
c | Variant | Third event argument. |
d | Variant | Fourth event argument. |
e | Variant | Fifth event argument. |
f | Variant | Sixth event argument. |
... | Variant | Further event arguments may follow. |
focus
Window focus gained or lost
joystickpressed
Joystick pressed
joystickreleased
Joystick released
keypressed
Key pressed
keyreleased
Key released
mousepressed
Mouse pressed
mousereleased
Mouse released
quit
Quit
resize
Window size changed by the user
visible
Window is minimized or un-minimized by the user
mousefocus
Window mouse focus gained or lost
threaderror
A Lua error has occurred in a thread
joystickadded
Joystick connected
joystickremoved
Joystick disconnected
joystickaxis
Joystick axis motion
joystickhat
Joystick hat pressed
gamepadpressed
Joystick's virtual gamepad button pressed
gamepadreleased
Joystick's virtual gamepad button released
gamepadaxis
Joystick's virtual gamepad axis moved
textinput
User entered text
mousemoved
Mouse position changed
lowmemory
Running out of memory on mobile devices system
textedited
Candidate text for an IME changed
wheelmoved
Mouse wheel moved
touchpressed
Touch screen touched
touchreleased
Touch screen stop touching
touchmoved
Touch press moved inside touch screen
directorydropped
Directory is dragged and dropped onto the window
filedropped
File is dragged and dropped onto the window.
jp
Joystick pressed
jr
Joystick released
kp
Key pressed
kr
Key released
mp
Mouse pressed
mr
Mouse released
q
Quit
f
Window focus gained or lost
Append data to an existing file.
success, errormsg = love.filesystem.append( name, data, size )
name | string | The name (and path) of the file. |
data | string | The string data to append to the file. |
size (all) | number | How many bytes to write. |
success | boolean | True if the operation was successful, or nil if there was an error. |
errormsg | string | The error message on failure. |
success, errormsg = love.filesystem.append( name, data, size )
name | string | The name (and path) of the file. |
data | Data | The Data object to append to the file. |
size (all) | number | How many bytes to write. |
success | boolean | True if the operation was successful, or nil if there was an error. |
errormsg | string | The error message on failure. |
love.filesystem.areSymlinksEnabled
Gets whether love.filesystem follows symbolic links.
enable = love.filesystem.areSymlinksEnabled()
enable | boolean | Whether love.filesystem follows symbolic links. |
love.filesystem.createDirectory
Recursively creates a directory.
When called with 'a/b' it creates both 'a' and 'a/b', if they don't exist already.
success = love.filesystem.createDirectory( name )
name | string | The directory to create. |
success | boolean | True if the directory was created, false if not. |
love.filesystem.getAppdataDirectory
Returns the application data directory (could be the same as getUserDirectory)
path = love.filesystem.getAppdataDirectory()
path | string | The path of the application data directory |
love.filesystem.getCRequirePath
Gets the filesystem paths that will be searched for c libraries when require is called.
The paths string returned by this function is a sequence of path templates separated by semicolons. The argument passed to ''require'' will be inserted in place of any question mark ('?') character in each template (after the dot characters in the argument passed to ''require'' are replaced by directory separators.) Additionally, any occurrence of a double question mark ('??') will be replaced by the name passed to require and the default library extension for the platform.
The paths are relative to the game's source and save directories, as well as any paths mounted with love.filesystem.mount.
paths = love.filesystem.getCRequirePath()
paths | string | The paths that the ''require'' function will check for c libraries in love's filesystem. |
love.filesystem.getDirectoryItems
Returns a table with the names of files and subdirectories in the specified path. The table is not sorted in any way; the order is undefined.
If the path passed to the function exists in the game and the save directory, it will list the files and directories from both places.
files = love.filesystem.getDirectoryItems( dir )
dir | string | The directory. |
files | table | A sequence with the names of all files and subdirectories as strings. |
files = love.filesystem.getDirectoryItems( dir, callback )
dir | string | The directory. |
callback | function | A function which is called for each file and folder in the directory. The filename is passed to the function as an argument. |
files | table | A sequence with the names of all files and subdirectories as strings. |
Gets the write directory name for your game.
Note that this only returns the name of the folder to store your files in, not the full path.
name = love.filesystem.getIdentity()
name | string | The identity that is used as write directory. |
Gets information about the specified file or directory.
info = love.filesystem.getInfo( path, filtertype )
path | string | The file or directory path to check. |
filtertype (nil) | FileType | If supplied, this parameter causes getInfo to only return the info table if the item at the given path matches the specified file type. |
info | table | A table containing information about the specified path, or nil if nothing exists at the path. The table contains the following fields: |
info | FileType | The type of the object at the path (file, directory, symlink, etc.) |
info | number | The size in bytes of the file, or nil if it can't be determined. |
info | number | The file's last modification time in seconds since the unix epoch, or nil if it can't be determined. |
info = love.filesystem.getInfo( path, info )
path | string | The file or directory path to check. |
info | table | A table which will be filled in with info about the specified path. |
info | table | The table given as an argument, or nil if nothing exists at the path. The table will be filled in with the following fields: |
info | FileType | The type of the object at the path (file, directory, symlink, etc.) |
info | number | The size in bytes of the file, or nil if it can't be determined. |
info | number | The file's last modification time in seconds since the unix epoch, or nil if it can't be determined. |
info = love.filesystem.getInfo( path, filtertype, info )
path | string | The file or directory path to check. |
filtertype | FileType | Causes getInfo to only return the info table if the item at the given path matches the specified file type. |
info | table | A table which will be filled in with info about the specified path. |
info | table | The table given as an argument, or nil if nothing exists at the path. The table will be filled in with the following fields: |
info | FileType | The type of the object at the path (file, directory, symlink, etc.) |
info | number | The size in bytes of the file, or nil if it can't be determined. |
info | number | The file's last modification time in seconds since the unix epoch, or nil if it can't be determined. |
love.filesystem.getRealDirectory
Gets the platform-specific absolute path of the directory containing a filepath.
This can be used to determine whether a file is inside the save directory or the game's source .love.
realdir = love.filesystem.getRealDirectory( filepath )
filepath | string | The filepath to get the directory of. |
realdir | string | The platform-specific full path of the directory containing the filepath. |
love.filesystem.getRequirePath
Gets the filesystem paths that will be searched when require is called.
The paths string returned by this function is a sequence of path templates separated by semicolons. The argument passed to ''require'' will be inserted in place of any question mark ('?') character in each template (after the dot characters in the argument passed to ''require'' are replaced by directory separators.)
The paths are relative to the game's source and save directories, as well as any paths mounted with love.filesystem.mount.
paths = love.filesystem.getRequirePath()
paths | string | The paths that the ''require'' function will check in love's filesystem. |
love.filesystem.getSaveDirectory
Gets the full path to the designated save directory.
This can be useful if you want to use the standard io library (or something else) to
read or write in the save directory.
dir = love.filesystem.getSaveDirectory()
dir | string | The absolute path to the save directory. |
Returns the full path to the the .love file or directory. If the game is fused to the LÖVE executable, then the executable is returned.
path = love.filesystem.getSource()
path | string | The full platform-dependent path of the .love file or directory. |
love.filesystem.getSourceBaseDirectory
Returns the full path to the directory containing the .love file. If the game is fused to the LÖVE executable, then the directory containing the executable is returned.
If love.filesystem.isFused is true, the path returned by this function can be passed to love.filesystem.mount, which will make the directory containing the main game (e.g. C:\Program Files\coolgame\) readable by love.filesystem.
path = love.filesystem.getSourceBaseDirectory()
path | string | The full platform-dependent path of the directory containing the .love file. |
love.filesystem.getUserDirectory
Returns the path of the user's directory
path = love.filesystem.getUserDirectory()
path | string | The path of the user's directory |
love.filesystem.getWorkingDirectory
Gets the current working directory.
cwd = love.filesystem.getWorkingDirectory()
cwd | string | The current working directory. |
Gets whether the game is in fused mode or not.
If a game is in fused mode, its save directory will be directly in the Appdata directory instead of Appdata/LOVE/. The game will also be able to load C Lua dynamic libraries which are located in the save directory.
A game is in fused mode if the source .love has been fused to the executable (see Game Distribution), or if '--fused' has been given as a command-line argument when starting the game.
fused = love.filesystem.isFused()
fused | boolean | True if the game is in fused mode, false otherwise. |
Iterate over the lines in a file.
iterator = love.filesystem.lines( name )
name | string | The name (and path) of the file |
iterator | function | A function that iterates over all the lines in the file |
Loads a Lua file (but does not run it).
chunk, errormsg = love.filesystem.load( name )
name | string | The name (and path) of the file. |
chunk | function | The loaded chunk. |
errormsg | string | The error message if file could not be opened. |
Mounts a zip file or folder in the game's save directory for reading.
It is also possible to mount love.filesystem.getSourceBaseDirectory if the game is in fused mode.
success = love.filesystem.mount( archive, mountpoint, appendToPath )
archive | string | The folder or zip file in the game's save directory to mount. |
mountpoint | string | The new path the archive will be mounted to. |
appendToPath (false) | boolean | Whether the archive will be searched when reading a filepath before or after already-mounted archives. This includes the game's source and save directories. |
success | boolean | True if the archive was successfully mounted, false otherwise. |
success = love.filesystem.mount( filedata, mountpoint, appendToPath )
filedata | FileData | The FileData object in memory to mount. |
mountpoint | string | The new path the archive will be mounted to. |
appendToPath (false) | boolean | Whether the archive will be searched when reading a filepath before or after already-mounted archives. This includes the game's source and save directories. |
success | boolean | True if the archive was successfully mounted, false otherwise. |
success = love.filesystem.mount( data, archivename, mountpoint, appendToPath )
data | Data | The Data object in memory to mount. |
archivename | string | The name to associate the mounted data with, for use with love.filesystem.unmount. Must be unique compared to other mounted data. |
mountpoint | string | The new path the archive will be mounted to. |
appendToPath (false) | boolean | Whether the archive will be searched when reading a filepath before or after already-mounted archives. This includes the game's source and save directories. |
success | boolean | True if the archive was successfully mounted, false otherwise. |
Creates a new File object.
It needs to be opened before it can be accessed.
file = love.filesystem.newFile( filename )
filename | string | The filename of the file. |
file | File | The new File object. |
file, errorstr = love.filesystem.newFile( filename, mode )
filename | string | The filename of the file. |
mode | FileMode | The mode to open the file in. |
file | File | The new File object, or nil if an error occurred. |
errorstr | string | The error string if an error occurred. |
Creates a new FileData object from a file on disk, or from a string in memory.
data = love.filesystem.newFileData( contents, name )
contents | string | The contents of the file in memory represented as a string. |
name | string | The name of the file. The extension may be parsed and used by LÖVE when passing the FileData object into love.audio.newSource. |
data | FileData | The new FileData. |
data = love.filesystem.newFileData( originaldata, name )
originaldata | Data | The Data object to copy into the new FileData object. |
name | string | The name of the file. The extension may be parsed and used by LÖVE when passing the FileData object into love.audio.newSource. |
data | FileData | The new FileData. |
data, err = love.filesystem.newFileData( filepath )
filepath | string | Path to the file. |
data | FileData | The new FileData, or nil if an error occurred. |
err | string | The error string, if an error occurred. |
Read the contents of a file.
contents, size, contents, error = love.filesystem.read( name, size )
name | string | The name (and path) of the file. |
size (all) | number | How many bytes to read. |
contents | string | The file contents. |
size | number | How many bytes have been read. |
contents | nil | returns nil as content. |
error | string | returns an error message. |
contents, size, contents, error = love.filesystem.read( container, name, size )
container | ContainerType | What type to return the file's contents as. |
name | string | The name (and path) of the file |
size (all) | number | How many bytes to read |
contents | FileData or string | FileData or string containing the file contents. |
size | number | How many bytes have been read. |
contents | nil | returns nil as content. |
error | string | returns an error message. |
Removes a file or empty directory.
success = love.filesystem.remove( name )
name | string | The file or directory to remove. |
success | boolean | True if the file/directory was removed, false otherwise. |
love.filesystem.setCRequirePath
Sets the filesystem paths that will be searched for c libraries when require is called.
The paths string returned by this function is a sequence of path templates separated by semicolons. The argument passed to ''require'' will be inserted in place of any question mark ('?') character in each template (after the dot characters in the argument passed to ''require'' are replaced by directory separators.) Additionally, any occurrence of a double question mark ('??') will be replaced by the name passed to require and the default library extension for the platform.
The paths are relative to the game's source and save directories, as well as any paths mounted with love.filesystem.mount.
love.filesystem.setCRequirePath( paths )
paths | string | The paths that the ''require'' function will check in love's filesystem. |
Sets the write directory for your game.
Note that you can only set the name of the folder to store your files in, not the location.
love.filesystem.setIdentity( name )
name | string | The new identity that will be used as write directory. |
love.filesystem.setIdentity( name )
name | string | The new identity that will be used as write directory. |
love.filesystem.setRequirePath
Sets the filesystem paths that will be searched when require is called.
The paths string given to this function is a sequence of path templates separated by semicolons. The argument passed to ''require'' will be inserted in place of any question mark ('?') character in each template (after the dot characters in the argument passed to ''require'' are replaced by directory separators.)
The paths are relative to the game's source and save directories, as well as any paths mounted with love.filesystem.mount.
love.filesystem.setRequirePath( paths )
paths | string | The paths that the ''require'' function will check in love's filesystem. |
love.filesystem.setSymlinksEnabled
Sets whether love.filesystem follows symbolic links. It is enabled by default in version 0.10.0 and newer, and disabled by default in 0.9.2.
love.filesystem.setSymlinksEnabled( enable )
enable | boolean | Whether love.filesystem should follow symbolic links. |
Unmounts a zip file or folder previously mounted for reading with love.filesystem.mount.
success = love.filesystem.unmount( archive )
archive | string | The folder or zip file in the game's save directory which is currently mounted. |
success | boolean | True if the archive was successfully unmounted, false otherwise. |
Write data to a file in the save directory. If the file existed already, it will be completely replaced by the new contents.
success, message = love.filesystem.write( name, data, size )
name | string | The name (and path) of the file. |
data | string | The string data to write to the file. |
size (all) | number | How many bytes to write. |
success | boolean | If the operation was successful. |
message | string | Error message if operation was unsuccessful. |
success, message = love.filesystem.write( name, data, size )
name | string | The name (and path) of the file. |
data | Data | The Data object to write to the file. |
size (all) | number | How many bytes to write. |
success | boolean | If the operation was successful. |
message | string | Error message if operation was unsuccessful. |
Flushes any buffered written data in the file to the disk.
success, err = File:flush()
success | boolean | Whether the file successfully flushed any buffered data to the disk. |
err | string | The error string, if an error occurred and the file could not be flushed. |
Gets the buffer mode of a file.
mode, size = File:getBuffer()
mode | BufferMode | The current buffer mode of the file. |
size | number | The maximum size in bytes of the file's buffer. |
Gets the filename that the File object was created with. If the file object originated from the love.filedropped callback, the filename will be the full platform-dependent file path.
filename = File:getFilename()
filename | string | The filename of the File. |
Gets the FileMode the file has been opened with.
mode = File:getMode()
mode | FileMode | The mode this file has been opened with. |
Gets whether end-of-file has been reached.
eof = File:isEOF()
eof | boolean | Whether EOF has been reached. |
Gets whether the file is open.
open = File:isOpen()
open | boolean | True if the file is currently open, false otherwise. |
Iterate over all the lines in a file.
iterator = File:lines()
iterator | function | The iterator (can be used in for loops). |
Open the file for write, read or append.
ok, err = File:open( mode )
mode | FileMode | The mode to open the file in. |
ok | boolean | True on success, false otherwise. |
err | string | The error string if an error occurred. |
Read a number of bytes from a file.
contents, size = File:read( bytes )
bytes (all) | number | The number of bytes to read. |
contents | string | The contents of the read bytes. |
size | number | How many bytes have been read. |
contents, size = File:read( container, bytes )
container | ContainerType | What type to return the file's contents as. |
bytes (all) | number | The number of bytes to read. |
contents | FileData or string | FileData or string containing the read bytes. |
size | number | How many bytes have been read. |
Seek to a position in a file
success = File:seek( pos )
pos | number | The position to seek to |
success | boolean | Whether the operation was successful |
Sets the buffer mode for a file opened for writing or appending. Files with buffering enabled will not write data to the disk until the buffer size limit is reached, depending on the buffer mode.
File:flush will force any buffered data to be written to the disk.
success, errorstr = File:setBuffer( mode, size )
mode | BufferMode | The buffer mode to use. |
size (0) | number | The maximum size in bytes of the file's buffer. |
success | boolean | Whether the buffer mode was successfully set. |
errorstr | string | The error string, if the buffer mode could not be set and an error occurred. |
Write data to a file.
success, err = File:write( data, size )
data | string | The string data to write. |
size (all) | number | How many bytes to write. |
success | boolean | Whether the operation was successful. |
err | string | The error string if an error occurred. |
success, errorstr = File:write( data, size )
data | Data | The Data object to write. |
size (all) | number | How many bytes to write. |
success | boolean | Whether the operation was successful. |
errorstr | string | The error string if an error occurred. |
Gets the extension of the FileData.
ext = FileData:getExtension()
ext | string | The extension of the file the FileData represents. |
Gets the filename of the FileData.
name = FileData:getFilename()
name | string | The name of the file the FileData represents. |
none
No buffering. The result of write and append operations appears immediately.
line
Line buffering. Write and append operations are buffered until a newline is output or the buffer size limit is reached.
full
Full buffering. Write and append operations are always buffered until the buffer size limit is reached.
r
Open a file for read.
w
Open a file for write.
a
Open a file for append.
c
Do not open a file (represents a closed file.)
file
Regular file.
directory
Directory.
symlink
Symbolic link.
other
Something completely different like a device.
Creates a new BMFont Rasterizer.
rasterizer = love.font.newBMFontRasterizer( imageData, glyphs, dpiscale )
imageData | ImageData | The image data containing the drawable pictures of font glyphs. |
glyphs | string | The sequence of glyphs in the ImageData. |
dpiscale (1) | number | DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newBMFontRasterizer( fileName, glyphs, dpiscale )
fileName | string | The path to file containing the drawable pictures of font glyphs. |
glyphs | string | The sequence of glyphs in the ImageData. |
dpiscale (1) | number | DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
Creates a new GlyphData.
love.font.newGlyphData( rasterizer, glyph )
rasterizer | Rasterizer | The Rasterizer containing the font. |
glyph | number | The character code of the glyph. |
Creates a new Image Rasterizer.
rasterizer = love.font.newImageRasterizer( imageData, glyphs, extraSpacing, dpiscale )
imageData | ImageData | Font image data. |
glyphs | string | String containing font glyphs. |
extraSpacing (0) | number | Font extra spacing. |
dpiscale (1) | number | Font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
Creates a new Rasterizer.
rasterizer = love.font.newRasterizer( filename )
filename | string | The font file. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( data )
data | FileData | The FileData of the font file. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( size, hinting, dpiscale )
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( fileName, size, hinting, dpiscale )
fileName | string | Path to font file. |
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( fileData, size, hinting, dpiscale )
fileData | FileData | File data containing font. |
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( imageData, glyphs, dpiscale )
imageData | ImageData | The image data containing the drawable pictures of font glyphs. |
glyphs | string | The sequence of glyphs in the ImageData. |
dpiscale (1) | number | DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newRasterizer( fileName, glyphs, dpiscale )
fileName | string | The path to file containing the drawable pictures of font glyphs. |
glyphs | string | The sequence of glyphs in the ImageData. |
dpiscale (1) | number | DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
love.font.newTrueTypeRasterizer
Creates a new TrueType Rasterizer.
rasterizer = love.font.newTrueTypeRasterizer( size, hinting, dpiscale )
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newTrueTypeRasterizer( fileName, size, hinting, dpiscale )
fileName | string | Path to font file. |
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
rasterizer = love.font.newTrueTypeRasterizer( fileData, size, hinting, dpiscale )
fileData | FileData | File data containing font. |
size (12) | number | The font size. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.window.getDPIScale()) | number | The font DPI scale. |
rasterizer | Rasterizer | The rasterizer. |
Gets glyph bearing.
bx, by = GlyphData:getBearing()
bx | number | Glyph bearing X. |
by | number | Glyph bearing Y. |
Gets glyph bounding box.
x, y, width, height = GlyphData:getBoundingBox()
x | number | Glyph position x. |
y | number | Glyph position y. |
width | number | Glyph width. |
height | number | Glyph height. |
Gets glyph dimensions.
width, height = GlyphData:getDimensions()
width | number | Glyph width. |
height | number | Glyph height. |
Gets glyph string.
glyph = GlyphData:getGlyphString()
glyph | string | Glyph string. |
Gets descent height.
height = Rasterizer:getDescent()
height | number | Descent height. |
Gets number of glyphs in font.
count = Rasterizer:getGlyphCount()
count | number | Glyphs count. |
Gets glyph data of a specified glyph.
glyphData = Rasterizer:getGlyphData( glyph )
glyph | string | Glyph |
glyphData | GlyphData | Glyph data |
glyphData = Rasterizer:getGlyphData( glyphNumber )
glyphNumber | number | Glyph number |
glyphData | GlyphData | Glyph data |
Gets line height of a font.
height = Rasterizer:getLineHeight()
height | number | Line height of a font. |
Checks if font contains specified glyphs.
hasGlyphs = Rasterizer:hasGlyphs( glyph1, glyph2, ... )
glyph1 | string or number | Glyph |
glyph2 | string or number | Glyph |
... | string or number | Additional glyphs |
hasGlyphs | boolean | Whatever font contains specified glyphs. |
normal
Default hinting. Should be preferred for typical antialiased fonts.
light
Results in fuzzier text but can sometimes preserve the original glyph shapes of the text better than normal hinting.
mono
Results in aliased / unsmoothed text with either full opacity or completely transparent pixels. Should be used when antialiasing is not desired for the font.
none
Disables hinting for the font. Results in fuzzier text.
Applies the given Transform object to the current coordinate transformation.
This effectively multiplies the existing coordinate transformation's matrix with the Transform object's internal matrix to produce the new coordinate transformation.
love.graphics.applyTransform( transform )
transform | Transform | The Transform object to apply to the current graphics coordinate transform. |
Draws a filled or unfilled arc at position (x, y). The arc is drawn from angle1 to angle2 in radians. The segments parameter determines how many segments are used to draw the arc. The more segments, the smoother the edge.
love.graphics.arc( drawmode, x, y, radius, angle1, angle2, segments )
drawmode | DrawMode | How to draw the arc. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radius | number | Radius of the arc. |
angle1 | number | The angle at which the arc begins. |
angle2 | number | The angle at which the arc terminates. |
segments (10) | number | The number of segments used for drawing the arc. |
love.graphics.arc( drawmode, arctype, x, y, radius, angle1, angle2, segments )
drawmode | DrawMode | How to draw the arc. |
arctype | ArcType | The type of arc to draw. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radius | number | Radius of the arc. |
angle1 | number | The angle at which the arc begins. |
angle2 | number | The angle at which the arc terminates. |
segments (10) | number | The number of segments used for drawing the arc. |
love.graphics.captureScreenshot
Creates a screenshot once the current frame is done (after love.draw has finished).
Since this function enqueues a screenshot capture rather than executing it immediately, it can be called from an input callback or love.update and it will still capture all of what's drawn to the screen in that frame.
love.graphics.captureScreenshot( filename )
filename | string | The filename to save the screenshot to. The encoded image type is determined based on the extension of the filename, and must be one of the ImageFormats. |
love.graphics.captureScreenshot( callback )
callback | function | Function which gets called once the screenshot has been captured. An ImageData is passed into the function as its only argument. |
love.graphics.captureScreenshot( channel )
channel | Channel | The Channel to push the generated ImageData to. |
Draws a circle.
love.graphics.circle( mode, x, y, radius )
mode | DrawMode | How to draw the circle. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radius | number | The radius of the circle. |
love.graphics.circle( mode, x, y, radius, segments )
mode | DrawMode | How to draw the circle. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radius | number | The radius of the circle. |
segments | number | The number of segments used for drawing the circle. Note: The default variable for the segments parameter varies between different versions of LÖVE. |
Clears the screen or active Canvas to the specified color.
This function is called automatically before love.draw in the default love.run function. See the example in love.run for a typical use of this function.
Note that the scissor area bounds the cleared region.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
In versions prior to background color instead.
love.graphics.clear()
love.graphics.clear( r, g, b, a, clearstencil, cleardepth )
r | number | The red channel of the color to clear the screen to. |
g | number | The green channel of the color to clear the screen to. |
b | number | The blue channel of the color to clear the screen to. |
a (1) | number | The alpha channel of the color to clear the screen to. |
clearstencil (true) | boolean | Whether to clear the active stencil buffer, if present. It can also be an integer between 0 and 255 to clear the stencil buffer to a specific value. |
cleardepth (true) | boolean | Whether to clear the active depth buffer, if present. It can also be a number between 0 and 1 to clear the depth buffer to a specific value. |
love.graphics.clear( color, ..., clearstencil, cleardepth )
color | table | A table in the form of {r, g, b, a} containing the color to clear the first active Canvas to. |
... | table | Additional tables for each active Canvas. |
clearstencil (true) | boolean | Whether to clear the active stencil buffer, if present. It can also be an integer between 0 and 255 to clear the stencil buffer to a specific value. |
cleardepth (true) | boolean | Whether to clear the active depth buffer, if present. It can also be a number between 0 and 1 to clear the depth buffer to a specific value. |
love.graphics.clear( clearcolor, clearstencil, cleardepth )
clearcolor | boolean | Whether to clear the active color canvas to transparent black (0, 0, 0, 0). Typically this should be set to false with this variant of the function. |
clearstencil | boolean | Whether to clear the active stencil buffer, if present. It can also be an integer between 0 and 255 to clear the stencil buffer to a specific value. |
cleardepth | boolean | Whether to clear the active depth buffer, if present. It can also be a number between 0 and 1 to clear the depth buffer to a specific value. |
Discards (trashes) the contents of the screen or active Canvas. This is a performance optimization function with niche use cases.
If the active Canvas has just been changed and the 'replace' BlendMode is about to be used to draw something which covers the entire screen, calling love.graphics.discard rather than calling love.graphics.clear or doing nothing may improve performance on mobile devices.
On some desktop systems this function may do nothing.
love.graphics.discard( discardcolor, discardstencil )
discardcolor (true) | boolean | Whether to discard the texture(s) of the active Canvas(es) (the contents of the screen if no Canvas is active.) |
discardstencil (true) | boolean | Whether to discard the contents of the stencil buffer of the screen / active Canvas. |
love.graphics.discard( discardcolors, discardstencil )
discardcolors | table | An array containing boolean values indicating whether to discard the texture of each active Canvas, when multiple simultaneous Canvases are active. |
discardstencil (true) | boolean | Whether to discard the contents of the stencil buffer of the screen / active Canvas. |
Draws a Drawable object (an Image, Canvas, SpriteBatch, ParticleSystem, Mesh, Text object, or Video) on the screen with optional rotation, scaling and shearing.
Objects are drawn relative to their local coordinate system. The origin is by default located at the top left corner of Image and Canvas. All scaling, shearing, and rotation arguments transform the object relative to that point. Also, the position of the origin can be specified on the screen coordinate system.
It's possible to rotate an object about its center by offsetting the origin to the center. Angles must be given in radians for rotation. One can also use a negative scaling factor to flip about its centerline.
Note that the offsets are applied before rotation, scaling, or shearing; scaling and shearing are applied before rotation.
The right and bottom edges of the object are shifted at an angle defined by the shearing factors.
When using the default shader anything drawn with this function will be tinted according to the currently selected color. Set it to pure white to preserve the object's original colors.
love.graphics.draw( drawable, x, y, r, sx, sy, ox, oy, kx, ky )
drawable | Drawable | A drawable object. |
x (0) | number | The position to draw the object (x-axis). |
y (0) | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.draw( texture, quad, x, y, r, sx, sy, ox, oy, kx, ky )
texture | Texture | A Texture (Image or Canvas) to texture the Quad with. |
quad | Quad | The Quad to draw on screen. |
x | number | The position to draw the object (x-axis). |
y | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.draw( drawable, transform )
drawable | Drawable | A drawable object. |
transform | Transform | Transformation object. |
love.graphics.draw( texture, quad, transform )
texture | Texture | A Texture (Image or Canvas) to texture the Quad with. |
quad | Quad | The Quad to draw on screen. |
transform | Transform | Transformation object. |
Draws many instances of a Mesh with a single draw call, using hardware geometry instancing.
Each instance can have unique properties (positions, colors, etc.) but will not by default unless a custom per-instance vertex attributes or the love_InstanceID GLSL 3 vertex shader variable is used, otherwise they will all render at the same position on top of each other.
Instancing is not supported by some older GPUs that are only capable of using OpenGL ES 2 or OpenGL 2. Use love.graphics.getSupported to check.
love.graphics.drawInstanced( mesh, instancecount, x, y, r, sx, sy, ox, oy, kx, ky )
mesh | Mesh | The mesh to render. |
instancecount | number | The number of instances to render. |
x (0) | number | The position to draw the instances (x-axis). |
y (0) | number | The position to draw the instances (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.drawInstanced( mesh, instancecount, transform )
mesh | Mesh | The mesh to render. |
instancecount | number | The number of instances to render. |
transform | Transform | A transform object. |
Draws a layer of an Array Texture.
love.graphics.drawLayer( texture, layerindex, x, y, r, sx, sy, ox, oy, kx, ky )
texture | Texture | The Array Texture to draw. |
layerindex | number | The index of the layer to use when drawing. |
x (0) | number | The position to draw the texture (x-axis). |
y (0) | number | The position to draw the texture (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.drawLayer( texture, layerindex, quad, x, y, r, sx, sy, ox, oy, kx, ky )
texture | Texture | The Array Texture to draw. |
layerindex | number | The index of the layer to use when drawing. |
quad | Quad | The subsection of the texture's layer to use when drawing. |
x (0) | number | The position to draw the texture (x-axis). |
y (0) | number | The position to draw the texture (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.drawLayer( texture, layerindex, transform )
texture | Texture | The Array Texture to draw. |
layerindex | number | The index of the layer to use when drawing. |
transform | Transform | A transform object. |
love.graphics.drawLayer( texture, layerindex, quad, transform )
texture | Texture | The Array Texture to draw. |
layerindex | number | The index of the layer to use when drawing. |
quad | Quad | The subsection of the texture's layer to use when drawing. |
transform | Transform | A transform object. |
Draws an ellipse.
love.graphics.ellipse( mode, x, y, radiusx, radiusy )
mode | DrawMode | How to draw the ellipse. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radiusx | number | The radius of the ellipse along the x-axis (half the ellipse's width). |
radiusy | number | The radius of the ellipse along the y-axis (half the ellipse's height). |
love.graphics.ellipse( mode, x, y, radiusx, radiusy, segments )
mode | DrawMode | How to draw the ellipse. |
x | number | The position of the center along x-axis. |
y | number | The position of the center along y-axis. |
radiusx | number | The radius of the ellipse along the x-axis (half the ellipse's width). |
radiusy | number | The radius of the ellipse along the y-axis (half the ellipse's height). |
segments | number | The number of segments used for drawing the ellipse. |
Immediately renders any pending automatically batched draws.
LÖVE will call this function internally as needed when most state is changed, so it is not necessary to manually call it.
The current batch will be automatically flushed by love.graphics state changes (except for the transform stack and the current color), as well as Shader:send and methods on Textures which change their state. Using a different Image in consecutive love.graphics.draw calls will also flush the current batch.
SpriteBatches, ParticleSystems, Meshes, and Text objects do their own batching and do not affect automatic batching of other draws, aside from flushing the current batch when they're drawn.
love.graphics.flushBatch()
love.graphics.getBackgroundColor
Gets the current background color.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
r, g, b, a = love.graphics.getBackgroundColor()
r | number | The red component (0-1). |
g | number | The green component (0-1). |
b | number | The blue component (0-1). |
a | number | The alpha component (0-1). |
Gets the blending mode.
mode, alphamode = love.graphics.getBlendMode()
mode | BlendMode | The current blend mode. |
alphamode | BlendAlphaMode | The current blend alpha mode – it determines how the alpha of drawn objects affects blending. |
Gets the current target Canvas.
canvas = love.graphics.getCanvas()
canvas | Canvas | The Canvas set by setCanvas. Returns nil if drawing to the real screen. |
love.graphics.getCanvasFormats
Gets the available Canvas formats, and whether each is supported.
formats = love.graphics.getCanvasFormats()
formats | table | A table containing CanvasFormats as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats. |
formats = love.graphics.getCanvasFormats( readable )
readable | boolean | If true, the returned formats will only be indicated as supported if readable flag set to true for that format, and vice versa if the parameter is false. |
formats | table | A table containing CanvasFormats as keys, and a boolean indicating whether the format is supported as values (taking into account the readable parameter). Not all systems support all formats. |
Gets the current color.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
r, g, b, a = love.graphics.getColor()
r | number | The red component (0-1). |
g | number | The green component (0-1). |
b | number | The blue component (0-1). |
a | number | The alpha component (0-1). |
Gets the active color components used when drawing. Normally all 4 components are active unless love.graphics.setColorMask has been used.
The color mask determines whether individual components of the colors of drawn objects will affect the color of the screen. They affect love.graphics.clear and Canvas:clear as well.
r, g, b, a = love.graphics.getColorMask()
r | boolean | Whether the red color component is active when rendering. |
g | boolean | Whether the green color component is active when rendering. |
b | boolean | Whether the blue color component is active when rendering. |
a | boolean | Whether the alpha color component is active when rendering. |
Gets the DPI scale factor of the window.
The DPI scale factor represents relative pixel density. The pixel density inside the window might be greater (or smaller) than the 'size' of the window. For example on a retina screen in Mac OS X with the highdpi window flag enabled, the window may take up the same physical size as an 800x600 window, but the area inside the window uses 1600x1200 pixels. love.graphics.getDPIScale() would return 2 in that case.
The love.window.fromPixels and love.window.toPixels functions can also be used to convert between units.
The highdpi window flag must be enabled to use the full pixel density of a Retina screen on Mac OS X and iOS. The flag currently does nothing on Windows and Linux, and on Android it is effectively always enabled.
scale = love.graphics.getDPIScale()
scale | number | The pixel scale factor associated with the window. |
love.graphics.getDefaultFilter
Returns the default scaling filters used with Images, Canvases, and Fonts.
min, mag, anisotropy = love.graphics.getDefaultFilter()
min | FilterMode | Filter mode used when scaling the image down. |
mag | FilterMode | Filter mode used when scaling the image up. |
anisotropy | number | Maximum amount of Anisotropic Filtering used. |
Gets the current depth test mode and whether writing to the depth buffer is enabled.
This is low-level functionality designed for use with custom vertex shaders and Meshes with custom vertex attributes. No higher level APIs are provided to set the depth of 2D graphics such as shapes, lines, and Images.
comparemode, write = love.graphics.getDepthMode()
comparemode | CompareMode | Depth comparison mode used for depth testing. |
write | boolean | Whether to write update / write values to the depth buffer when rendering. |
Gets the width and height in pixels of the window.
width, height = love.graphics.getDimensions()
width | number | The width of the window. |
height | number | The height of the window. |
Gets the current Font object.
font = love.graphics.getFont()
font | Font | The current Font. Automatically creates and sets the default font, if none is set yet. |
love.graphics.getFrontFaceWinding
Gets whether triangles with clockwise- or counterclockwise-ordered vertices are considered front-facing.
This is designed for use in combination with Mesh face culling. Other love.graphics shapes, lines, and sprites are not guaranteed to have a specific winding order to their internal vertices.
winding = love.graphics.getFrontFaceWinding()
winding | VertexWinding | The winding mode being used. The default winding is counterclockwise ('ccw'). |
Gets the height in pixels of the window.
height = love.graphics.getHeight()
height | number | The height of the window. |
Gets the raw and compressed pixel formats usable for Images, and whether each is supported.
formats = love.graphics.getImageFormats()
formats | table | A table containing PixelFormats as keys, and a boolean indicating whether the format is supported as values. Not all systems support all formats. |
Gets the current line width.
width = love.graphics.getLineWidth()
width | number | The current line width. |
Gets whether back-facing triangles in a Mesh are culled.
Mesh face culling is designed for use with low level custom hardware-accelerated 3D rendering via custom vertex attributes on Meshes, custom vertex shaders, and depth testing with a depth buffer.
mode = love.graphics.getMeshCullMode()
mode | CullMode | The Mesh face culling mode in use (whether to render everything, cull back-facing triangles, or cull front-facing triangles). |
love.graphics.getPixelDimensions
Gets the width and height in pixels of the window.
love.graphics.getDimensions gets the dimensions of the window in units scaled by the screen's DPI scale factor, rather than pixels. Use getDimensions for calculations related to drawing to the screen and using the graphics coordinate system (calculating the center of the screen, for example), and getPixelDimensions only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
pixelwidth, pixelheight = love.graphics.getPixelDimensions()
pixelwidth | number | The width of the window in pixels. |
pixelheight | number | The height of the window in pixels. |
Gets the height in pixels of the window.
The graphics coordinate system and DPI scale factor, rather than raw pixels. Use getHeight for calculations related to drawing to the screen and using the coordinate system (calculating the center of the screen, for example), and getPixelHeight only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
pixelheight = love.graphics.getPixelHeight()
pixelheight | number | The height of the window in pixels. |
Gets the width in pixels of the window.
The graphics coordinate system and DPI scale factor, rather than raw pixels. Use getWidth for calculations related to drawing to the screen and using the coordinate system (calculating the center of the screen, for example), and getPixelWidth only when dealing specifically with underlying pixels (pixel-related calculations in a pixel Shader, for example).
pixelwidth = love.graphics.getPixelWidth()
pixelwidth | number | The width of the window in pixels. |
Gets the point size.
size = love.graphics.getPointSize()
size | number | The current point size. |
Gets information about the system's video card and drivers.
name, version, vendor, device = love.graphics.getRendererInfo()
name | string | The name of the renderer, e.g. 'OpenGL' or 'OpenGL ES'. |
version | string | The version of the renderer with some extra driver-dependent version info, e.g. '2.1 INTEL-8.10.44'. |
vendor | string | The name of the graphics card vendor, e.g. 'Intel Inc'. |
device | string | The name of the graphics card, e.g. 'Intel HD Graphics 3000 OpenGL Engine'. |
Gets the current scissor box.
x, y, width, height = love.graphics.getScissor()
x | number | The x-component of the top-left point of the box. |
y | number | The y-component of the top-left point of the box. |
width | number | The width of the box. |
height | number | The height of the box. |
Gets the current Shader. Returns nil if none is set.
shader = love.graphics.getShader()
shader | Shader | The currently active Shader, or nil if none is set. |
Gets the current depth of the transform / state stack (the number of pushes without corresponding pops).
depth = love.graphics.getStackDepth()
depth | number | The current depth of the transform and state love.graphics stack. |
Gets performance-related rendering statistics.
stats = love.graphics.getStats()
stats | table | A table with the following fields: |
stats | number | The number of draw calls made so far during the current frame. |
stats | number | The number of times the active Canvas has been switched so far during the current frame. |
stats | number | The estimated total size in bytes of video memory used by all loaded Images, Canvases, and Fonts. |
stats | number | The number of Image objects currently loaded. |
stats | number | The number of Canvas objects currently loaded. |
stats | number | The number of Font objects currently loaded. |
stats | number | The number of times the active Shader has been changed so far during the current frame. |
stats | number | The number of draw calls that were saved by LÖVE's automatic batching, since the start of the frame. |
stats = love.graphics.getStats( stats )
stats | table | A table which will be filled in with the stat fields below. |
stats | table | The table that was passed in above, now containing the following fields: |
stats | number | The number of draw calls made so far during the current frame. |
stats | number | The number of times the active Canvas has been switched so far during the current frame. |
stats | number | The estimated total size in bytes of video memory used by all loaded Images, Canvases, and Fonts. |
stats | number | The number of Image objects currently loaded. |
stats | number | The number of Canvas objects currently loaded. |
stats | number | The number of Font objects currently loaded. |
stats | number | The number of times the active Shader has been changed so far during the current frame. |
stats | number | The number of draw calls that were saved by LÖVE's automatic batching, since the start of the frame. |
Gets the current stencil test configuration.
When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via love.graphics.stencil.
Each Canvas has its own per-pixel stencil values.
comparemode, comparevalue = love.graphics.getStencilTest()
comparemode | CompareMode | The type of comparison that is made for each pixel. Will be 'always' if stencil testing is disabled. |
comparevalue | number | The value used when comparing with the stencil value of each pixel. |
Gets the optional graphics features and whether they're supported on the system.
Some older or low-end systems don't always support all graphics features.
features = love.graphics.getSupported()
features | table | A table containing GraphicsFeature keys, and boolean values indicating whether each feature is supported. |
Gets the system-dependent maximum values for love.graphics features.
limits = love.graphics.getSystemLimits()
limits | table | A table containing GraphicsLimit keys, and number values. |
Gets the available texture types, and whether each is supported.
texturetypes = love.graphics.getTextureTypes()
texturetypes | table | A table containing TextureTypes as keys, and a boolean indicating whether the type is supported as values. Not all systems support all types. |
Gets the width in pixels of the window.
width = love.graphics.getWidth()
width | number | The width of the window. |
love.graphics.intersectScissor
Sets the scissor to the rectangle created by the intersection of the specified rectangle with the existing scissor. If no scissor is active yet, it behaves like love.graphics.setScissor.
The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
love.graphics.intersectScissor( x, y, width, height )
x | number | The x-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle. |
y | number | The y-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle. |
width | number | The width of the rectangle to intersect with the existing scissor rectangle. |
height | number | The height of the rectangle to intersect with the existing scissor rectangle. |
love.graphics.inverseTransformPoint
Converts the given 2D position from screen-space into global coordinates.
This effectively applies the reverse of the current graphics transformations to the given position. A similar Transform:inverseTransformPoint method exists for Transform objects.
globalX, globalY = love.graphics.inverseTransformPoint( screenX, screenY )
screenX | number | The x component of the screen-space position. |
screenY | number | The y component of the screen-space position. |
globalX | number | The x component of the position in global coordinates. |
globalY | number | The y component of the position in global coordinates. |
Gets whether the graphics module is able to be used. If it is not active, love.graphics function and method calls will not work correctly and may cause the program to crash. The graphics module is inactive if a window is not open, or if the app is in the background on iOS. Typically the app's execution will be automatically paused by the system, in the latter case.
active = love.graphics.isActive()
active | boolean | Whether the graphics module is active and able to be used. |
Gets whether gamma-correct rendering is supported and enabled. It can be enabled by setting t.gammacorrect = true in love.conf.
Not all devices support gamma-correct rendering, in which case it will be automatically disabled and this function will return false. It is supported on desktop systems which have graphics cards that are capable of using OpenGL 3 / DirectX 10, and iOS devices that can use OpenGL ES 3.
gammacorrect = love.graphics.isGammaCorrect()
gammacorrect | boolean | True if gamma-correct rendering is supported and was enabled in love.conf, false otherwise. |
Gets whether wireframe mode is used when drawing.
wireframe = love.graphics.isWireframe()
wireframe | boolean | True if wireframe lines are used when drawing, false if it's not. |
Draws lines between points.
love.graphics.line( x1, y1, x2, y2, ... )
x1 | number | The position of first point on the x-axis. |
y1 | number | The position of first point on the y-axis. |
x2 | number | The position of second point on the x-axis. |
y2 | number | The position of second point on the y-axis. |
... | number | You can continue passing point positions to draw a polyline. |
love.graphics.line( points )
points | table | A table of point positions, as described above. |
Creates a new array Image.
An array image / array texture is a single object which contains multiple 'layers' or 'slices' of 2D sub-images. It can be thought of similarly to a texture atlas or sprite sheet, but it doesn't suffer from the same tile / quad bleeding artifacts that texture atlases do – although every sub-image must have the same dimensions.
A specific layer of an array image can be drawn with love.graphics.drawLayer / SpriteBatch:addLayer, or with the Quad variant of love.graphics.draw and Quad:setLayer, or via a custom Shader.
To use an array image in a Shader, it must be declared as a ArrayImage or sampler2DArray type (instead of Image or sampler2D). The Texel(ArrayImage image, vec3 texturecoord) shader function must be used to get pixel colors from a slice of the array image. The vec3 argument contains the texture coordinate in the first two components, and the 0-based slice index in the third component.
image = love.graphics.newArrayImage( slices, settings )
slices | table | A table containing filepaths to images (or File, FileData, ImageData, or CompressedImageData objects), in an array. Each sub-image must have the same dimensions. A table of tables can also be given, where each sub-table contains all mipmap levels for the slice index of that sub-table. |
settings (nil) | table | Optional table of settings to configure the array image, containing the following fields: |
settings | boolean | True to make the image use mipmaps, false to disable them. Mipmaps will be automatically generated if the image isn't a compressed texture format. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
settings | number | The DPI scale to use when drawing the array image and calling getWidth/getHeight. |
image | Image | An Array Image object. |
Creates a new Canvas object for offscreen rendering.
canvas = love.graphics.newCanvas()
canvas | Canvas | A new Canvas with dimensions equal to the window's size in pixels. |
canvas = love.graphics.newCanvas( width, height )
width | number | The desired width of the Canvas. |
height | number | The desired height of the Canvas. |
canvas | Canvas | A new Canvas with specified width and height. |
canvas = love.graphics.newCanvas( width, height, settings )
width | number | The desired width of the Canvas. |
height | number | The desired height of the Canvas. |
settings | table | A table containing the given fields: |
settings | TextureType | The type of Canvas to create. |
settings | PixelFormat | The format of the Canvas. |
settings | boolean | Whether the Canvas is readable (drawable and accessible in a Shader). True by default for regular formats, false by default for depth/stencil formats. |
settings | number | The desired number of multisample antialiasing (MSAA) samples used when drawing to the Canvas. |
settings | number | The DPI scale factor of the Canvas, used when drawing to the Canvas as well as when drawing the Canvas to the screen. |
settings | MipmapMode | Whether the Canvas has mipmaps, and whether to automatically regenerate them if so. |
canvas | Canvas | A new Canvas with specified width and height. |
canvas = love.graphics.newCanvas( width, height, layers, settings )
width | number | The desired width of the Canvas. |
height | number | The desired height of the Canvas. |
layers | number | The number of array layers (if the Canvas is an Array Texture), or the volume depth (if the Canvas is a Volume Texture). |
settings | table | A table containing the given fields: |
settings | TextureType | The type of Canvas to create. |
settings | PixelFormat | The format of the Canvas. |
settings | boolean | Whether the Canvas is readable (drawable and accessible in a Shader). True by default for regular formats, false by default for depth/stencil formats. |
settings | number | The desired number of multisample antialiasing (MSAA) samples used when drawing to the Canvas. |
settings | number | The DPI scale factor of the Canvas, used when drawing to the Canvas as well as when drawing the Canvas to the screen. |
settings | MipmapMode | Whether the Canvas has mipmaps, and whether to automatically regenerate them if so. |
canvas | Canvas | A new Canvas with specified width and height. |
Creates a new cubemap Image.
Cubemap images have 6 faces (sides) which represent a cube. They can't be rendered directly, they can only be used in Shader code (and sent to the shader via Shader:send).
To use a cubemap image in a Shader, it must be declared as a CubeImage or samplerCube type (instead of Image or sampler2D). The Texel(CubeImage image, vec3 direction) shader function must be used to get pixel colors from the cubemap. The vec3 argument is a normalized direction from the center of the cube, rather than explicit texture coordinates.
Each face in a cubemap image must have square dimensions.
For variants of this function which accept a single image containing multiple cubemap faces, they must be laid out in one of the following forms in the image:
+y
+z +x -z
-y
-x
or:
+y
-x +z +x -z
-y
or:
+x
-x
+y
-y
+z
-z
or:
+x -x +y -y +z -z
image = love.graphics.newCubeImage( filename, settings )
filename | string | The filepath to a cubemap image file (or a File, FileData, or ImageData). |
settings (nil) | table | Optional table of settings to configure the cubemap image, containing the following fields: |
settings | boolean | True to make the image use mipmaps, false to disable them. Mipmaps will be automatically generated if the image isn't a compressed texture format. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
image | Image | An cubemap Image object. |
image = love.graphics.newCubeImage( faces, settings )
faces | table | A table containing 6 filepaths to images (or File, FileData, ImageData, or CompressedImageData objects), in an array. Each face image must have the same dimensions. A table of tables can also be given, where each sub-table contains all mipmap levels for the cube face index of that sub-table. |
settings (nil) | table | Optional table of settings to configure the cubemap image, containing the following fields: |
settings | boolean | True to make the image use mipmaps, false to disable them. Mipmaps will be automatically generated if the image isn't a compressed texture format. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
image | Image | An cubemap Image object. |
Creates a new Font from a TrueType Font or BMFont file. Created fonts are not cached, in that calling this function with the same arguments will always create a new Font object.
All variants which accept a filename can also accept a Data object instead.
font = love.graphics.newFont( filename )
filename | string | The filepath to the BMFont or TrueType font file. |
font | Font | A Font object which can be used to draw text on screen. |
font = love.graphics.newFont( filename, size, hinting, dpiscale )
filename | string | The filepath to the TrueType font file. |
size | number | The size of the font in pixels. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.graphics.getDPIScale()) | number | The DPI scale factor of the font. |
font | Font | A Font object which can be used to draw text on screen. |
font = love.graphics.newFont( filename, imagefilename )
filename | string | The filepath to the BMFont file. |
imagefilename | string | The filepath to the BMFont's image file. If this argument is omitted, the path specified inside the BMFont file will be used. |
font | Font | A Font object which can be used to draw text on screen. |
font = love.graphics.newFont( size, hinting, dpiscale )
size (12) | number | The size of the font in pixels. |
hinting ('normal') | HintingMode | True Type hinting mode. |
dpiscale (love.graphics.getDPIScale()) | number | The DPI scale factor of the font. |
font | Font | A Font object which can be used to draw text on screen. |
Creates a new Image from a filepath, FileData, an ImageData, or a CompressedImageData, and optionally generates or specifies mipmaps for the image.
image = love.graphics.newImage( filename, settings )
filename | string | The filepath to the image file. |
settings | table | A table containing the following fields: |
settings | number | The DPI scale to use when drawing the image and calling getWidth/getHeight. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
settings | boolean | If true, mipmaps for the image will be automatically generated (or taken from the images's file if possible, if the image originated from a CompressedImageData). |
image | Image | A new Image object which can be drawn on screen. |
image = love.graphics.newImage( fileData, settings )
fileData | FileData | The FileData containing image file. |
settings | table | A table containing the following fields: |
settings | number | The DPI scale to use when drawing the image and calling getWidth/getHeight. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
settings | boolean | If true, mipmaps for the image will be automatically generated (or taken from the images's file if possible, if the image originated from a CompressedImageData). |
image | Image | A new Image object which can be drawn on screen. |
image = love.graphics.newImage( imageData, settings )
imageData | ImageData | The ImageData containing image. |
settings | table | A table containing the following fields: |
settings | number | The DPI scale to use when drawing the image and calling getWidth/getHeight. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
settings | boolean | If true, mipmaps for the image will be automatically generated (or taken from the images's file if possible, if the image originated from a CompressedImageData). |
image | Image | A new Image object which can be drawn on screen. |
image = love.graphics.newImage( compressedImageData, settings )
compressedImageData | CompressedImageData | A CompressedImageData object. The Image will use this CompressedImageData to reload itself when love.window.setMode is called. |
settings | table | A table containing the following fields: |
settings | number | The DPI scale to use when drawing the image and calling getWidth/getHeight. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
settings | boolean | If true, mipmaps for the image will be automatically generated (or taken from the images's file if possible, if the image originated from a CompressedImageData). |
image | Image | A new Image object which can be drawn on screen. |
Creates a new specifically formatted image.
In versions prior to 0.9.0, LÖVE expects ISO 8859-1 encoding for the glyphs string.
font = love.graphics.newImageFont( filename, glyphs )
filename | string | The filepath to the image file. |
glyphs | string | A string of the characters in the image in order from left to right. |
font | Font | A Font object which can be used to draw text on screen. |
font = love.graphics.newImageFont( imageData, glyphs )
imageData | ImageData | The ImageData object to create the font from. |
glyphs | string | A string of the characters in the image in order from left to right. |
font | Font | A Font object which can be used to draw text on screen. |
font = love.graphics.newImageFont( filename, glyphs, extraspacing )
filename | string | The filepath to the image file. |
glyphs | string | A string of the characters in the image in order from left to right. |
extraspacing | number | Additional spacing (positive or negative) to apply to each glyph in the Font. |
font | Font | A Font object which can be used to draw text on screen. |
Creates a new Mesh.
Use Mesh:setTexture if the Mesh should be textured with an Image or Canvas when it's drawn.
In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
mesh = love.graphics.newMesh( vertices, mode, usage )
vertices | table | The table filled with vertex information tables for each vertex as follows: |
vertices | number | The position of the vertex on the x-axis. |
vertices | number | The position of the vertex on the y-axis. |
vertices | number | The u texture coordinate of the vertex. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode.) |
vertices | number | The v texture coordinate of the vertex. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode.) |
vertices | number | The red component of the vertex color. |
vertices | number | The green component of the vertex color. |
vertices | number | The blue component of the vertex color. |
vertices | number | The alpha component of the vertex color. |
mode ('fan') | MeshDrawMode | How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the Mesh. The specified usage mode affects the Mesh's memory usage and performance. |
mesh | Mesh | The new mesh. |
mesh = love.graphics.newMesh( vertexcount, mode, usage )
vertexcount | number | The total number of vertices the Mesh will use. Each vertex is initialized to {0,0, 0,0, 1,1,1,1}. |
mode ('fan') | MeshDrawMode | How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the Mesh. The specified usage mode affects the Mesh's memory usage and performance. |
mesh | Mesh | The new mesh. |
mesh = love.graphics.newMesh( vertexformat, vertices, mode, usage )
vertexformat | table | A table in the form of {attribute, ...}. Each attribute is a table which specifies a custom vertex attribute used for each vertex. |
vertexformat | table | A table containing the attribute's name, it's data type, and the number of components in the attribute, in the form of {name, datatype, components}. |
vertexformat | table | Additional vertex attribute format tables. |
vertices | table | The table filled with vertex information tables for each vertex, in the form of {vertex, ...} where each vertex is a table in the form of {attributecomponent, ...}. |
vertices | number | The first component of the first vertex attribute in the vertex. |
vertices | number | Additional components of all vertex attributes in the vertex. |
mode ('fan') | MeshDrawMode | How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the Mesh. The specified usage mode affects the Mesh's memory usage and performance. |
mesh | Mesh | The new mesh. |
mesh = love.graphics.newMesh( vertexformat, vertexcount, mode, usage )
vertexformat | table | A table in the form of {attribute, ...}. Each attribute is a table which specifies a custom vertex attribute used for each vertex. |
vertexformat | table | A table containing the attribute's name, it's data type, and the number of components in the attribute, in the form of {name, datatype, components}. |
vertexformat | table | Additional vertex attribute format tables. |
vertexcount | number | The total number of vertices the Mesh will use. |
mode ('fan') | MeshDrawMode | How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the Mesh. The specified usage mode affects the Mesh's memory usage and performance. |
mesh | Mesh | The new mesh. |
mesh = love.graphics.newMesh( vertexcount, texture, mode )
vertexcount | number | The total number of vertices the Mesh will use. Each vertex is initialized to {0,0, 0,0, 255,255,255,255}. |
texture (nil) | Texture | The Image or Canvas to use when drawing the Mesh. May be nil to use no texture. |
mode ('fan') | MeshDrawMode | How the vertices are used when drawing. The default mode 'fan' is sufficient for simple convex polygons. |
mesh | Mesh | The new mesh. |
love.graphics.newParticleSystem
Creates a new ParticleSystem.
system = love.graphics.newParticleSystem( image, buffer )
image | Image | The image to use. |
buffer (1000) | number | The max number of particles at the same time. |
system | ParticleSystem | A new ParticleSystem. |
system = love.graphics.newParticleSystem( texture, buffer )
texture | Texture | The texture (Image or Canvas) to use. |
buffer (1000) | number | The max number of particles at the same time. |
system | ParticleSystem | A new ParticleSystem. |
Creates a new Quad.
The purpose of a Quad is to use a fraction of an image to draw objects, as opposed to drawing entire image. It is most useful for sprite sheets and atlases: in a sprite atlas, multiple sprites reside in same image, quad is used to draw a specific sprite from that image; in animated sprites with all frames residing in the same image, quad is used to draw specific frame from the animation.
quad = love.graphics.newQuad( x, y, width, height, sw, sh )
x | number | The top-left position in the Image along the x-axis. |
y | number | The top-left position in the Image along the y-axis. |
width | number | The width of the Quad in the Image. (Must be greater than 0.) |
height | number | The height of the Quad in the Image. (Must be greater than 0.) |
sw | number | The reference width, the width of the Image. (Must be greater than 0.) |
sh | number | The reference height, the height of the Image. (Must be greater than 0.) |
quad | Quad | The new Quad. |
quad = love.graphics.newQuad( x, y, width, height, texture )
x | number | The top-left position in the Image along the x-axis. |
y | number | The top-left position in the Image along the y-axis. |
width | number | The width of the Quad in the Image. (Must be greater than 0.) |
height | number | The height of the Quad in the Image. (Must be greater than 0.) |
texture | Texture | The texture whose width and height will be used as the reference width and height. |
quad | Quad | The new Quad. |
Creates a new Shader object for hardware-accelerated vertex and pixel effects. A Shader contains either vertex shader code, pixel shader code, or both.
Shaders are small programs which are run on the graphics card when drawing. Vertex shaders are run once for each vertex (for example, an image has 4 vertices - one at each corner. A Mesh might have many more.) Pixel shaders are run once for each pixel on the screen which the drawn object touches. Pixel shader code is executed after all the object's vertices have been processed by the vertex shader.
shader = love.graphics.newShader( code )
code | string | The pixel shader or vertex shader code, or a filename pointing to a file with the code. |
shader | Shader | A Shader object for use in drawing operations. |
shader = love.graphics.newShader( pixelcode, vertexcode )
pixelcode | string | The pixel shader code, or a filename pointing to a file with the code. |
vertexcode | string | The vertex shader code, or a filename pointing to a file with the code. |
shader | Shader | A Shader object for use in drawing operations. |
Creates a new SpriteBatch object.
spriteBatch = love.graphics.newSpriteBatch( image, maxsprites )
image | Image | The Image to use for the sprites. |
maxsprites (1000) | number | The maximum number of sprites that the SpriteBatch can contain at any given time. Since version 11.0, additional sprites added past this number will automatically grow the spritebatch. |
spriteBatch | SpriteBatch | The new SpriteBatch. |
spriteBatch = love.graphics.newSpriteBatch( image, maxsprites, usage )
image | Image | The Image to use for the sprites. |
maxsprites (1000) | number | The maximum number of sprites that the SpriteBatch can contain at any given time. Since version 11.0, additional sprites added past this number will automatically grow the spritebatch. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the SpriteBatch. The specified usage mode affects the SpriteBatch's memory usage and performance. |
spriteBatch | SpriteBatch | The new SpriteBatch. |
spriteBatch = love.graphics.newSpriteBatch( texture, maxsprites, usage )
texture | Texture | The Image or Canvas to use for the sprites. |
maxsprites (1000) | number | The maximum number of sprites that the SpriteBatch can contain at any given time. Since version 11.0, additional sprites added past this number will automatically grow the spritebatch. |
usage ('dynamic') | SpriteBatchUsage | The expected usage of the SpriteBatch. The specified usage mode affects the SpriteBatch's memory usage and performance. |
spriteBatch | SpriteBatch | The new SpriteBatch. |
Creates a new drawable Text object.
text = love.graphics.newText( font, textstring )
font | Font | The font to use for the text. |
textstring (nil) | string | The initial string of text that the new Text object will contain. May be nil. |
text | Text | The new drawable Text object. |
text = love.graphics.newText( font, coloredtext )
font | Font | The font to use for the text. |
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | Variant | Additional colors and strings. |
text | Text | The new drawable Text object. |
Creates a new drawable Video. Currently only Ogg Theora video files are supported.
video = love.graphics.newVideo( filename )
filename | string | The file path to the Ogg Theora video file. |
video | Video | A new Video. |
video = love.graphics.newVideo( videostream )
videostream | VideoStream | A video stream object. |
video | Video | A new Video. |
video = love.graphics.newVideo( filename, settings )
filename | string | The file path to the Ogg Theora video file (or VideoStream). |
settings | table | A table containing the following fields: |
settings | boolean | Whether to try to load the video's audio into an audio Source. If not explicitly set to true or false, it will try without causing an error if the video has no audio. |
settings | number | The DPI scale factor of the video. |
video | Video | A new Video. |
video = love.graphics.newVideo( filename, loadaudio )
filename | string | The file path to the Ogg Theora video file. |
loadaudio (nil) | boolean | Whether to try to load the video's audio into an audio Source. If not explicitly set to true or false, it will try without causing an error if the video has no audio. |
video | Video | A new Video. |
video = love.graphics.newVideo( videostream, loadaudio )
videostream | VideoStream | A video stream object. |
loadaudio (nil) | boolean | Whether to try to load the video's audio into an audio Source. If not explicitly set to true or false, it will try without causing an error if the video has no audio. |
video | Video | A new Video. |
Creates a new volume (3D) Image.
Volume images are 3D textures with width, height, and depth. They can't be rendered directly, they can only be used in Shader code (and sent to the shader via Shader:send).
To use a volume image in a Shader, it must be declared as a VolumeImage or sampler3D type (instead of Image or sampler2D). The Texel(VolumeImage image, vec3 texcoords) shader function must be used to get pixel colors from the volume image. The vec3 argument is a normalized texture coordinate with the z component representing the depth to sample at (ranging from 1).
Volume images are typically used as lookup tables in shaders for color grading, for example, because sampling using a texture coordinate that is partway in between two pixels can interpolate across all 3 dimensions in the volume image, resulting in a smooth gradient even when a small-sized volume image is used as the lookup table.
Array images are a much better choice than volume images for storing multiple different sprites in a single array image for directly drawing them.
image = love.graphics.newVolumeImage( layers, settings )
layers | table | A table containing filepaths to images (or File, FileData, ImageData, or CompressedImageData objects), in an array. A table of tables can also be given, where each sub-table represents a single mipmap level and contains all layers for that mipmap. |
settings (nil) | table | Optional table of settings to configure the volume image, containing the following fields: |
settings | boolean | True to make the image use mipmaps, false to disable them. Mipmaps will be automatically generated if the image isn't a compressed texture format. |
settings | boolean | True to treat the image's pixels as linear instead of sRGB, when gamma correct rendering is enabled. Most images are authored as sRGB. |
image | Image | A volume Image object. |
Resets the current coordinate transformation.
This function is always used to reverse any previous calls to love.graphics.rotate, love.graphics.scale, love.graphics.shear or love.graphics.translate. It returns the current transformation state to its defaults.
love.graphics.origin()
Draws one or more points.
love.graphics.points( x, y, ... )
x | number | The position of the first point on the x-axis. |
y | number | The position of the first point on the y-axis. |
... | number | The x and y coordinates of additional points. |
love.graphics.points( points )
points | table | A table containing multiple point positions, in the form of {x, y, ...}. |
love.graphics.points( points )
points | table | A table containing multiple individually colored points, in the form of {point, ...}. |
points | table | A table containing the position and color of the first point, in the form of {x, y, r, g, b, a}. The color components are optional. |
points | table | Additional tables containing the position and color of more points, in the form of {x, y, r, g, b, a}. The color components are optional. |
Draw a polygon.
Following the mode argument, this function can accept multiple numeric arguments or a single table of numeric arguments. In either case the arguments are interpreted as alternating x and y coordinates of the polygon's vertices.
love.graphics.polygon( mode, ... )
mode | DrawMode | How to draw the polygon. |
... | number | The vertices of the polygon. |
love.graphics.polygon( mode, vertices )
mode | DrawMode | How to draw the polygon. |
vertices | table | The vertices of the polygon as a table. |
Pops the current coordinate transformation from the transformation stack.
This function is always used to reverse a previous push operation. It returns the current transformation state to what it was before the last preceding push.
love.graphics.pop()
Displays the results of drawing operations on the screen.
This function is used when writing your own love.run function. It presents all the results of your drawing operations on the screen. See the example in love.run for a typical use of this function.
love.graphics.present()
Draws text on screen. If no Font is set, one will be created and set (once) if needed.
As of LOVE 0.7.1, when using translation and scaling functions while drawing text, this function assumes the scale occurs first. If you don't script with this in mind, the text won't be in the right position, or possibly even on screen.
love.graphics.print and love.graphics.printf both support UTF-8 encoding. You'll also need a proper Font for special characters.
In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
love.graphics.print( text, x, y, r, sx, sy, ox, oy, kx, ky )
text | string | The text to draw. |
x (0) | number | The position to draw the object (x-axis). |
y (0) | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.print( coloredtext, x, y, angle, sx, sy, ox, oy, kx, ky )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
x (0) | number | The position of the text on the x-axis. |
y (0) | number | The position of the text on the y-axis. |
angle (0) | number | The orientation of the text in radians. |
sx (1) | number | Scale factor on the x-axis. |
sy (sx) | number | Scale factor on the y-axis. |
ox (0) | number | Origin offset on the x-axis. |
oy (0) | number | Origin offset on the y-axis. |
kx (0) | number | Shearing / skew factor on the x-axis. |
ky (0) | number | Shearing / skew factor on the y-axis. |
love.graphics.print( text, transform )
text | string | The text to draw. |
transform | Transform | Transformation object. |
love.graphics.print( coloredtext, transform )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
transform | Transform | Transformation object. |
love.graphics.print( text, font, transform )
text | string | The text to draw. |
font | Font | The Font object to use. |
transform | Transform | Transformation object. |
love.graphics.print( coloredtext, font, transform )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
font | Font | The Font object to use. |
transform | Transform | Transformation object. |
Draws formatted text, with word wrap and alignment.
See additional notes in love.graphics.print.
The word wrap limit is applied before any scaling, rotation, and other coordinate transformations. Therefore the amount of text per line stays constant given the same wrap limit, even if the scale arguments change.
In version 0.9.2 and earlier, wrapping was implemented by breaking up words by spaces and putting them back together to make sure things fit nicely within the limit provided. However, due to the way this is done, extra spaces between words would end up missing when printed on the screen, and some lines could overflow past the provided wrap limit. In version 0.10.0 and newer this is no longer the case.
In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
love.graphics.printf( text, x, y, limit, align, r, sx, sy, ox, oy, kx, ky )
text | string | A text string. |
x | number | The position on the x-axis. |
y | number | The position on the y-axis. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.printf( text, font, x, y, limit, align, r, sx, sy, ox, oy, kx, ky )
text | string | A text string. |
font | Font | The Font object to use. |
x | number | The position on the x-axis. |
y | number | The position on the y-axis. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.printf( text, transform, limit, align )
text | string | A text string. |
transform | Transform | Transformation object. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
love.graphics.printf( text, font, transform, limit, align )
text | string | A text string. |
font | Font | The Font object to use. |
transform | Transform | Transformation object. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
love.graphics.printf( coloredtext, x, y, limit, align, angle, sx, sy, ox, oy, kx, ky )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
x | number | The position of the text (x-axis). |
y | number | The position of the text (y-axis). |
limit | number | The maximum width in pixels of the text before it gets automatically wrapped to a new line. |
align | AlignMode | The alignment of the text. |
angle (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing / skew factor (x-axis). |
ky (0) | number | Shearing / skew factor (y-axis). |
love.graphics.printf( coloredtext, font, x, y, limit, align, angle, sx, sy, ox, oy, kx, ky )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
font | Font | The Font object to use. |
x | number | The position on the x-axis. |
y | number | The position on the y-axis. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
angle (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
love.graphics.printf( coloredtext, transform, limit, align )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
transform | Transform | Transformation object. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
love.graphics.printf( coloredtext, font, transform, limit, align )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
font | Font | The Font object to use. |
transform | Transform | Transformation object. |
limit | number | Wrap the line after this many horizontal pixels. |
align ('left') | AlignMode | The alignment. |
Copies and pushes the current coordinate transformation to the transformation stack.
This function is always used to prepare for a corresponding pop operation later. It stores the current coordinate transformation state into the transformation stack and keeps it active. Later changes to the transformation can be undone by using the pop operation, which returns the coordinate transform to the state it was in before calling push.
love.graphics.push()
love.graphics.push( stack )
stack | StackType | The type of stack to push (e.g. just transformation state, or all love.graphics state). |
Draws a rectangle.
love.graphics.rectangle( mode, x, y, width, height )
mode | DrawMode | How to draw the rectangle. |
x | number | The position of top-left corner along the x-axis. |
y | number | The position of top-left corner along the y-axis. |
width | number | Width of the rectangle. |
height | number | Height of the rectangle. |
love.graphics.rectangle( mode, x, y, width, height, rx, ry, segments )
mode | DrawMode | How to draw the rectangle. |
x | number | The position of top-left corner along the x-axis. |
y | number | The position of top-left corner along the y-axis. |
width | number | Width of the rectangle. |
height | number | Height of the rectangle. |
rx | number | The x-axis radius of each round corner. Cannot be greater than half the rectangle's width. |
ry (rx) | number | The y-axis radius of each round corner. Cannot be greater than half the rectangle's height. |
segments (nil) | number | The number of segments used for drawing the round corners. A default amount will be chosen if no number is given. |
love.graphics.replaceTransform
Replaces the current coordinate transformation with the given Transform object.
love.graphics.replaceTransform( transform )
transform | Transform | The Transform object to replace the current graphics coordinate transform with. |
Resets the current graphics settings.
Calling reset makes the current drawing color white, the current background color black, disables any active color component masks, disables wireframe mode and resets the current graphics transformation to the origin. It also sets both the point and line drawing modes to smooth and their sizes to 1.0.
love.graphics.reset()
Rotates the coordinate system in two dimensions.
Calling this function affects all future drawing operations by rotating the coordinate system around the origin by the given amount of radians. This change lasts until love.draw() exits.
love.graphics.rotate( angle )
angle | number | The amount to rotate the coordinate system in radians. |
Scales the coordinate system in two dimensions.
By default the coordinate system in LÖVE corresponds to the display pixels in horizontal and vertical directions one-to-one, and the x-axis increases towards the right while the y-axis increases downwards. Scaling the coordinate system changes this relation.
After scaling by sx and sy, all coordinates are treated as if they were multiplied by sx and sy. Every result of a drawing operation is also correspondingly scaled, so scaling by (2, 2) for example would mean making everything twice as large in both x- and y-directions. Scaling by a negative value flips the coordinate system in the corresponding direction, which also means everything will be drawn flipped or upside down, or both. Scaling by zero is not a useful operation.
Scale and translate are not commutative operations, therefore, calling them in different orders will change the outcome.
Scaling lasts until love.draw() exits.
love.graphics.scale( sx, sy )
sx | number | The scaling in the direction of the x-axis. |
sy (sx) | number | The scaling in the direction of the y-axis. If omitted, it defaults to same as parameter sx. |
love.graphics.setBackgroundColor
Sets the background color.
love.graphics.setBackgroundColor( red, green, blue, alpha )
red | number | The red component (0-1). |
green | number | The green component (0-1). |
blue | number | The blue component (0-1). |
alpha (1) | number | The alpha component (0-1). |
love.graphics.setBackgroundColor( rgba )
rgba | table | A numerical indexed table with the red, green, blue and alpha values as numbers. The alpha is optional and defaults to 1 if it is left out. |
Sets the blending mode.
love.graphics.setBlendMode( mode )
mode | BlendMode | The blend mode to use. |
love.graphics.setBlendMode( mode, alphamode )
mode | BlendMode | The blend mode to use. |
alphamode ('alphamultiply') | BlendAlphaMode | What to do with the alpha of drawn objects when blending. |
Captures drawing operations to a Canvas.
love.graphics.setCanvas( canvas, mipmap )
canvas | Canvas | The new target. |
mipmap (1) | number | The mipmap level to render to, for Canvases with mipmaps. |
love.graphics.setCanvas()
love.graphics.setCanvas( canvas1, canvas2, ... )
canvas1 | Canvas | The first render target. |
canvas2 | Canvas | The second render target. |
... | Canvas | More canvases. |
love.graphics.setCanvas( canvas, slice, mipmap )
canvas | Canvas | The new render target. |
slice | number | For cubemaps this is the cube face index to render to (between 1 and 6). For Array textures this is the array layer. For volume textures this is the depth slice. 2D canvases should use a value of 1. |
mipmap (1) | number | The mipmap level to render to, for Canvases with mipmaps. |
love.graphics.setCanvas( setup )
setup | table | A table specifying the active Canvas(es), their mipmap levels and active layers if applicable, and whether to use a stencil and/or depth buffer. |
setup | RenderTargetSetup | The Canvas to render to. |
setup | RenderTargetSetup | An additional Canvas to render to, if multiple simultaneous render targets are wanted. |
setup | RenderTargetSetup | Additional Canvases to render to, if multiple simultaneous render targets are wanted. |
setup | boolean | Whether an internally managed stencil buffer should be used, if the depthstencil field isn't set. |
setup | boolean | Whether an internally managed depth buffer should be used, if the depthstencil field isn't set. |
setup | RenderTargetSetup | An optional custom depth/stencil formatted Canvas to use for the depth and/or stencil buffer. |
Sets the color used for drawing.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
love.graphics.setColor( red, green, blue, alpha )
red | number | The amount of red. |
green | number | The amount of green. |
blue | number | The amount of blue. |
alpha (1) | number | The amount of alpha. The alpha value will be applied to all subsequent draw operations, even the drawing of an image. |
love.graphics.setColor( rgba )
rgba | table | A numerical indexed table with the red, green, blue and alpha values as numbers. The alpha is optional and defaults to 1 if it is left out. |
Sets the color mask. Enables or disables specific color components when rendering and clearing the screen. For example, if '''red''' is set to '''false''', no further changes will be made to the red component of any pixels.
love.graphics.setColorMask( red, green, blue, alpha )
red | boolean | Render red component. |
green | boolean | Render green component. |
blue | boolean | Render blue component. |
alpha | boolean | Render alpha component. |
love.graphics.setColorMask()
love.graphics.setDefaultFilter
Sets the default scaling filters used with Images, Canvases, and Fonts.
love.graphics.setDefaultFilter( min, mag, anisotropy )
min | FilterMode | Filter mode used when scaling the image down. |
mag (min) | FilterMode | Filter mode used when scaling the image up. |
anisotropy (1) | number | Maximum amount of Anisotropic Filtering used. |
Configures depth testing and writing to the depth buffer.
This is low-level functionality designed for use with custom vertex shaders and Meshes with custom vertex attributes. No higher level APIs are provided to set the depth of 2D graphics such as shapes, lines, and Images.
love.graphics.setDepthMode( comparemode, write )
comparemode | CompareMode | Depth comparison mode used for depth testing. |
write | boolean | Whether to write update / write values to the depth buffer when rendering. |
love.graphics.setDepthMode()
Set an already-loaded Font as the current font or create and load a new one from the file and size.
It's recommended that Font objects are created with love.graphics.newFont in the loading stage and then passed to this function in the drawing stage.
love.graphics.setFont( font )
font | Font | The Font object to use. |
love.graphics.setFrontFaceWinding
Sets whether triangles with clockwise- or counterclockwise-ordered vertices are considered front-facing.
This is designed for use in combination with Mesh face culling. Other love.graphics shapes, lines, and sprites are not guaranteed to have a specific winding order to their internal vertices.
love.graphics.setFrontFaceWinding( winding )
winding | VertexWinding | The winding mode to use. The default winding is counterclockwise ('ccw'). |
Sets the line join style. See LineJoin for the possible options.
love.graphics.setLineJoin( join )
join | LineJoin | The LineJoin to use. |
Sets the line style.
love.graphics.setLineStyle( style )
style | LineStyle | The LineStyle to use. Line styles include smooth and rough. |
Sets the line width.
love.graphics.setLineWidth( width )
width | number | The width of the line. |
Sets whether back-facing triangles in a Mesh are culled.
This is designed for use with low level custom hardware-accelerated 3D rendering via custom vertex attributes on Meshes, custom vertex shaders, and depth testing with a depth buffer.
By default, both front- and back-facing triangles in Meshes are rendered.
love.graphics.setMeshCullMode( mode )
mode | CullMode | The Mesh face culling mode to use (whether to render everything, cull back-facing triangles, or cull front-facing triangles). |
Creates and sets a new Font.
font = love.graphics.setNewFont( size )
size (12) | number | The size of the font. |
font | Font | The new font. |
font = love.graphics.setNewFont( filename, size )
filename | string | The path and name of the file with the font. |
size (12) | number | The size of the font. |
font | Font | The new font. |
font = love.graphics.setNewFont( file, size )
file | File | A File with the font. |
size (12) | number | The size of the font. |
font | Font | The new font. |
font = love.graphics.setNewFont( data, size )
data | Data | A Data with the font. |
size (12) | number | The size of the font. |
font | Font | The new font. |
font = love.graphics.setNewFont( rasterizer )
rasterizer | Rasterizer | A rasterizer. |
font | Font | The new font. |
Sets the point size.
love.graphics.setPointSize( size )
size | number | The new point size. |
Sets or disables scissor.
The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
love.graphics.setScissor( x, y, width, height )
x | number | x coordinate of upper left corner. |
y | number | y coordinate of upper left corner. |
width | number | width of clipping rectangle. |
height | number | height of clipping rectangle. |
love.graphics.setScissor()
Sets or resets a Shader as the current pixel effect or vertex shaders. All drawing operations until the next ''love.graphics.setShader'' will be drawn using the Shader object specified.
love.graphics.setShader( shader )
shader | Shader | The new shader. |
love.graphics.setShader()
Configures or disables stencil testing.
When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via love.graphics.stencil.
love.graphics.setStencilTest( comparemode, comparevalue )
comparemode | CompareMode | The type of comparison to make for each pixel. |
comparevalue | number | The value to use when comparing with the stencil value of each pixel. Must be between 0 and 255. |
love.graphics.setStencilTest()
Sets whether wireframe lines will be used when drawing.
love.graphics.setWireframe( enable )
enable | boolean | True to enable wireframe mode when drawing, false to disable it. |
Shears the coordinate system.
love.graphics.shear( kx, ky )
kx | number | The shear factor on the x-axis. |
ky | number | The shear factor on the y-axis. |
Draws geometry as a stencil.
The geometry drawn by the supplied function sets invisible stencil values of pixels, instead of setting pixel colors. The stencil buffer (which contains those stencil values) can act like a mask / stencil - love.graphics.setStencilTest can be used afterward to determine how further rendering is affected by the stencil values in each pixel.
Stencil values are integers within the range of 255.
love.graphics.stencil( stencilfunction, action, value, keepvalues )
stencilfunction | function | Function which draws geometry. The stencil values of pixels, rather than the color of each pixel, will be affected by the geometry. |
action ('replace') | StencilAction | How to modify any stencil values of pixels that are touched by what's drawn in the stencil function. |
value (1) | number | The new stencil value to use for pixels if the 'replace' stencil action is used. Has no effect with other stencil actions. Must be between 0 and 255. |
keepvalues (false) | boolean | True to preserve old stencil values of pixels, false to re-set every pixel's stencil value to 0 before executing the stencil function. love.graphics.clear will also re-set all stencil values. |
Converts the given 2D position from global coordinates into screen-space.
This effectively applies the current graphics transformations to the given position. A similar Transform:transformPoint method exists for Transform objects.
screenX, screenY = love.graphics.transformPoint( globalX, globalY )
globalX | number | The x component of the position in global coordinates. |
globalY | number | The y component of the position in global coordinates. |
screenX | number | The x component of the position with graphics transformations applied. |
screenY | number | The y component of the position with graphics transformations applied. |
Translates the coordinate system in two dimensions.
When this function is called with two numbers, dx, and dy, all the following drawing operations take effect as if their x and y coordinates were x+dx and y+dy.
Scale and translate are not commutative operations, therefore, calling them in different orders will change the outcome.
This change lasts until love.draw() exits or else a love.graphics.pop reverts to a previous love.graphics.push.
Translating using whole numbers will prevent tearing/blurring of images and fonts draw after translating.
love.graphics.translate( dx, dy )
dx | number | The translation relative to the x-axis. |
dy | number | The translation relative to the y-axis. |
Validates shader code. Check if specified shader code does not contain any errors.
status, message = love.graphics.validateShader( gles, code )
gles | boolean | Validate code as GLSL ES shader. |
code | string | The pixel shader or vertex shader code, or a filename pointing to a file with the code. |
status | boolean | true if specified shader code doesn't contain any errors. false otherwise. |
message | string | Reason why shader code validation failed (or nil if validation succeded). |
status, message = love.graphics.validateShader( gles, pixelcode, vertexcode )
gles | boolean | Validate code as GLSL ES shader. |
pixelcode | string | The pixel shader code, or a filename pointing to a file with the code. |
vertexcode | string | The vertex shader code, or a filename pointing to a file with the code. |
status | boolean | true if specified shader code doesn't contain any errors. false otherwise. |
message | string | Reason why shader code validation failed (or nil if validation succeded). |
Generates mipmaps for the Canvas, based on the contents of the highest-resolution mipmap level.
The Canvas must be created with mipmaps set to a MipmapMode other than 'none' for this function to work. It should only be called while the Canvas is not the active render target.
If the mipmap mode is set to 'auto', this function is automatically called inside love.graphics.setCanvas when switching from this Canvas to another Canvas or to the main screen.
Canvas:generateMipmaps()
Gets the number of multisample antialiasing (MSAA) samples used when drawing to the Canvas.
This may be different than the number used as an argument to love.graphics.newCanvas if the system running LÖVE doesn't support that number.
samples = Canvas:getMSAA()
samples | number | The number of multisample antialiasing samples used by the canvas when drawing to it. |
Gets the MipmapMode this Canvas was created with.
mode = Canvas:getMipmapMode()
mode | MipmapMode | The mipmap mode this Canvas was created with. |
Generates ImageData from the contents of the Canvas.
data = Canvas:newImageData()
data | ImageData | The new ImageData made from the Canvas' contents. |
data = Canvas:newImageData( slice, mipmap, x, y, width, height )
slice | number | The cubemap face index, array index, or depth layer for cubemap, array, or volume type Canvases, respectively. This argument is ignored for regular 2D canvases. |
mipmap (1) | number | The mipmap index to use, for Canvases with mipmaps. |
x | number | The x-axis of the top-left corner (in pixels) of the area within the Canvas to capture. |
y | number | The y-axis of the top-left corner (in pixels) of the area within the Canvas to capture. |
width | number | The width in pixels of the area within the Canvas to capture. |
height | number | The height in pixels of the area within the Canvas to capture. |
data | ImageData | The new ImageData made from the Canvas' contents. |
Render to the Canvas using a function.
This is a shortcut to love.graphics.setCanvas:
canvas:renderTo( func )
is the same as
love.graphics.setCanvas( canvas )
func()
love.graphics.setCanvas()
Canvas:renderTo( func, ... )
func | function | A function performing drawing operations. |
... | any | Additional arguments to call the function with. |
Gets the ascent of the Font.
The ascent spans the distance between the baseline and the top of the glyph that reaches farthest from the baseline.
ascent = Font:getAscent()
ascent | number | The ascent of the Font in pixels. |
Gets the baseline of the Font.
Most scripts share the notion of a baseline: an imaginary horizontal line on which characters rest. In some scripts, parts of glyphs lie below the baseline.
baseline = Font:getBaseline()
baseline | number | The baseline of the Font in pixels. |
Gets the DPI scale factor of the Font.
The DPI scale factor represents relative pixel density. A DPI scale factor of 2 means the font's glyphs have twice the pixel density in each dimension (4 times as many pixels in the same area) compared to a font with a DPI scale factor of 1.
The font size of TrueType fonts is scaled internally by the font's specified DPI scale factor. By default, LÖVE uses the screen's DPI scale factor when creating TrueType fonts.
dpiscale = Font:getDPIScale()
dpiscale | number | The DPI scale factor of the Font. |
Gets the descent of the Font.
The descent spans the distance between the baseline and the lowest descending glyph in a typeface.
descent = Font:getDescent()
descent | number | The descent of the Font in pixels. |
Gets the filter mode for a font.
min, mag, anisotropy = Font:getFilter()
min | FilterMode | Filter mode used when minifying the font. |
mag | FilterMode | Filter mode used when magnifying the font. |
anisotropy | number | Maximum amount of anisotropic filtering used. |
Gets the height of the Font.
The height of the font is the size including any spacing; the height which it will need.
height = Font:getHeight()
height | number | The height of the Font in pixels. |
Gets the kerning between two characters in the Font.
Kerning is normally handled automatically in love.graphics.print, Text objects, Font:getWidth, Font:getWrap, etc. This function is useful when stitching text together manually.
kerning = Font:getKerning( leftchar, rightchar )
leftchar | string | The left character. |
rightchar | string | The right character. |
kerning | number | The kerning amount to add to the spacing between the two characters. May be negative. |
kerning = Font:getKerning( leftglyph, rightglyph )
leftglyph | number | The unicode number for the left glyph. |
rightglyph | number | The unicode number for the right glyph. |
kerning | number | The kerning amount to add to the spacing between the two characters. May be negative. |
Gets the line height.
This will be the value previously set by Font:setLineHeight, or 1.0 by default.
height = Font:getLineHeight()
height | number | The current line height. |
Determines the maximum width (accounting for newlines) taken by the given string.
width = Font:getWidth( text )
text | string | A string. |
width | number | The width of the text. |
Gets formatting information for text, given a wrap limit.
This function accounts for newlines correctly (i.e. '\n').
width, wrappedtext = Font:getWrap( text, wraplimit )
text | string | The text that will be wrapped. |
wraplimit | number | The maximum width in pixels of each line that ''text'' is allowed before wrapping. |
width | number | The maximum width of the wrapped text. |
wrappedtext | table | A sequence containing each line of text that was wrapped. |
Gets whether the Font can render a character or string.
hasglyph = Font:hasGlyphs( text )
text | string | A UTF-8 encoded unicode string. |
hasglyph | boolean | Whether the font can render all the UTF-8 characters in the string. |
hasglyph = Font:hasGlyphs( character1, character2 )
character1 | string | A unicode character. |
character2 | string | Another unicode character. |
hasglyph | boolean | Whether the font can render all the glyphs represented by the characters. |
hasglyph = Font:hasGlyphs( codepoint1, codepoint2 )
codepoint1 | number | A unicode codepoint number. |
codepoint2 | number | Another unicode codepoint number. |
hasglyph | boolean | Whether the font can render all the glyphs represented by the codepoint numbers. |
Sets the fallback fonts. When the Font doesn't contain a glyph, it will substitute the glyph from the next subsequent fallback Fonts. This is akin to setting a 'font stack' in Cascading Style Sheets (CSS).
Font:setFallbacks( fallbackfont1, ... )
fallbackfont1 | Font | The first fallback Font to use. |
... | Font | Additional fallback Fonts. |
Sets the filter mode for a font.
Font:setFilter( min, mag, anisotropy )
min | FilterMode | How to scale a font down. |
mag | FilterMode | How to scale a font up. |
anisotropy (1) | number | Maximum amount of anisotropic filtering used. |
Sets the line height.
When rendering the font in lines the actual height will be determined by the line height multiplied by the height of the font. The default is 1.0.
Font:setLineHeight( height )
height | number | The new line height. |
Gets whether the Image was created from CompressedData.
Compressed images take up less space in VRAM, and drawing a compressed image will generally be more efficient than drawing one created from raw pixel data.
compressed = Image:isCompressed()
compressed | boolean | Whether the Image is stored as a compressed texture on the GPU. |
Gets whether the Image was created with the linear (non-gamma corrected) flag set to true.
This method always returns false when gamma-correct rendering is not enabled.
linear = Image:isFormatLinear()
linear | boolean | Whether the Image's internal pixel format is linear (not gamma corrected), when gamma-correct rendering is enabled. |
Replace the contents of an Image.
Image:replacePixels( data, slice, mipmap, x, y, reloadmipmaps )
data | ImageData | The new ImageData to replace the contents with. |
slice (1) | number | Which cubemap face, array index, or volume layer to replace, if applicable. |
mipmap (1) | number | The mimap level to replace, if the Image has mipmaps. |
x (0) | number | The x-offset in pixels from the top-left of the image to replace. The given ImageData's width plus this value must not be greater than the pixel width of the Image's specified mipmap level. |
y (0) | number | The y-offset in pixels from the top-left of the image to replace. The given ImageData's height plus this value must not be greater than the pixel height of the Image's specified mipmap level. |
reloadmipmaps (false) | boolean | Whether to generate new mipmaps after replacing the Image's pixels. True by default if the Image was created with automatically generated mipmaps, false by default otherwise. |
Attaches a vertex attribute from a different Mesh onto this Mesh, for use when drawing. This can be used to share vertex attribute data between several different Meshes.
Mesh:attachAttribute( name, mesh )
name | string | The name of the vertex attribute to attach. |
mesh | Mesh | The Mesh to get the vertex attribute from. |
Mesh:attachAttribute( name, mesh, step, attachname )
name | string | The name of the vertex attribute to attach. |
mesh | Mesh | The Mesh to get the vertex attribute from. |
step ('pervertex') | VertexAttributeStep | Whether the attribute will be per-vertex or per-instance when the mesh is drawn. |
attachname (name) | string | The name of the attribute to use in shader code. Defaults to the name of the attribute in the given mesh. Can be used to use a different name for this attribute when rendering. |
Removes a previously attached vertex attribute from this Mesh.
success = Mesh:detachAttribute( name )
name | string | The name of the attached vertex attribute to detach. |
success | boolean | Whether the attribute was successfully detached. |
Immediately sends all modified vertex data in the Mesh to the graphics card.
Normally it isn't necessary to call this method as love.graphics.draw(mesh, ...) will do it automatically if needed, but explicitly using **Mesh:flush** gives more control over when the work happens.
If this method is used, it generally shouldn't be called more than once (at most) between love.graphics.draw(mesh, ...) calls.
Mesh:flush()
Gets the mode used when drawing the Mesh.
mode = Mesh:getDrawMode()
mode | MeshDrawMode | The mode used when drawing the Mesh. |
Gets the range of vertices used when drawing the Mesh.
min, max = Mesh:getDrawRange()
min | number | The index of the first vertex used when drawing, or the index of the first value in the vertex map used if one is set for this Mesh. |
max | number | The index of the last vertex used when drawing, or the index of the last value in the vertex map used if one is set for this Mesh. |
Gets the texture (Image or Canvas) used when drawing the Mesh.
texture = Mesh:getTexture()
texture | Texture | The Image or Canvas to texture the Mesh with when drawing, or nil if none is set. |
Gets the properties of a vertex in the Mesh.
In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
attributecomponent, ... = Mesh:getVertex( index )
index | number | The one-based index of the vertex you want to retrieve the information for. |
attributecomponent | number | The first component of the first vertex attribute in the specified vertex. |
... | number | Additional components of all vertex attributes in the specified vertex. |
x, y, u, v, r, g, b, a = Mesh:getVertex( index )
index | number | The index of the vertex you want to retrieve the information for. |
x | number | The position of the vertex on the x-axis. |
y | number | The position of the vertex on the y-axis. |
u | number | The horizontal component of the texture coordinate. |
v | number | The vertical component of the texture coordinate. |
r | number | The red component of the vertex's color. |
g | number | The green component of the vertex's color. |
b | number | The blue component of the vertex's color. |
a | number | The alpha component of the vertex's color. |
Gets the properties of a specific attribute within a vertex in the Mesh.
Meshes without a custom vertex format specified in love.graphics.newMesh have position as their first attribute, texture coordinates as their second attribute, and color as their third attribute.
value1, value2, ... = Mesh:getVertexAttribute( vertexindex, attributeindex )
vertexindex | number | The index of the the vertex you want to retrieve the attribute for (one-based). |
attributeindex | number | The index of the attribute within the vertex to be retrieved (one-based). |
value1 | number | The value of the first component of the attribute. |
value2 | number | The value of the second component of the attribute. |
... | number | Any additional vertex attribute components. |
Gets the total number of vertices in the Mesh.
count = Mesh:getVertexCount()
count | number | The total number of vertices in the mesh. |
Gets the vertex format that the Mesh was created with.
format = Mesh:getVertexFormat()
format | table | The vertex format of the Mesh, which is a table containing tables for each vertex attribute the Mesh was created with, in the form of {attribute, ...}. |
format | table | A table containing the attribute's name, it's data type, and the number of components in the attribute, in the form of {name, datatype, components}. |
format | table | Additional vertex attributes in the Mesh. |
Gets the vertex map for the Mesh. The vertex map describes the order in which the vertices are used when the Mesh is drawn. The vertices, vertex map, and mesh draw mode work together to determine what exactly is displayed on the screen.
If no vertex map has been set previously via Mesh:setVertexMap, then this function will return nil in LÖVE 0.10.0+, or an empty table in 0.9.2 and older.
map = Mesh:getVertexMap()
map | table | A table containing the list of vertex indices used when drawing. |
Gets whether a specific vertex attribute in the Mesh is enabled. Vertex data from disabled attributes is not used when drawing the Mesh.
enabled = Mesh:isAttributeEnabled( name )
name | string | The name of the vertex attribute to be checked. |
enabled | boolean | Whether the vertex attribute is used when drawing this Mesh. |
Enables or disables a specific vertex attribute in the Mesh. Vertex data from disabled attributes is not used when drawing the Mesh.
Mesh:setAttributeEnabled( name, enable )
name | string | The name of the vertex attribute to enable or disable. |
enable | boolean | Whether the vertex attribute is used when drawing this Mesh. |
Sets the mode used when drawing the Mesh.
Mesh:setDrawMode( mode )
mode | MeshDrawMode | The mode to use when drawing the Mesh. |
Restricts the drawn vertices of the Mesh to a subset of the total.
Mesh:setDrawRange( start, count )
start | number | The index of the first vertex to use when drawing, or the index of the first value in the vertex map to use if one is set for this Mesh. |
count | number | The number of vertices to use when drawing, or number of values in the vertex map to use if one is set for this Mesh. |
Mesh:setDrawRange()
Sets the texture (Image or Canvas) used when drawing the Mesh.
Mesh:setTexture( texture )
texture | Texture | The Image or Canvas to texture the Mesh with when drawing. |
Mesh:setTexture()
Sets the properties of a vertex in the Mesh.
In versions prior to 11.0, color and byte component values were within the range of 0 to 255 instead of 0 to 1.
Mesh:setVertex( index, attributecomponent, ... )
index | number | The index of the the vertex you want to modify (one-based). |
attributecomponent | number | The first component of the first vertex attribute in the specified vertex. |
... | number | Additional components of all vertex attributes in the specified vertex. |
Mesh:setVertex( index, vertex )
index | number | The index of the the vertex you want to modify (one-based). |
vertex | table | A table with vertex information, in the form of {attributecomponent, ...}. |
vertex | number | The first component of the first vertex attribute in the specified vertex. |
vertex | number | Additional components of all vertex attributes in the specified vertex. |
Mesh:setVertex( index, x, y, u, v, r, g, b, a )
index | number | The index of the the vertex you want to modify (one-based). |
x | number | The position of the vertex on the x-axis. |
y | number | The position of the vertex on the y-axis. |
u | number | The horizontal component of the texture coordinate. |
v | number | The vertical component of the texture coordinate. |
r (1) | number | The red component of the vertex's color. |
g (1) | number | The green component of the vertex's color. |
b (1) | number | The blue component of the vertex's color. |
a (1) | number | The alpha component of the vertex's color. |
Mesh:setVertex( index, vertex )
index | number | The index of the the vertex you want to modify (one-based). |
vertex | table | A table with vertex information. |
vertex | number | The position of the vertex on the x-axis. |
vertex | number | The position of the vertex on the y-axis. |
vertex | number | The u texture coordinate. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode.) |
vertex | number | The v texture coordinate. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode.) |
vertex | number | The red color component. |
vertex | number | The green color component. |
vertex | number | The blue color component. |
vertex | number | The alpha color component. |
Sets the properties of a specific attribute within a vertex in the Mesh.
Meshes without a custom vertex format specified in love.graphics.newMesh have position as their first attribute, texture coordinates as their second attribute, and color as their third attribute.
Mesh:setVertexAttribute( vertexindex, attributeindex, value1, value2, ... )
vertexindex | number | The index of the the vertex to be modified (one-based). |
attributeindex | number | The index of the attribute within the vertex to be modified (one-based). |
value1 | number | The new value for the first component of the attribute. |
value2 | number | The new value for the second component of the attribute. |
... | number | Any additional vertex attribute components. |
Sets the vertex map for the Mesh. The vertex map describes the order in which the vertices are used when the Mesh is drawn. The vertices, vertex map, and mesh draw mode work together to determine what exactly is displayed on the screen.
The vertex map allows you to re-order or reuse vertices when drawing without changing the actual vertex parameters or duplicating vertices. It is especially useful when combined with different Mesh Draw Modes.
Mesh:setVertexMap( map )
map | table | A table containing a list of vertex indices to use when drawing. Values must be in the range of Mesh:getVertexCount(). |
Mesh:setVertexMap( vi1, vi2, vi3 )
vi1 | number | The index of the first vertex to use when drawing. Must be in the range of Mesh:getVertexCount(). |
vi2 | number | The index of the second vertex to use when drawing. |
vi3 | number | The index of the third vertex to use when drawing. |
Mesh:setVertexMap( data, datatype )
data | Data | Array of vertex indices to use when drawing. Values must be in the range of Mesh:getVertexCount()-1 |
datatype | IndexDataType | Datatype of the vertex indices array above. |
Replaces a range of vertices in the Mesh with new ones. The total number of vertices in a Mesh cannot be changed after it has been created. This is often more efficient than calling Mesh:setVertex in a loop.
Mesh:setVertices( vertices, startvertex, count )
vertices | table | The table filled with vertex information tables for each vertex, in the form of {vertex, ...} where each vertex is a table in the form of {attributecomponent, ...}. |
vertices | number | The first component of the first vertex attribute in the vertex. |
vertices | number | Additional components of all vertex attributes in the vertex. |
startvertex (1) | number | The index of the first vertex to replace. |
count (all) | number | Amount of vertices to replace. |
Mesh:setVertices( data, startvertex )
data | Data | A Data object to copy from. The contents of the Data must match the layout of this Mesh's vertex format. |
startvertex (1) | number | The index of the first vertex to replace. |
Mesh:setVertices( vertices )
vertices | table | The table filled with vertex information tables for each vertex as follows: |
vertices | number | The position of the vertex on the x-axis. |
vertices | number | The position of the vertex on the y-axis. |
vertices | number | The horizontal component of the texture coordinate. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode). |
vertices | number | The vertical component of the texture coordinate. Texture coordinates are normally in the range of 1, but can be greater or less (see WrapMode). |
vertices | number | The red color component. |
vertices | number | The green color component. |
vertices | number | The blue color component. |
vertices | number | The alpha color component. |
Creates an identical copy of the ParticleSystem in the stopped state.
particlesystem = ParticleSystem:clone()
particlesystem | ParticleSystem | The new identical copy of this ParticleSystem. |
Emits a burst of particles from the particle emitter.
ParticleSystem:emit( numparticles )
numparticles | number | The amount of particles to emit. The number of emitted particles will be truncated if the particle system's max buffer size is reached. |
Gets the maximum number of particles the ParticleSystem can have at once.
size = ParticleSystem:getBufferSize()
size | number | The maximum number of particles. |
Gets the series of colors applied to the particle sprite.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
r1, g1, b1, a1, r2, g2, b2, a2, r8, g8, b8, a8 = ParticleSystem:getColors()
r1 | number | First color, red component (0-1). |
g1 | number | First color, green component (0-1). |
b1 | number | First color, blue component (0-1). |
a1 | number | First color, alpha component (0-1). |
r2 | number | Second color, red component (0-1). |
g2 | number | Second color, green component (0-1). |
b2 | number | Second color, blue component (0-1). |
a2 | number | Second color, alpha component (0-1). |
r8 | number | Eighth color, red component (0-1). |
g8 | number | Eighth color, green component (0-1). |
b8 | number | Eighth color, blue component (0-1). |
a8 | number | Eighth color, alpha component (0-1). |
Gets the number of particles that are currently in the system.
count = ParticleSystem:getCount()
count | number | The current number of live particles. |
Gets the direction of the particle emitter (in radians).
direction = ParticleSystem:getDirection()
direction | number | The direction of the emitter (radians). |
ParticleSystem:getEmissionArea
Gets the area-based spawn parameters for the particles.
distribution, dx, dy, angle, directionRelativeToCenter = ParticleSystem:getEmissionArea()
distribution | AreaSpreadDistribution | The type of distribution for new particles. |
dx | number | The maximum spawn distance from the emitter along the x-axis for uniform distribution, or the standard deviation along the x-axis for normal distribution. |
dy | number | The maximum spawn distance from the emitter along the y-axis for uniform distribution, or the standard deviation along the y-axis for normal distribution. |
angle | number | The angle in radians of the emission area. |
directionRelativeToCenter | boolean | True if newly spawned particles will be oriented relative to the center of the emission area, false otherwise. |
ParticleSystem:getEmissionRate
Gets the amount of particles emitted per second.
rate = ParticleSystem:getEmissionRate()
rate | number | The amount of particles per second. |
ParticleSystem:getEmitterLifetime
Gets how long the particle system will emit particles (if -1 then it emits particles forever).
life = ParticleSystem:getEmitterLifetime()
life | number | The lifetime of the emitter (in seconds). |
Gets the mode used when the ParticleSystem adds new particles.
mode = ParticleSystem:getInsertMode()
mode | ParticleInsertMode | The mode used when the ParticleSystem adds new particles. |
ParticleSystem:getLinearAcceleration
Gets the linear acceleration (acceleration along the x and y axes) for particles.
Every particle created will accelerate along the x and y axes between xmin,ymin and xmax,ymax.
xmin, ymin, xmax, ymax = ParticleSystem:getLinearAcceleration()
xmin | number | The minimum acceleration along the x axis. |
ymin | number | The minimum acceleration along the y axis. |
xmax | number | The maximum acceleration along the x axis. |
ymax | number | The maximum acceleration along the y axis. |
ParticleSystem:getLinearDamping
Gets the amount of linear damping (constant deceleration) for particles.
min, max = ParticleSystem:getLinearDamping()
min | number | The minimum amount of linear damping applied to particles. |
max | number | The maximum amount of linear damping applied to particles. |
Gets the particle image's draw offset.
ox, oy = ParticleSystem:getOffset()
ox | number | The x coordinate of the particle image's draw offset. |
oy | number | The y coordinate of the particle image's draw offset. |
ParticleSystem:getParticleLifetime
Gets the lifetime of the particles.
min, max = ParticleSystem:getParticleLifetime()
min | number | The minimum life of the particles (in seconds). |
max | number | The maximum life of the particles (in seconds). |
Gets the position of the emitter.
x, y = ParticleSystem:getPosition()
x | number | Position along x-axis. |
y | number | Position along y-axis. |
Gets the series of Quads used for the particle sprites.
quads = ParticleSystem:getQuads()
quads | table | A table containing the Quads used. |
ParticleSystem:getRadialAcceleration
Gets the radial acceleration (away from the emitter).
min, max = ParticleSystem:getRadialAcceleration()
min | number | The minimum acceleration. |
max | number | The maximum acceleration. |
Gets the rotation of the image upon particle creation (in radians).
min, max = ParticleSystem:getRotation()
min | number | The minimum initial angle (radians). |
max | number | The maximum initial angle (radians). |
ParticleSystem:getSizeVariation
Gets the amount of size variation (0 meaning no variation and 1 meaning full variation between start and end).
variation = ParticleSystem:getSizeVariation()
variation | number | The amount of variation (0 meaning no variation and 1 meaning full variation between start and end). |
Gets the series of sizes by which the sprite is scaled. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime.
size1, size2, size8 = ParticleSystem:getSizes()
size1 | number | The first size. |
size2 | number | The second size. |
size8 | number | The eighth size. |
Gets the speed of the particles.
min, max = ParticleSystem:getSpeed()
min | number | The minimum linear speed of the particles. |
max | number | The maximum linear speed of the particles. |
Gets the spin of the sprite.
min, max, variation = ParticleSystem:getSpin()
min | number | The minimum spin (radians per second). |
max | number | The maximum spin (radians per second). |
variation | number | The degree of variation (0 meaning no variation and 1 meaning full variation between start and end). |
ParticleSystem:getSpinVariation
Gets the amount of spin variation (0 meaning no variation and 1 meaning full variation between start and end).
variation = ParticleSystem:getSpinVariation()
variation | number | The amount of variation (0 meaning no variation and 1 meaning full variation between start and end). |
Gets the amount of directional spread of the particle emitter (in radians).
spread = ParticleSystem:getSpread()
spread | number | The spread of the emitter (radians). |
ParticleSystem:getTangentialAcceleration
Gets the tangential acceleration (acceleration perpendicular to the particle's direction).
min, max = ParticleSystem:getTangentialAcceleration()
min | number | The minimum acceleration. |
max | number | The maximum acceleration. |
Gets the texture (Image or Canvas) used for the particles.
texture = ParticleSystem:getTexture()
texture | Texture | The Image or Canvas used for the particles. |
ParticleSystem:hasRelativeRotation
Gets whether particle angles and rotations are relative to their velocities. If enabled, particles are aligned to the angle of their velocities and rotate relative to that angle.
enable = ParticleSystem:hasRelativeRotation()
enable | boolean | True if relative particle rotation is enabled, false if it's disabled. |
Checks whether the particle system is actively emitting particles.
active = ParticleSystem:isActive()
active | boolean | True if system is active, false otherwise. |
Checks whether the particle system is paused.
paused = ParticleSystem:isPaused()
paused | boolean | True if system is paused, false otherwise. |
Checks whether the particle system is stopped.
stopped = ParticleSystem:isStopped()
stopped | boolean | True if system is stopped, false otherwise. |
Moves the position of the emitter. This results in smoother particle spawning behaviour than if ParticleSystem:setPosition is used every frame.
ParticleSystem:moveTo( x, y )
x | number | Position along x-axis. |
y | number | Position along y-axis. |
Resets the particle emitter, removing any existing particles and resetting the lifetime counter.
ParticleSystem:reset()
Sets the size of the buffer (the max allowed amount of particles in the system).
ParticleSystem:setBufferSize( size )
size | number | The buffer size. |
Sets a series of colors to apply to the particle sprite. The particle system will interpolate between each color evenly over the particle's lifetime.
Arguments can be passed in groups of four, representing the components of the desired RGBA value, or as tables of RGBA component values, with a default alpha value of 1 if only three values are given. At least one color must be specified. A maximum of eight may be used.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
ParticleSystem:setColors( r1, g1, b1, a1, ... )
r1 | number | First color, red component (0-1). |
g1 | number | First color, green component (0-1). |
b1 | number | First color, blue component (0-1). |
a1 (1) | number | First color, alpha component (0-1). |
... | number | Additional colors. |
ParticleSystem:setColors( rgba1, ... )
rgba1 | table | First color, a numerical indexed table with the red, green, blue and alpha values as numbers (0-1). The alpha is optional and defaults to 1 if it is left out. |
... | table | Additional color, a numerical indexed table with the red, green, blue and alpha values as numbers (0-1). The alpha is optional and defaults to 1 if it is left out. |
Sets the direction the particles will be emitted in.
ParticleSystem:setDirection( direction )
direction | number | The direction of the particles (in radians). |
ParticleSystem:setEmissionArea
Sets area-based spawn parameters for the particles. Newly created particles will spawn in an area around the emitter based on the parameters to this function.
ParticleSystem:setEmissionArea( distribution, dx, dy, angle, directionRelativeToCenter )
distribution | AreaSpreadDistribution | The type of distribution for new particles. |
dx | number | The maximum spawn distance from the emitter along the x-axis for uniform distribution, or the standard deviation along the x-axis for normal distribution. |
dy | number | The maximum spawn distance from the emitter along the y-axis for uniform distribution, or the standard deviation along the y-axis for normal distribution. |
angle (0) | number | The angle in radians of the emission area. |
directionRelativeToCenter (false) | boolean | True if newly spawned particles will be oriented relative to the center of the emission area, false otherwise. |
ParticleSystem:setEmissionRate
Sets the amount of particles emitted per second.
ParticleSystem:setEmissionRate( rate )
rate | number | The amount of particles per second. |
ParticleSystem:setEmitterLifetime
Sets how long the particle system should emit particles (if -1 then it emits particles forever).
ParticleSystem:setEmitterLifetime( life )
life | number | The lifetime of the emitter (in seconds). |
Sets the mode to use when the ParticleSystem adds new particles.
ParticleSystem:setInsertMode( mode )
mode | ParticleInsertMode | The mode to use when the ParticleSystem adds new particles. |
ParticleSystem:setLinearAcceleration
Sets the linear acceleration (acceleration along the x and y axes) for particles.
Every particle created will accelerate along the x and y axes between xmin,ymin and xmax,ymax.
ParticleSystem:setLinearAcceleration( xmin, ymin, xmax, ymax )
xmin | number | The minimum acceleration along the x axis. |
ymin | number | The minimum acceleration along the y axis. |
xmax (xmin) | number | The maximum acceleration along the x axis. |
ymax (ymin) | number | The maximum acceleration along the y axis. |
ParticleSystem:setLinearDamping
Sets the amount of linear damping (constant deceleration) for particles.
ParticleSystem:setLinearDamping( min, max )
min | number | The minimum amount of linear damping applied to particles. |
max (min) | number | The maximum amount of linear damping applied to particles. |
Set the offset position which the particle sprite is rotated around.
If this function is not used, the particles rotate around their center.
ParticleSystem:setOffset( x, y )
x | number | The x coordinate of the rotation offset. |
y | number | The y coordinate of the rotation offset. |
ParticleSystem:setParticleLifetime
Sets the lifetime of the particles.
ParticleSystem:setParticleLifetime( min, max )
min | number | The minimum life of the particles (in seconds). |
max (min) | number | The maximum life of the particles (in seconds). |
Sets the position of the emitter.
ParticleSystem:setPosition( x, y )
x | number | Position along x-axis. |
y | number | Position along y-axis. |
Sets a series of Quads to use for the particle sprites. Particles will choose a Quad from the list based on the particle's current lifetime, allowing for the use of animated sprite sheets with ParticleSystems.
ParticleSystem:setQuads( quad1, ... )
quad1 | Quad | The first Quad to use. |
... | Quad | Additional Quads to use. |
ParticleSystem:setQuads( quads )
quads | table | A table containing the Quads to use. |
ParticleSystem:setRadialAcceleration
Set the radial acceleration (away from the emitter).
ParticleSystem:setRadialAcceleration( min, max )
min | number | The minimum acceleration. |
max (min) | number | The maximum acceleration. |
ParticleSystem:setRelativeRotation
Sets whether particle angles and rotations are relative to their velocities. If enabled, particles are aligned to the angle of their velocities and rotate relative to that angle.
ParticleSystem:setRelativeRotation( enable )
enable | boolean | True to enable relative particle rotation, false to disable it. |
Sets the rotation of the image upon particle creation (in radians).
ParticleSystem:setRotation( min, max )
min | number | The minimum initial angle (radians). |
max (min) | number | The maximum initial angle (radians). |
ParticleSystem:setSizeVariation
Sets the amount of size variation (0 meaning no variation and 1 meaning full variation between start and end).
ParticleSystem:setSizeVariation( variation )
variation | number | The amount of variation (0 meaning no variation and 1 meaning full variation between start and end). |
Sets a series of sizes by which to scale a particle sprite. 1.0 is normal size. The particle system will interpolate between each size evenly over the particle's lifetime.
At least one size must be specified. A maximum of eight may be used.
ParticleSystem:setSizes( size1, size2, size8 )
size1 | number | The first size. |
size2 (nil) | number | The second size. |
size8 (nil) | number | The eighth size. |
Sets the speed of the particles.
ParticleSystem:setSpeed( min, max )
min | number | The minimum linear speed of the particles. |
max (min) | number | The maximum linear speed of the particles. |
Sets the spin of the sprite.
ParticleSystem:setSpin( min, max )
min | number | The minimum spin (radians per second). |
max (min) | number | The maximum spin (radians per second). |
ParticleSystem:setSpinVariation
Sets the amount of spin variation (0 meaning no variation and 1 meaning full variation between start and end).
ParticleSystem:setSpinVariation( variation )
variation | number | The amount of variation (0 meaning no variation and 1 meaning full variation between start and end). |
Sets the amount of spread for the system.
ParticleSystem:setSpread( spread )
spread | number | The amount of spread (radians). |
ParticleSystem:setTangentialAcceleration
Sets the tangential acceleration (acceleration perpendicular to the particle's direction).
ParticleSystem:setTangentialAcceleration( min, max )
min | number | The minimum acceleration. |
max (min) | number | The maximum acceleration. |
Sets the texture (Image or Canvas) to be used for the particles.
ParticleSystem:setTexture( texture )
texture | Texture | An Image or Canvas to use for the particles. |
Updates the particle system; moving, creating and killing particles.
ParticleSystem:update( dt )
dt | number | The time (seconds) since last frame. |
Gets reference texture dimensions initially specified in love.graphics.newQuad.
sw, sh = Quad:getTextureDimensions()
sw | number | The Texture width used by the Quad. |
sh | number | The Texture height used by the Quad. |
Gets the current viewport of this Quad.
x, y, w, h = Quad:getViewport()
x | number | The top-left corner along the x-axis. |
y | number | The top-left corner along the y-axis. |
w | number | The width of the viewport. |
h | number | The height of the viewport. |
Sets the texture coordinates according to a viewport.
Quad:setViewport( x, y, w, h, sw, sh )
x | number | The top-left corner along the x-axis. |
y | number | The top-left corner along the y-axis. |
w | number | The width of the viewport. |
h | number | The height of the viewport. |
sw (nil) | number | Optional new reference width, the width of the Texture. Must be greater than 0 if set. |
sh (nil) | number | Optional new reference height, the height of the Texture. Must be greater than 0 if set. |
Returns any warning and error messages from compiling the shader code. This can be used for debugging your shaders if there's anything the graphics hardware doesn't like.
warnings = Shader:getWarnings()
warnings | string | Warning and error messages (if any). |
Gets whether a uniform / extern variable exists in the Shader.
If a graphics driver's shader compiler determines that a uniform / extern variable doesn't affect the final output of the shader, it may optimize the variable out. This function will return false in that case.
hasuniform = Shader:hasUniform( name )
name | string | The name of the uniform variable. |
hasuniform | boolean | Whether the uniform exists in the shader and affects its final output. |
Sends one or more values to a special (''uniform'') variable inside the shader. Uniform variables have to be marked using the ''uniform'' or ''extern'' keyword, e.g.
uniform float time; // 'float' is the typical number type used in GLSL shaders.
uniform float varsvec2 light_pos;
uniform vec4 colors[4;
The corresponding send calls would be
shader:send('time', t)
shader:send('vars',a,b)
shader:send('light_pos', {light_x, light_y})
shader:send('colors', {r1, g1, b1, a1}, {r2, g2, b2, a2}, {r3, g3, b3, a3}, {r4, g4, b4, a4})
Uniform / extern variables are read-only in the shader code and remain constant until modified by a Shader:send call. Uniform variables can be accessed in both the Vertex and Pixel components of a shader, as long as the variable is declared in each.
Shader:send( name, number, ... )
name | string | Name of the number to send to the shader. |
number | number | Number to send to store in the uniform variable. |
... | number | Additional numbers to send if the uniform variable is an array. |
Shader:send( name, vector, ... )
name | string | Name of the vector to send to the shader. |
vector | table | Numbers to send to the uniform variable as a vector. The number of elements in the table determines the type of the vector (e.g. two numbers -> vec2). At least two and at most four numbers can be used. |
... | table | Additional vectors to send if the uniform variable is an array. All vectors need to be of the same size (e.g. only vec3's). |
Shader:send( name, matrix, ... )
name | string | Name of the matrix to send to the shader. |
matrix | table | 2x2, 3x3, or 4x4 matrix to send to the uniform variable. Using table form: {{a,b,c,d}, {e,f,g,h}, ... } or (since version 0.10.2) {a,b,c,d, e,f,g,h, ...}. The order in 0.10.2 is column-major; starting in 11.0 it's row-major instead. |
... | table | Additional matrices of the same type as ''matrix'' to store in a uniform array. |
Shader:send( name, texture )
name | string | Name of the Texture to send to the shader. |
texture | Texture | Texture (Image or Canvas) to send to the uniform variable. |
Shader:send( name, boolean, ... )
name | string | Name of the boolean to send to the shader. |
boolean | boolean | Boolean to send to store in the uniform variable. |
... | boolean | Additional booleans to send if the uniform variable is an array. |
Shader:send( name, matrixlayout, matrix, ... )
name | string | Name of the matrix to send to the shader. |
matrixlayout | MatrixLayout | The layout (row- or column-major) of the matrix. |
matrix | table | 2x2, 3x3, or 4x4 matrix to send to the uniform variable. Using table form: {{a,b,c,d}, {e,f,g,h}, ... } or {a,b,c,d, e,f,g,h, ...}. |
... | table | Additional matrices of the same type as ''matrix'' to store in a uniform array. |
Shader:send( name, data, offset, size )
name | string | Name of the uniform to send to the shader. |
data | Data | Data object containing the values to send. |
offset (0) | number | Offset in bytes from the start of the Data object. |
size (all) | number | Size in bytes of the data to send. If nil, as many bytes as the specified uniform uses will be copied. |
Shader:send( name, data, matrixlayout, offset, size )
name | string | Name of the uniform matrix to send to the shader. |
data | Data | Data object containing the values to send. |
matrixlayout | MatrixLayout | The layout (row- or column-major) of the matrix in memory. |
offset (0) | number | Offset in bytes from the start of the Data object. |
size (all) | number | Size in bytes of the data to send. If nil, as many bytes as the specified uniform uses will be copied. |
Shader:send( name, matrixlayout, data, offset, size )
name | string | Name of the uniform matrix to send to the shader. |
matrixlayout | MatrixLayout | The layout (row- or column-major) of the matrix in memory. |
data | Data | Data object containing the values to send. |
offset (0) | number | Offset in bytes from the start of the Data object. |
size (all) | number | Size in bytes of the data to send. If nil, as many bytes as the specified uniform uses will be copied. |
Sends one or more colors to a special (''extern'' / ''uniform'') vec3 or vec4 variable inside the shader. The color components must be in the range of 1. The colors are gamma-corrected if global gamma-correction is enabled.
Extern variables must be marked using the ''extern'' keyword, e.g.
extern vec4 Color;
The corresponding sendColor call would be
shader:sendColor('Color', {r, g, b, a})
Extern variables can be accessed in both the Vertex and Pixel stages of a shader, as long as the variable is declared in each.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
Shader:sendColor( name, color, ... )
name | string | The name of the color extern variable to send to in the shader. |
color | table | A table with red, green, blue, and optional alpha color components in the range of 1 to send to the extern as a vector. |
... | table | Additional colors to send in case the extern is an array. All colors need to be of the same size (e.g. only vec3's). |
Adds a sprite to the batch. Sprites are drawn in the order they are added.
id = SpriteBatch:add( x, y, r, sx, sy, ox, oy, kx, ky )
x | number | The position to draw the object (x-axis). |
y | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shear factor (x-axis). |
ky (0) | number | Shear factor (y-axis). |
id | number | An identifier for the added sprite. |
id = SpriteBatch:add( quad, x, y, r, sx, sy, ox, oy, kx, ky )
quad | Quad | The Quad to add. |
x | number | The position to draw the object (x-axis). |
y | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shear factor (x-axis). |
ky (0) | number | Shear factor (y-axis). |
id | number | An identifier for the added sprite. |
Adds a sprite to a batch created with an Array Texture.
spriteindex = SpriteBatch:addLayer( layerindex, x, y, r, sx, sy, ox, oy, kx, ky )
layerindex | number | The index of the layer to use for this sprite. |
x (0) | number | The position to draw the sprite (x-axis). |
y (0) | number | The position to draw the sprite (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
spriteindex | number | The index of the added sprite, for use with SpriteBatch:set or SpriteBatch:setLayer. |
spriteindex = SpriteBatch:addLayer( layerindex, quad, x, y, r, sx, sy, ox, oy, kx, ky )
layerindex | number | The index of the layer to use for this sprite. |
quad | Quad | The subsection of the texture's layer to use when drawing the sprite. |
x (0) | number | The position to draw the sprite (x-axis). |
y (0) | number | The position to draw the sprite (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
spriteindex | number | The index of the added sprite, for use with SpriteBatch:set or SpriteBatch:setLayer. |
spriteindex = SpriteBatch:addLayer( layerindex, transform )
layerindex | number | The index of the layer to use for this sprite. |
transform | Transform | A transform object. |
spriteindex | number | The index of the added sprite, for use with SpriteBatch:set or SpriteBatch:setLayer. |
spriteindex = SpriteBatch:addLayer( layerindex, quad, transform )
layerindex | number | The index of the layer to use for this sprite. |
quad | Quad | The subsection of the texture's layer to use when drawing the sprite. |
transform | Transform | A transform object. |
spriteindex | number | The index of the added sprite, for use with SpriteBatch:set or SpriteBatch:setLayer. |
Attaches a per-vertex attribute from a Mesh onto this SpriteBatch, for use when drawing. This can be combined with a Shader to augment a SpriteBatch with per-vertex or additional per-sprite information instead of just having per-sprite colors.
Each sprite in a SpriteBatch has 4 vertices in the following order: top-left, bottom-left, top-right, bottom-right. The index returned by SpriteBatch:add (and used by SpriteBatch:set) can used to determine the first vertex of a specific sprite with the formula 1 + 4 * ( id - 1 ).
SpriteBatch:attachAttribute( name, mesh )
name | string | The name of the vertex attribute to attach. |
mesh | Mesh | The Mesh to get the vertex attribute from. |
Immediately sends all new and modified sprite data in the batch to the graphics card.
Normally it isn't necessary to call this method as love.graphics.draw(spritebatch, ...) will do it automatically if needed, but explicitly using SpriteBatch:flush gives more control over when the work happens.
If this method is used, it generally shouldn't be called more than once (at most) between love.graphics.draw(spritebatch, ...) calls.
SpriteBatch:flush()
Gets the maximum number of sprites the SpriteBatch can hold.
size = SpriteBatch:getBufferSize()
size | number | The maximum number of sprites the batch can hold. |
Gets the color that will be used for the next add and set operations.
If no color has been set with SpriteBatch:setColor or the current SpriteBatch color has been cleared, this method will return nil.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
r, g, b, a = SpriteBatch:getColor()
r | number | The red component (0-1). |
g | number | The green component (0-1). |
b | number | The blue component (0-1). |
a | number | The alpha component (0-1). |
Gets the number of sprites currently in the SpriteBatch.
count = SpriteBatch:getCount()
count | number | The number of sprites currently in the batch. |
Gets the texture (Image or Canvas) used by the SpriteBatch.
texture = SpriteBatch:getTexture()
texture | Texture | The Image or Canvas used by the SpriteBatch. |
Changes a sprite in the batch. This requires the sprite index returned by SpriteBatch:add or SpriteBatch:addLayer.
SpriteBatch:set( spriteindex, x, y, r, sx, sy, ox, oy, kx, ky )
spriteindex | number | The index of the sprite that will be changed. |
x | number | The position to draw the object (x-axis). |
y | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shear factor (x-axis). |
ky (0) | number | Shear factor (y-axis). |
SpriteBatch:set( spriteindex, quad, x, y, r, sx, sy, ox, oy, kx, ky )
spriteindex | number | The index of the sprite that will be changed. |
quad | Quad | The Quad used on the image of the batch. |
x | number | The position to draw the object (x-axis). |
y | number | The position to draw the object (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shear factor (x-axis). |
ky (0) | number | Shear factor (y-axis). |
Sets the color that will be used for the next add and set operations. Calling the function without arguments will disable all per-sprite colors for the SpriteBatch.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
In version 0.9.2 and older, the global color set with love.graphics.setColor will not work on the SpriteBatch if any of the sprites has its own color.
SpriteBatch:setColor( r, g, b, a )
r | number | The amount of red. |
g | number | The amount of green. |
b | number | The amount of blue. |
a (1) | number | The amount of alpha. |
SpriteBatch:setColor()
Restricts the drawn sprites in the SpriteBatch to a subset of the total.
SpriteBatch:setDrawRange( start, count )
start | number | The index of the first sprite to draw. Index 1 corresponds to the first sprite added with SpriteBatch:add. |
count | number | The number of sprites to draw. |
SpriteBatch:setDrawRange()
Changes a sprite previously added with add or addLayer, in a batch created with an Array Texture.
SpriteBatch:setLayer( spriteindex, layerindex, x, y, r, sx, sy, ox, oy, kx, ky )
spriteindex | number | The index of the existing sprite to replace. |
layerindex | number | The index of the layer in the Array Texture to use for this sprite. |
x (0) | number | The position to draw the sprite (x-axis). |
y (0) | number | The position to draw the sprite (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
SpriteBatch:setLayer( spriteindex, layerindex, quad, x, y, r, sx, sy, ox, oy, kx, ky )
spriteindex | number | The index of the existing sprite to replace. |
layerindex | number | The index of the layer to use for this sprite. |
quad | Quad | The subsection of the texture's layer to use when drawing the sprite. |
x (0) | number | The position to draw the sprite (x-axis). |
y (0) | number | The position to draw the sprite (y-axis). |
r (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing factor (x-axis). |
ky (0) | number | Shearing factor (y-axis). |
SpriteBatch:setLayer( spriteindex, layerindex, transform )
spriteindex | number | The index of the existing sprite to replace. |
layerindex | number | The index of the layer to use for the sprite. |
transform | Transform | A transform object. |
SpriteBatch:setLayer( spriteindex, layerindex, quad, transform )
spriteindex | number | The index of the existing sprite to replace. |
layerindex | number | The index of the layer to use for the sprite. |
quad | Quad | The subsection of the texture's layer to use when drawing the sprite. |
transform | Transform | A transform object. |
Sets the texture (Image or Canvas) used for the sprites in the batch, when drawing.
SpriteBatch:setTexture( texture )
texture | Texture | The new Image or Canvas to use for the sprites in the batch. |
Adds additional colored text to the Text object at the specified position.
index = Text:add( textstring, x, y, angle, sx, sy, ox, oy, kx, ky )
textstring | string | The text to add to the object. |
x (0) | number | The position of the new text on the x-axis. |
y (0) | number | The position of the new text on the y-axis. |
angle (0) | number | The orientation of the new text in radians. |
sx (1) | number | Scale factor on the x-axis. |
sy (sx) | number | Scale factor on the y-axis. |
ox (0) | number | Origin offset on the x-axis. |
oy (0) | number | Origin offset on the y-axis. |
kx (0) | number | Shearing / skew factor on the x-axis. |
ky (0) | number | Shearing / skew factor on the y-axis. |
index | number | An index number that can be used with Text:getWidth or Text:getHeight. |
index = Text:add( coloredtext, x, y, angle, sx, sy, ox, oy, kx, ky )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
x (0) | number | The position of the new text on the x-axis. |
y (0) | number | The position of the new text on the y-axis. |
angle (0) | number | The orientation of the new text in radians. |
sx (1) | number | Scale factor on the x-axis. |
sy (sx) | number | Scale factor on the y-axis. |
ox (0) | number | Origin offset on the x-axis. |
oy (0) | number | Origin offset on the y-axis. |
kx (0) | number | Shearing / skew factor on the x-axis. |
ky (0) | number | Shearing / skew factor on the y-axis. |
index | number | An index number that can be used with Text:getWidth or Text:getHeight. |
Adds additional formatted / colored text to the Text object at the specified position.
The word wrap limit is applied before any scaling, rotation, and other coordinate transformations. Therefore the amount of text per line stays constant given the same wrap limit, even if the scale arguments change.
index = Text:addf( textstring, wraplimit, align, x, y, angle, sx, sy, ox, oy, kx, ky )
textstring | string | The text to add to the object. |
wraplimit | number | The maximum width in pixels of the text before it gets automatically wrapped to a new line. |
align | AlignMode | The alignment of the text. |
x | number | The position of the new text (x-axis). |
y | number | The position of the new text (y-axis). |
angle (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing / skew factor (x-axis). |
ky (0) | number | Shearing / skew factor (y-axis). |
index | number | An index number that can be used with Text:getWidth or Text:getHeight. |
index = Text:addf( coloredtext, wraplimit, align, x, y, angle, sx, sy, ox, oy, kx, ky )
coloredtext | table | A table containing colors and strings to add to the object, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
wraplimit | number | The maximum width in pixels of the text before it gets automatically wrapped to a new line. |
align | AlignMode | The alignment of the text. |
x | number | The position of the new text (x-axis). |
y | number | The position of the new text (y-axis). |
angle (0) | number | Orientation (radians). |
sx (1) | number | Scale factor (x-axis). |
sy (sx) | number | Scale factor (y-axis). |
ox (0) | number | Origin offset (x-axis). |
oy (0) | number | Origin offset (y-axis). |
kx (0) | number | Shearing / skew factor (x-axis). |
ky (0) | number | Shearing / skew factor (y-axis). |
index | number | An index number that can be used with Text:getWidth or Text:getHeight. |
Gets the width and height of the text in pixels.
width, height = Text:getDimensions()
width | number | The width of the text. If multiple sub-strings have been added with Text:add, the width of the last sub-string is returned. |
height | number | The height of the text. If multiple sub-strings have been added with Text:add, the height of the last sub-string is returned. |
width, height = Text:getDimensions( index )
index | number | An index number returned by Text:add or Text:addf. |
width | number | The width of the sub-string (before scaling and other transformations). |
height | number | The height of the sub-string (before scaling and other transformations). |
Gets the Font used with the Text object.
font = Text:getFont()
font | Font | The font used with this Text object. |
Gets the height of the text in pixels.
height = Text:getHeight()
height | number | The height of the text. If multiple sub-strings have been added with Text:add, the height of the last sub-string is returned. |
height = Text:getHeight( index )
index | number | An index number returned by Text:add or Text:addf. |
height | number | The height of the sub-string (before scaling and other transformations). |
Gets the width of the text in pixels.
width = Text:getWidth()
width | number | The width of the text. If multiple sub-strings have been added with Text:add, the width of the last sub-string is returned. |
width = Text:getWidth( index )
index | number | An index number returned by Text:add or Text:addf. |
width | number | The width of the sub-string (before scaling and other transformations). |
Replaces the contents of the Text object with a new unformatted string.
Text:set( textstring )
textstring | string | The new string of text to use. |
Text:set( coloredtext )
coloredtext | table | A table containing colors and strings to use as the new text, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
Replaces the Font used with the text.
Text:setFont( font )
font | Font | The new font to use with this Text object. |
Replaces the contents of the Text object with a new formatted string.
Text:setf( textstring, wraplimit, align )
textstring | string | The new string of text to use. |
wraplimit | number | The maximum width in pixels of the text before it gets automatically wrapped to a new line. |
align | AlignMode | The alignment of the text. |
Text:setf( coloredtext, wraplimit, align )
coloredtext | table | A table containing colors and strings to use as the new text, in the form of {color1, string1, color2, string2, ...}. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | table | A table containing red, green, blue, and optional alpha components to use as a color for the next string in the table, in the form of {red, green, blue, alpha}. |
coloredtext | string | A string of text which has a color specified by the previous color. |
coloredtext | tables and strings | Additional colors and strings. |
wraplimit | number | The maximum width in pixels of the text before it gets automatically wrapped to a new line. |
align | AlignMode | The alignment of the text. |
Gets the DPI scale factor of the Texture.
The DPI scale factor represents relative pixel density. A DPI scale factor of 2 means the texture has twice the pixel density in each dimension (4 times as many pixels in the same area) compared to a texture with a DPI scale factor of 1.
For example, a texture with pixel dimensions of 100x100 with a DPI scale factor of 2 will be drawn as if it was 50x50. This is useful with high-dpi / retina displays to easily allow swapping out higher or lower pixel density Images and Canvases without needing any extra manual scaling logic.
dpiscale = Texture:getDPIScale()
dpiscale | number | The DPI scale factor of the Texture. |
Gets the depth of a Volume Texture. Returns 1 for 2D, Cubemap, and Array textures.
depth = Texture:getDepth()
depth | number | The depth of the volume Texture. |
Gets the comparison mode used when sampling from a depth texture in a shader.
Depth texture comparison modes are advanced low-level functionality typically used with shadow mapping in 3D.
compare = Texture:getDepthSampleMode()
compare (nil) | CompareMode | The comparison mode used when sampling from this texture in a shader, or nil if setDepthSampleMode has not been called on this Texture. |
Gets the width and height of the Texture.
width, height = Texture:getDimensions()
width | number | The width of the Texture. |
height | number | The height of the Texture. |
Gets the filter mode of the Texture.
min, mag, anisotropy = Texture:getFilter()
min | FilterMode | Filter mode to use when minifying the texture (rendering it at a smaller size on-screen than its size in pixels). |
mag | FilterMode | Filter mode to use when magnifying the texture (rendering it at a smaller size on-screen than its size in pixels). |
anisotropy | number | Maximum amount of anisotropic filtering used. |
Gets the pixel format of the Texture.
format = Texture:getFormat()
format | PixelFormat | The pixel format the Texture was created with. |
Gets the number of layers / slices in an Array Texture. Returns 1 for 2D, Cubemap, and Volume textures.
layers = Texture:getLayerCount()
layers | number | The number of layers in the Array Texture. |
Gets the number of mipmaps contained in the Texture. If the texture was not created with mipmaps, it will return 1.
mipmaps = Texture:getMipmapCount()
mipmaps | number | The number of mipmaps in the Texture. |
Gets the mipmap filter mode for a Texture. Prior to 11.0 this method only worked on Images.
mode, sharpness = Texture:getMipmapFilter()
mode | FilterMode | The filter mode used in between mipmap levels. nil if mipmap filtering is not enabled. |
sharpness | number | Value used to determine whether the image should use more or less detailed mipmap levels than normal when drawing. |
Gets the width and height in pixels of the Texture.
Texture:getDimensions gets the dimensions of the texture in units scaled by the texture's DPI scale factor, rather than pixels. Use getDimensions for calculations related to drawing the texture (calculating an origin offset, for example), and getPixelDimensions only when dealing specifically with pixels, for example when using Canvas:newImageData.
pixelwidth, pixelheight = Texture:getPixelDimensions()
pixelwidth | number | The width of the Texture, in pixels. |
pixelheight | number | The height of the Texture, in pixels. |
Gets the height in pixels of the Texture.
DPI scale factor, rather than pixels. Use getHeight for calculations related to drawing the texture (calculating an origin offset, for example), and getPixelHeight only when dealing specifically with pixels, for example when using Canvas:newImageData.
pixelheight = Texture:getPixelHeight()
pixelheight | number | The height of the Texture, in pixels. |
Gets the width in pixels of the Texture.
DPI scale factor, rather than pixels. Use getWidth for calculations related to drawing the texture (calculating an origin offset, for example), and getPixelWidth only when dealing specifically with pixels, for example when using Canvas:newImageData.
pixelwidth = Texture:getPixelWidth()
pixelwidth | number | The width of the Texture, in pixels. |
Gets the type of the Texture.
texturetype = Texture:getTextureType()
texturetype | TextureType | The type of the Texture. |
Gets the wrapping properties of a Texture.
This function returns the currently set horizontal and vertical wrapping modes for the texture.
horiz, vert, depth = Texture:getWrap()
horiz | WrapMode | Horizontal wrapping mode of the texture. |
vert | WrapMode | Vertical wrapping mode of the texture. |
depth | WrapMode | Wrapping mode for the z-axis of a Volume texture. |
Gets whether the Texture can be drawn and sent to a Shader.
Canvases created with stencil and/or depth PixelFormats are not readable by default, unless readable=true is specified in the settings table passed into love.graphics.newCanvas.
Non-readable Canvases can still be rendered to.
readable = Texture:isReadable()
readable | boolean | Whether the Texture is readable. |
Sets the comparison mode used when sampling from a depth texture in a shader. Depth texture comparison modes are advanced low-level functionality typically used with shadow mapping in 3D.
When using a depth texture with a comparison mode set in a shader, it must be declared as a sampler2DShadow and used in a GLSL 3 Shader. The result of accessing the texture in the shader will return a float between 0 and 1, proportional to the number of samples (up to 4 samples will be used if bilinear filtering is enabled) that passed the test set by the comparison operation.
Depth texture comparison can only be used with readable depth-formatted Canvases.
Texture:setDepthSampleMode( compare )
compare | CompareMode | The comparison mode used when sampling from this texture in a shader. |
Sets the filter mode of the Texture.
Texture:setFilter( min, mag, anisotropy )
min | FilterMode | Filter mode to use when minifying the texture (rendering it at a smaller size on-screen than its size in pixels). |
mag (min) | FilterMode | Filter mode to use when magnifying the texture (rendering it at a larger size on-screen than its size in pixels). |
anisotropy (1) | number | Maximum amount of anisotropic filtering to use. |
Sets the mipmap filter mode for a Texture. Prior to 11.0 this method only worked on Images.
Mipmapping is useful when drawing a texture at a reduced scale. It can improve performance and reduce aliasing issues.
In created with the mipmaps flag enabled for the mipmap filter to have any effect. In versions prior to 0.10.0 it's best to call this method directly after creating the image with love.graphics.newImage, to avoid bugs in certain graphics drivers.
Due to hardware restrictions and driver bugs, in versions prior to 0.10.0 images that weren't loaded from a CompressedData must have power-of-two dimensions (64x64, 512x256, etc.) to use mipmaps.
Texture:setMipmapFilter( filtermode, sharpness )
filtermode | FilterMode | The filter mode to use in between mipmap levels. 'nearest' will often give better performance. |
sharpness (0) | number | A positive sharpness value makes the texture use a more detailed mipmap level when drawing, at the expense of performance. A negative value does the reverse. |
Texture:setMipmapFilter()
Sets the wrapping properties of a Texture.
This function sets the way a Texture is repeated when it is drawn with a Quad that is larger than the texture's extent, or when a custom Shader is used which uses texture coordinates outside of [0, 1]. A texture may be clamped or set to repeat in both horizontal and vertical directions.
Clamped textures appear only once (with the edges of the texture stretching to fill the extent of the Quad), whereas repeated ones repeat as many times as there is room in the Quad.
Texture:setWrap( horiz, vert, depth )
horiz | WrapMode | Horizontal wrapping mode of the texture. |
vert (horiz) | WrapMode | Vertical wrapping mode of the texture. |
depth (horiz) | WrapMode | Wrapping mode for the z-axis of a Volume texture. |
Gets the width and height of the Video in pixels.
width, height = Video:getDimensions()
width | number | The width of the Video. |
height | number | The height of the Video. |
Gets the scaling filters used when drawing the Video.
min, mag, anisotropy = Video:getFilter()
min | FilterMode | The filter mode used when scaling the Video down. |
mag | FilterMode | The filter mode used when scaling the Video up. |
anisotropy | number | Maximum amount of anisotropic filtering used. |
Gets the height of the Video in pixels.
height = Video:getHeight()
height | number | The height of the Video. |
Gets the audio Source used for playing back the video's audio. May return nil if the video has no audio, or if Video:setSource is called with a nil argument.
source = Video:getSource()
source | Source | The audio Source used for audio playback, or nil if the video has no audio. |
Gets the VideoStream object used for decoding and controlling the video.
stream = Video:getStream()
stream | VideoStream | The VideoStream used for decoding and controlling the video. |
Gets whether the Video is currently playing.
playing = Video:isPlaying()
playing | boolean | Whether the video is playing. |
Starts playing the Video. In order for the video to appear onscreen it must be drawn with love.graphics.draw.
Video:play()
Sets the current playback position of the Video.
Video:seek( offset )
offset | number | The time in seconds since the beginning of the Video. |
Sets the scaling filters used when drawing the Video.
Video:setFilter( min, mag, anisotropy )
min | FilterMode | The filter mode used when scaling the Video down. |
mag | FilterMode | The filter mode used when scaling the Video up. |
anisotropy (1) | number | Maximum amount of anisotropic filtering used. |
Sets the audio Source used for playing back the video's audio. The audio Source also controls playback speed and synchronization.
Video:setSource( source )
source (nil) | Source | The audio Source used for audio playback, or nil to disable audio synchronization. |
Gets the current playback position of the Video.
seconds = Video:tell()
seconds | number | The time in seconds since the beginning of the Video. |
center
Align text center.
left
Align text left.
right
Align text right.
justify
Align text both left and right.
pie
The arc is drawn like a slice of pie, with the arc circle connected to the center at its end-points.
open
The arc circle's two end-points are unconnected when the arc is drawn as a line. Behaves like the "closed" arc type when the arc is drawn in filled mode.
closed
The arc circle's two end-points are connected to each other.
uniform
Uniform distribution.
normal
Normal (gaussian) distribution.
ellipse
Uniform distribution in an ellipse.
borderellipse
Distribution in an ellipse with particles spawning at the edges of the ellipse.
borderrectangle
Distribution in a rectangle with particles spawning at the edges of the rectangle.
none
No distribution - area spread is disabled.
alphamultiply
The RGB values of what's drawn are multiplied by the alpha values of those colors during blending. This is the default alpha mode.
premultiplied
The RGB values of what's drawn are '''not''' multiplied by the alpha values of those colors during blending. For most blend modes to work correctly with this alpha mode, the colors of a drawn object need to have had their RGB values multiplied by their alpha values at some point previously ("premultiplied alpha").
alpha
Alpha blending (normal). The alpha of what's drawn determines its opacity.
replace
The colors of what's drawn completely replace what was on the screen, with no additional blending. The BlendAlphaMode specified in love.graphics.setBlendMode still affects what happens.
screen
'Screen' blending.
add
The pixel colors of what's drawn are added to the pixel colors already on the screen. The alpha of the screen is not modified.
subtract
The pixel colors of what's drawn are subtracted from the pixel colors already on the screen. The alpha of the screen is not modified.
multiply
The pixel colors of what's drawn are multiplied with the pixel colors already on the screen (darkening them). The alpha of drawn objects is multiplied with the alpha of the screen rather than determining how much the colors on the screen are affected, even when the "alphamultiply" BlendAlphaMode is used.
lighten
The pixel colors of what's drawn are compared to the existing pixel colors, and the larger of the two values for each color component is used. Only works when the "premultiplied" BlendAlphaMode is used in love.graphics.setBlendMode.
darken
The pixel colors of what's drawn are compared to the existing pixel colors, and the smaller of the two values for each color component is used. Only works when the "premultiplied" BlendAlphaMode is used in love.graphics.setBlendMode.
additive
Additive blend mode.
subtractive
Subtractive blend mode.
multiplicative
Multiply blend mode.
premultiplied
Premultiplied alpha blend mode.
equal
* stencil tests: the stencil value of the pixel must be equal to the supplied value. * depth tests: the depth value of the drawn object at that pixel must be equal to the existing depth value of that pixel.
notequal
* stencil tests: the stencil value of the pixel must not be equal to the supplied value. * depth tests: the depth value of the drawn object at that pixel must not be equal to the existing depth value of that pixel.
less
* stencil tests: the stencil value of the pixel must be less than the supplied value. * depth tests: the depth value of the drawn object at that pixel must be less than the existing depth value of that pixel.
lequal
* stencil tests: the stencil value of the pixel must be less than or equal to the supplied value. * depth tests: the depth value of the drawn object at that pixel must be less than or equal to the existing depth value of that pixel.
gequal
* stencil tests: the stencil value of the pixel must be greater than or equal to the supplied value. * depth tests: the depth value of the drawn object at that pixel must be greater than or equal to the existing depth value of that pixel.
greater
* stencil tests: the stencil value of the pixel must be greater than the supplied value. * depth tests: the depth value of the drawn object at that pixel must be greater than the existing depth value of that pixel.
never
Objects will never be drawn.
always
Objects will always be drawn. Effectively disables the depth or stencil test.
back
Back-facing triangles in Meshes are culled (not rendered). The vertex order of a triangle determines whether it is back- or front-facing.
front
Front-facing triangles in Meshes are culled.
none
Both back- and front-facing triangles in Meshes are rendered.
linear
Scale image with linear interpolation.
nearest
Scale image with nearest neighbor interpolation.
clampzero
Whether the "clampzero" WrapMode is supported.
lighten
Whether the "lighten" and "darken" BlendModes are supported.
multicanvasformats
Whether multiple formats can be used in the same love.graphics.setCanvas call.
glsl3
Whether GLSL 3 Shaders can be used.
instancing
Whether mesh instancing is supported.
fullnpot
Whether textures with non-power-of-two dimensions can use mipmapping and the 'repeat' WrapMode.
pixelshaderhighp
Whether pixel shaders can use "highp" 32 bit floating point numbers (as opposed to just 16 bit or lower precision).
shaderderivatives
Whether shaders can use the dFdx, dFdy, and fwidth functions for computing derivatives.
pointsize
The maximum size of points.
texturesize
The maximum width or height of Images and Canvases.
multicanvas
The maximum number of simultaneously active canvases (via love.graphics.setCanvas.)
canvasmsaa
The maximum number of antialiasing samples for a Canvas.
texturelayers
The maximum number of layers in an Array texture.
volumetexturesize
The maximum width, height, or depth of a Volume texture.
cubetexturesize
The maximum width or height of a Cubemap texture.
anisotropy
The maximum amount of anisotropic filtering. Texture:setMipmapFilter internally clamps the given anisotropy value to the system's limit.
uint16
The vertex map is array of unsigned word (16-bit).
uint32
The vertex map is array of unsigned dword (32-bit).
miter
The ends of the line segments beveled in an angle so that they join seamlessly.
none
No cap applied to the ends of the line segments.
bevel
Flattens the point where line segments join together.
fan
The vertices create a "fan" shape with the first vertex acting as the hub point. Can be easily used to draw simple convex polygons.
strip
The vertices create a series of connected triangles using vertices 1, 2, 3, then 3, 2, 4 (note the order), then 3, 4, 5, and so on.
triangles
The vertices create unconnected triangles.
points
The vertices are drawn as unconnected points (see love.graphics.setPointSize.)
none
The Canvas has no mipmaps.
auto
The Canvas has mipmaps. love.graphics.setCanvas can be used to render to a specific mipmap level, or Canvas:generateMipmaps can (re-)compute all mipmap levels based on the base level.
manual
The Canvas has mipmaps, and all mipmap levels will automatically be recomputed when switching away from the Canvas with love.graphics.setCanvas.
top
Particles are inserted at the top of the ParticleSystem's list of particles.
bottom
Particles are inserted at the bottom of the ParticleSystem's list of particles.
random
Particles are inserted at random positions in the ParticleSystem's list of particles.
dynamic
The object's data will change occasionally during its lifetime.
static
The object will not be modified after initial sprites or vertices are added.
stream
The object data will always change between draws.
transform
The transformation stack (love.graphics.translate, love.graphics.rotate, etc.)
all
All love.graphics state, including transform state.
replace
The stencil value of a pixel will be replaced by the value specified in love.graphics.stencil, if any object touches the pixel.
increment
The stencil value of a pixel will be incremented by 1 for each object that touches the pixel. If the stencil value reaches 255 it will stay at 255.
decrement
The stencil value of a pixel will be decremented by 1 for each object that touches the pixel. If the stencil value reaches 0 it will stay at 0.
incrementwrap
The stencil value of a pixel will be incremented by 1 for each object that touches the pixel. If a stencil value of 255 is incremented it will be set to 0.
decrementwrap
The stencil value of a pixel will be decremented by 1 for each object that touches the pixel. If the stencil value of 0 is decremented it will be set to 255.
invert
The stencil value of a pixel will be bitwise-inverted for each object that touches the pixel. If a stencil value of 0 is inverted it will become 255.
2d
Regular 2D texture with width and height.
array
Several same-size 2D textures organized into a single object. Similar to a texture atlas / sprite sheet, but avoids sprite bleeding and other issues.
cube
Cubemap texture with 6 faces. Requires a custom shader (and Shader:send) to use. Sampling from a cube texture in a shader takes a 3D direction vector instead of a texture coordinate.
volume
3D texture with width, height, and depth. Requires a custom shader to use. Volume textures can have texture filtering applied along the 3rd axis.
pervertex
The vertex attribute will have a unique value for each vertex in the Mesh.
perinstance
The vertex attribute will have a unique value for each instance of the Mesh.
clamp
Clamp the texture. Appears only once. The area outside the texture's normal range is colored based on the edge pixels of the texture.
repeat
Repeat the texture. Fills the whole available extent.
mirroredrepeat
Repeat the texture, flipping it each time it repeats. May produce better visual results than the repeat mode when the texture doesn't seamlessly tile.
clampzero
Clamp the texture. Fills the area outside the texture's normal range with transparent black (or opaque black for textures with no alpha channel.)
Determines whether a file can be loaded as CompressedImageData.
compressed = love.image.isCompressed( filename )
filename | string | The filename of the potentially compressed image file. |
compressed | boolean | Whether the file can be loaded as CompressedImageData or not. |
compressed = love.image.isCompressed( fileData )
fileData | FileData | A FileData potentially containing a compressed image. |
compressed | boolean | Whether the FileData can be loaded as CompressedImageData or not. |
Create a new CompressedImageData object from a compressed image file. LÖVE supports several compressed texture formats, enumerated in the CompressedImageFormat page.
compressedImageData = love.image.newCompressedData( filename )
filename | string | The filename of the compressed image file. |
compressedImageData | CompressedImageData | The new CompressedImageData object. |
compressedImageData = love.image.newCompressedData( fileData )
fileData | FileData | A FileData containing a compressed image. |
compressedImageData | CompressedImageData | The new CompressedImageData object. |
Creates a new ImageData object.
imageData = love.image.newImageData( width, height )
width | number | The width of the ImageData. |
height | number | The height of the ImageData. |
imageData | ImageData | The new blank ImageData object. Each pixel's color values, (including the alpha values!) will be set to zero. |
imageData = love.image.newImageData( width, height, format, data )
width | number | The width of the ImageData. |
height | number | The height of the ImageData. |
format ('rgba8') | PixelFormat | The pixel format of the ImageData. |
data (nil) | string | Optional raw byte data to load into the ImageData, in the format specified by ''format''. |
imageData | ImageData | The new ImageData object. |
imageData = love.image.newImageData( width, height, data )
width | number | The width of the ImageData. |
height | number | The height of the ImageData. |
data | string | The data to load into the ImageData (RGBA bytes, left to right and top to bottom). |
imageData | ImageData | The new ImageData object. |
imageData = love.image.newImageData( filename )
filename | string | The filename of the image file. |
imageData | ImageData | The new ImageData object. |
imageData = love.image.newImageData( filedata )
filedata | FileData | The encoded file data to decode into image data. |
imageData | ImageData | The new ImageData object. |
CompressedImageData:getDimensions
Gets the width and height of the CompressedImageData.
width, height = CompressedImageData:getDimensions()
width | number | The width of the CompressedImageData. |
height | number | The height of the CompressedImageData. |
width, height = CompressedImageData:getDimensions( level )
level | number | A mipmap level. Must be in the range of CompressedImageData:getMipmapCount(). |
width | number | The width of a specific mipmap level of the CompressedImageData. |
height | number | The height of a specific mipmap level of the CompressedImageData. |
Gets the format of the CompressedImageData.
format = CompressedImageData:getFormat()
format | CompressedImageFormat | The format of the CompressedImageData. |
Gets the height of the CompressedImageData.
height = CompressedImageData:getHeight()
height | number | The height of the CompressedImageData. |
height = CompressedImageData:getHeight( level )
level | number | A mipmap level. Must be in the range of CompressedImageData:getMipmapCount(). |
height | number | The height of a specific mipmap level of the CompressedImageData. |
CompressedImageData:getMipmapCount
Gets the number of mipmap levels in the CompressedImageData. The base mipmap level (original image) is included in the count.
mipmaps = CompressedImageData:getMipmapCount()
mipmaps | number | The number of mipmap levels stored in the CompressedImageData. |
Gets the width of the CompressedImageData.
width = CompressedImageData:getWidth()
width | number | The width of the CompressedImageData. |
width = CompressedImageData:getWidth( level )
level | number | A mipmap level. Must be in the range of CompressedImageData:getMipmapCount(). |
width | number | The width of a specific mipmap level of the CompressedImageData. |
Encodes the ImageData and optionally writes it to the save directory.
filedata = ImageData:encode( format, filename )
format | ImageFormat | The format to encode the image as. |
filename (nil) | string | The filename to write the file to. If nil, no file will be written but the FileData will still be returned. |
filedata | FileData | The encoded image as a new FileData object. |
ImageData:encode( outFile )
outFile | string | Name of a file to write encoded data to. The format will be automatically deduced from the file extension. |
ImageData:encode( outFile, format )
outFile | string | Name of a file to write encoded data to. |
format | ImageFormat | The format to encode the image in. |
Gets the width and height of the ImageData in pixels.
width, height = ImageData:getDimensions()
width | number | The width of the ImageData in pixels. |
height | number | The height of the ImageData in pixels. |
Gets the height of the ImageData in pixels.
height = ImageData:getHeight()
height | number | The height of the ImageData in pixels. |
Gets the color of a pixel at a specific position in the image.
Valid x and y values start at 0 and go up to image width and height minus 1. Non-integer values are floored.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
r, g, b, a = ImageData:getPixel( x, y )
x | number | The position of the pixel on the x-axis. |
y | number | The position of the pixel on the y-axis. |
r | number | The red component (0-1). |
g | number | The green component (0-1). |
b | number | The blue component (0-1). |
a | number | The alpha component (0-1). |
Gets the width of the ImageData in pixels.
width = ImageData:getWidth()
width | number | The width of the ImageData in pixels. |
Transform an image by applying a function to every pixel.
This function is a higher-order function. It takes another function as a parameter, and calls it once for each pixel in the ImageData.
The passed function is called with six parameters for each pixel in turn. The parameters are numbers that represent the x and y coordinates of the pixel and its red, green, blue and alpha values. The function should return the new red, green, blue, and alpha values for that pixel.
function pixelFunction(x, y, r, g, b, a)
-- template for defining your own pixel mapping function
-- perform computations giving the new values for r, g, b and a
-- ...
return r, g, b, a
end
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
ImageData:mapPixel( pixelFunction, x, y, width, height )
pixelFunction | function | Function to apply to every pixel. |
x (0) | number | The x-axis of the top-left corner of the area within the ImageData to apply the function to. |
y (0) | number | The y-axis of the top-left corner of the area within the ImageData to apply the function to. |
width (ImageData:getWidth()) | number | The width of the area within the ImageData to apply the function to. |
height (ImageData:getHeight()) | number | The height of the area within the ImageData to apply the function to. |
Paste into ImageData from another source ImageData.
ImageData:paste( source, dx, dy, sx, sy, sw, sh )
source | ImageData | Source ImageData from which to copy. |
dx | number | Destination top-left position on x-axis. |
dy | number | Destination top-left position on y-axis. |
sx | number | Source top-left position on x-axis. |
sy | number | Source top-left position on y-axis. |
sw | number | Source width. |
sh | number | Source height. |
Sets the color of a pixel at a specific position in the image.
Valid x and y values start at 0 and go up to image width and height minus 1.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
ImageData:setPixel( x, y, r, g, b, a )
x | number | The position of the pixel on the x-axis. |
y | number | The position of the pixel on the y-axis. |
r | number | The red component (0-1). |
g | number | The green component (0-1). |
b | number | The blue component (0-1). |
a | number | The alpha component (0-1). |
ImageData:setPixel( x, y, color )
x | number | The position of the pixel on the x-axis. |
y | number | The position of the pixel on the y-axis. |
color | table | A numerical indexed table with the red, green, blue and alpha values as numbers. |
Gets the pixel format of the ImageData.
format = ImageData:getFormat()
format | PixelFormat | The pixel format the ImageData was created with. |
DXT1
The DXT1 format. RGB data at 4 bits per pixel (compared to 32 bits for ImageData and regular Images.) Suitable for fully opaque images on desktop systems.
DXT3
The DXT3 format. RGBA data at 8 bits per pixel. Smooth variations in opacity do not mix well with this format.
DXT5
The DXT5 format. RGBA data at 8 bits per pixel. Recommended for images with varying opacity on desktop systems.
BC4
The BC4 format (also known as 3Dc+ or ATI1.) Stores just the red channel, at 4 bits per pixel.
BC4s
The signed variant of the BC4 format. Same as above but pixel values in the texture are in the range of 1 instead of 1 in shaders.
BC5
The BC5 format (also known as 3Dc or ATI2.) Stores red and green channels at 8 bits per pixel.
BC5s
The signed variant of the BC5 format.
BC6h
The BC6H format. Stores half-precision floating-point RGB data in the range of 65504 at 8 bits per pixel. Suitable for HDR images on desktop systems.
BC6hs
The signed variant of the BC6H format. Stores RGB data in the range of +65504.
BC7
The BC7 format (also known as BPTC.) Stores RGB or RGBA data at 8 bits per pixel.
ETC1
The ETC1 format. RGB data at 4 bits per pixel. Suitable for fully opaque images on older Android devices.
ETC2rgb
The RGB variant of the ETC2 format. RGB data at 4 bits per pixel. Suitable for fully opaque images on newer mobile devices.
ETC2rgba
The RGBA variant of the ETC2 format. RGBA data at 8 bits per pixel. Recommended for images with varying opacity on newer mobile devices.
ETC2rgba1
The RGBA variant of the ETC2 format where pixels are either fully transparent or fully opaque. RGBA data at 4 bits per pixel.
EACr
The single-channel variant of the EAC format. Stores just the red channel, at 4 bits per pixel.
EACrs
The signed single-channel variant of the EAC format. Same as above but pixel values in the texture are in the range of 1 instead of 1 in shaders.
EACrg
The two-channel variant of the EAC format. Stores red and green channels at 8 bits per pixel.
EACrgs
The signed two-channel variant of the EAC format.
PVR1rgb2
The 2 bit per pixel RGB variant of the PVRTC1 format. Stores RGB data at 2 bits per pixel. Textures compressed with PVRTC1 formats must be square and power-of-two sized.
PVR1rgb4
The 4 bit per pixel RGB variant of the PVRTC1 format. Stores RGB data at 4 bits per pixel.
PVR1rgba2
The 2 bit per pixel RGBA variant of the PVRTC1 format.
PVR1rgba4
The 4 bit per pixel RGBA variant of the PVRTC1 format.
ASTC4x4
The 4x4 pixels per block variant of the ASTC format. RGBA data at 8 bits per pixel.
ASTC5x4
The 5x4 pixels per block variant of the ASTC format. RGBA data at 6.4 bits per pixel.
ASTC5x5
The 5x5 pixels per block variant of the ASTC format. RGBA data at 5.12 bits per pixel.
ASTC6x5
The 6x5 pixels per block variant of the ASTC format. RGBA data at 4.27 bits per pixel.
ASTC6x6
The 6x6 pixels per block variant of the ASTC format. RGBA data at 3.56 bits per pixel.
ASTC8x5
The 8x5 pixels per block variant of the ASTC format. RGBA data at 3.2 bits per pixel.
ASTC8x6
The 8x6 pixels per block variant of the ASTC format. RGBA data at 2.67 bits per pixel.
ASTC8x8
The 8x8 pixels per block variant of the ASTC format. RGBA data at 2 bits per pixel.
ASTC10x5
The 10x5 pixels per block variant of the ASTC format. RGBA data at 2.56 bits per pixel.
ASTC10x6
The 10x6 pixels per block variant of the ASTC format. RGBA data at 2.13 bits per pixel.
ASTC10x8
The 10x8 pixels per block variant of the ASTC format. RGBA data at 1.6 bits per pixel.
ASTC10x10
The 10x10 pixels per block variant of the ASTC format. RGBA data at 1.28 bits per pixel.
ASTC12x10
The 12x10 pixels per block variant of the ASTC format. RGBA data at 1.07 bits per pixel.
ASTC12x12
The 12x12 pixels per block variant of the ASTC format. RGBA data at 0.89 bits per pixel.
unknown
Indicates unknown pixel format, used internally.
normal
Alias for rgba8, or srgba8 if gamma-correct rendering is enabled.
hdr
A format suitable for high dynamic range content - an alias for the rgba16f format, normally.
r8
Single-channel (red component) format (8 bpp).
rg8
Two channels (red and green components) with 8 bits per channel (16 bpp).
rgba8
8 bits per channel (32 bpp) RGBA. Color channel values range from 0-255 (0-1 in shaders).
srgba8
gamma-correct version of rgba8.
r16
Single-channel (red component) format (16 bpp).
rg16
Two channels (red and green components) with 16 bits per channel (32 bpp).
rgba16
16 bits per channel (64 bpp) RGBA. Color channel values range from 0-65535 (0-1 in shaders).
r16f
Floating point single-channel format (16 bpp). Color values can range from [-65504, +65504].
rg16f
Floating point two-channel format with 16 bits per channel (32 bpp). Color values can range from [-65504, +65504].
rgba16f
Floating point RGBA with 16 bits per channel (64 bpp). Color values can range from [-65504, +65504].
r32f
Floating point single-channel format (32 bpp).
rg32f
Floating point two-channel format with 32 bits per channel (64 bpp).
rgba32f
Floating point RGBA with 32 bits per channel (128 bpp).
la8
Same as rg8, but accessed as (L, L, L, A)
rgba4
4 bits per channel (16 bpp) RGBA.
rgb5a1
RGB with 5 bits each, and a 1-bit alpha channel (16 bpp).
rgb565
RGB with 5, 6, and 5 bits each, respectively (16 bpp). There is no alpha channel in this format.
rgb10a2
RGB with 10 bits per channel, and a 2-bit alpha channel (32 bpp).
rg11b10f
Floating point RGB with 11 bits in the red and green channels, and 10 bits in the blue channel (32 bpp). There is no alpha channel. Color values can range from [0, +65024].
stencil8
No depth buffer and 8-bit stencil buffer.
depth16
16-bit depth buffer and no stencil buffer.
depth24
24-bit depth buffer and no stencil buffer.
depth32f
32-bit float depth buffer and no stencil buffer.
depth24stencil8
24-bit depth buffer and 8-bit stencil buffer.
depth32fstencil8
32-bit float depth buffer and 8-bit stencil buffer.
DXT1
The DXT1 format. RGB data at 4 bits per pixel (compared to 32 bits for ImageData and regular Images.) Suitable for fully opaque images on desktop systems.
DXT3
The DXT3 format. RGBA data at 8 bits per pixel. Smooth variations in opacity do not mix well with this format.
DXT5
The DXT5 format. RGBA data at 8 bits per pixel. Recommended for images with varying opacity on desktop systems.
BC4
The BC4 format (also known as 3Dc+ or ATI1.) Stores just the red channel, at 4 bits per pixel.
BC4s
The signed variant of the BC4 format. Same as above but pixel values in the texture are in the range of 1 instead of 1 in shaders.
BC5
The BC5 format (also known as 3Dc or ATI2.) Stores red and green channels at 8 bits per pixel.
BC5s
The signed variant of the BC5 format.
BC6h
The BC6H format. Stores half-precision floating-point RGB data in the range of 65504 at 8 bits per pixel. Suitable for HDR images on desktop systems.
BC6hs
The signed variant of the BC6H format. Stores RGB data in the range of +65504.
BC7
The BC7 format (also known as BPTC.) Stores RGB or RGBA data at 8 bits per pixel.
ETC1
The ETC1 format. RGB data at 4 bits per pixel. Suitable for fully opaque images on older Android devices.
ETC2rgb
The RGB variant of the ETC2 format. RGB data at 4 bits per pixel. Suitable for fully opaque images on newer mobile devices.
ETC2rgba
The RGBA variant of the ETC2 format. RGBA data at 8 bits per pixel. Recommended for images with varying opacity on newer mobile devices.
ETC2rgba1
The RGBA variant of the ETC2 format where pixels are either fully transparent or fully opaque. RGBA data at 4 bits per pixel.
EACr
The single-channel variant of the EAC format. Stores just the red channel, at 4 bits per pixel.
EACrs
The signed single-channel variant of the EAC format. Same as above but pixel values in the texture are in the range of 1 instead of 1 in shaders.
EACrg
The two-channel variant of the EAC format. Stores red and green channels at 8 bits per pixel.
EACrgs
The signed two-channel variant of the EAC format.
PVR1rgb2
The 2 bit per pixel RGB variant of the PVRTC1 format. Stores RGB data at 2 bits per pixel. Textures compressed with PVRTC1 formats must be square and power-of-two sized.
PVR1rgb4
The 4 bit per pixel RGB variant of the PVRTC1 format. Stores RGB data at 4 bits per pixel.
PVR1rgba2
The 2 bit per pixel RGBA variant of the PVRTC1 format.
PVR1rgba4
The 4 bit per pixel RGBA variant of the PVRTC1 format.
ASTC4x4
The 4x4 pixels per block variant of the ASTC format. RGBA data at 8 bits per pixel.
ASTC5x4
The 5x4 pixels per block variant of the ASTC format. RGBA data at 6.4 bits per pixel.
ASTC5x5
The 5x5 pixels per block variant of the ASTC format. RGBA data at 5.12 bits per pixel.
ASTC6x5
The 6x5 pixels per block variant of the ASTC format. RGBA data at 4.27 bits per pixel.
ASTC6x6
The 6x6 pixels per block variant of the ASTC format. RGBA data at 3.56 bits per pixel.
ASTC8x5
The 8x5 pixels per block variant of the ASTC format. RGBA data at 3.2 bits per pixel.
ASTC8x6
The 8x6 pixels per block variant of the ASTC format. RGBA data at 2.67 bits per pixel.
ASTC8x8
The 8x8 pixels per block variant of the ASTC format. RGBA data at 2 bits per pixel.
ASTC10x5
The 10x5 pixels per block variant of the ASTC format. RGBA data at 2.56 bits per pixel.
ASTC10x6
The 10x6 pixels per block variant of the ASTC format. RGBA data at 2.13 bits per pixel.
ASTC10x8
The 10x8 pixels per block variant of the ASTC format. RGBA data at 1.6 bits per pixel.
ASTC10x10
The 10x10 pixels per block variant of the ASTC format. RGBA data at 1.28 bits per pixel.
ASTC12x10
The 12x10 pixels per block variant of the ASTC format. RGBA data at 1.07 bits per pixel.
ASTC12x12
The 12x12 pixels per block variant of the ASTC format. RGBA data at 0.89 bits per pixel.
love.joystick.getGamepadMappingString
Gets the full gamepad mapping string of the Joysticks which have the given GUID, or nil if the GUID isn't recognized as a gamepad.
The mapping string contains binding information used to map the Joystick's buttons an axes to the standard gamepad layout, and can be used later with love.joystick.loadGamepadMappings.
mappingstring = love.joystick.getGamepadMappingString( guid )
guid | string | The GUID value to get the mapping string for. |
mappingstring | string | A string containing the Joystick's gamepad mappings, or nil if the GUID is not recognized as a gamepad. |
love.joystick.getJoystickCount
Gets the number of connected joysticks.
joystickcount = love.joystick.getJoystickCount()
joystickcount | number | The number of connected joysticks. |
Gets a list of connected Joysticks.
joysticks = love.joystick.getJoysticks()
joysticks | table | The list of currently connected Joysticks. |
love.joystick.loadGamepadMappings
Loads a gamepad mappings string or file created with love.joystick.saveGamepadMappings.
It also recognizes any SDL gamecontroller mapping string, such as those created with Steam's Big Picture controller configure interface, or this nice database. If a new mapping is loaded for an already known controller GUID, the later version will overwrite the one currently loaded.
love.joystick.loadGamepadMappings( filename )
filename | string | The filename to load the mappings string from. |
love.joystick.loadGamepadMappings( mappings )
mappings | string | The mappings string to load. |
love.joystick.saveGamepadMappings
Saves the virtual gamepad mappings of all recognized as gamepads and have either been recently used or their gamepad bindings have been modified.
The mappings are stored as a string for use with love.joystick.loadGamepadMappings.
mappings = love.joystick.saveGamepadMappings( filename )
filename | string | The filename to save the mappings string to. |
mappings | string | The mappings string that was written to the file. |
mappings = love.joystick.saveGamepadMappings()
mappings | string | The mappings string. |
love.joystick.setGamepadMapping
Binds a virtual gamepad input to a button, axis or hat for all Joysticks of a certain type. For example, if this function is used with a GUID returned by a Dualshock 3 controller in OS X, the binding will affect Joystick:getGamepadAxis and Joystick:isGamepadDown for ''all'' Dualshock 3 controllers used with the game when run in OS X.
LÖVE includes built-in gamepad bindings for many common controllers. This function lets you change the bindings or add new ones for types of Joysticks which aren't recognized as gamepads by default.
The virtual gamepad buttons and axes are designed around the Xbox 360 controller layout.
success = love.joystick.setGamepadMapping( guid, button, inputtype, inputindex, hatdir )
guid | string | The OS-dependent GUID for the type of Joystick the binding will affect. |
button | GamepadButton | The virtual gamepad button to bind. |
inputtype | JoystickInputType | The type of input to bind the virtual gamepad button to. |
inputindex | number | The index of the axis, button, or hat to bind the virtual gamepad button to. |
hatdir (nil) | JoystickHat | The direction of the hat, if the virtual gamepad button will be bound to a hat. nil otherwise. |
success | boolean | Whether the virtual gamepad button was successfully bound. |
success = love.joystick.setGamepadMapping( guid, axis, inputtype, inputindex, hatdir )
guid | string | The OS-dependent GUID for the type of Joystick the binding will affect. |
axis | GamepadAxis | The virtual gamepad axis to bind. |
inputtype | JoystickInputType | The type of input to bind the virtual gamepad axis to. |
inputindex | number | The index of the axis, button, or hat to bind the virtual gamepad axis to. |
hatdir (nil) | JoystickHat | The direction of the hat, if the virtual gamepad axis will be bound to a hat. nil otherwise. |
success | boolean | Whether the virtual gamepad axis was successfully bound. |
Gets the direction of each axis.
axisDir1, axisDir2, axisDirN = Joystick:getAxes()
axisDir1 | number | Direction of axis1. |
axisDir2 | number | Direction of axis2. |
axisDirN | number | Direction of axisN. |
Gets the direction of an axis.
direction = Joystick:getAxis( axis )
axis | number | The index of the axis to be checked. |
direction | number | Current value of the axis. |
Gets the number of axes on the joystick.
axes = Joystick:getAxisCount()
axes | number | The number of axes available. |
Gets the number of buttons on the joystick.
buttons = Joystick:getButtonCount()
buttons | number | The number of buttons available. |
Gets the USB vendor ID, product ID, and product version numbers of joystick which consistent across operating systems.
Can be used to show different icons, etc. for different gamepads.
vendorID, productID, productVersion = Joystick:getDeviceInfo()
vendorID | number | The USB vendor ID of the joystick. |
productID | number | The USB product ID of the joystick. |
productVersion | number | The product version of the joystick. |
Gets a stable GUID unique to the type of the physical joystick which does not change over time. For example, all Sony Dualshock 3 controllers in OS X have the same GUID. The value is platform-dependent.
guid = Joystick:getGUID()
guid | string | The Joystick type's OS-dependent unique identifier. |
Gets the direction of a virtual gamepad axis. If the Joystick isn't recognized as a gamepad or isn't connected, this function will always return 0.
direction = Joystick:getGamepadAxis( axis )
axis | GamepadAxis | The virtual axis to be checked. |
direction | number | Current value of the axis. |
Gets the button, axis or hat that a virtual gamepad input is bound to.
inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( axis )
axis | GamepadAxis | The virtual gamepad axis to get the binding for. |
inputtype | JoystickInputType | The type of input the virtual gamepad axis is bound to. |
inputindex | number | The index of the Joystick's button, axis or hat that the virtual gamepad axis is bound to. |
hatdirection | JoystickHat | The direction of the hat, if the virtual gamepad axis is bound to a hat. nil otherwise. |
inputtype, inputindex, hatdirection = Joystick:getGamepadMapping( button )
button | GamepadButton | The virtual gamepad button to get the binding for. |
inputtype | JoystickInputType | The type of input the virtual gamepad button is bound to. |
inputindex | number | The index of the Joystick's button, axis or hat that the virtual gamepad button is bound to. |
hatdirection | JoystickHat | The direction of the hat, if the virtual gamepad button is bound to a hat. nil otherwise. |
Joystick:getGamepadMappingString
Gets the full gamepad mapping string of this Joystick, or nil if it's not recognized as a gamepad.
The mapping string contains binding information used to map the Joystick's buttons an axes to the standard gamepad layout, and can be used later with love.joystick.loadGamepadMappings.
mappingstring = Joystick:getGamepadMappingString()
mappingstring | string | A string containing the Joystick's gamepad mappings, or nil if the Joystick is not recognized as a gamepad. |
Gets the direction of the Joystick's hat.
direction = Joystick:getHat( hat )
hat | number | The index of the hat to be checked. |
direction | JoystickHat | The direction the hat is pushed. |
Gets the number of hats on the joystick.
hats = Joystick:getHatCount()
hats | number | How many hats the joystick has. |
Gets the joystick's unique identifier. The identifier will remain the same for the life of the game, even when the Joystick is disconnected and reconnected, but it '''will''' change when the game is re-launched.
id, instanceid = Joystick:getID()
id | number | The Joystick's unique identifier. Remains the same as long as the game is running. |
instanceid | number | Unique instance identifier. Changes every time the Joystick is reconnected. nil if the Joystick is not connected. |
Gets the name of the joystick.
name = Joystick:getName()
name | string | The name of the joystick. |
Gets the current vibration motor strengths on a Joystick with rumble support.
left, right = Joystick:getVibration()
left | number | Current strength of the left vibration motor on the Joystick. |
right | number | Current strength of the right vibration motor on the Joystick. |
Gets whether the Joystick is connected.
connected = Joystick:isConnected()
connected | boolean | True if the Joystick is currently connected, false otherwise. |
Checks if a button on the Joystick is pressed.
LÖVE 0.9.0 had a bug which required the button indices passed to Joystick:isDown to be 0-based instead of 1-based, for example button 1 would be 0 for this function. It was fixed in 0.9.1.
anyDown = Joystick:isDown( buttonN )
buttonN | number | The index of a button to check. |
anyDown | boolean | True if any supplied button is down, false if not. |
Gets whether the Joystick is recognized as a gamepad. If this is the case, the Joystick's buttons and axes can be used in a standardized manner across different operating systems and joystick models via Joystick:getGamepadAxis, Joystick:isGamepadDown, love.gamepadpressed, and related functions.
LÖVE automatically recognizes most popular controllers with a similar layout to the Xbox 360 controller as gamepads, but you can add more with love.joystick.setGamepadMapping.
isgamepad = Joystick:isGamepad()
isgamepad | boolean | True if the Joystick is recognized as a gamepad, false otherwise. |
Checks if a virtual gamepad button on the Joystick is pressed. If the Joystick is not recognized as a Gamepad or isn't connected, then this function will always return false.
anyDown = Joystick:isGamepadDown( buttonN )
buttonN | GamepadButton | The gamepad button to check. |
anyDown | boolean | True if any supplied button is down, false if not. |
Gets whether the Joystick supports vibration.
supported = Joystick:isVibrationSupported()
supported | boolean | True if rumble / force feedback vibration is supported on this Joystick, false if not. |
Sets the vibration motor speeds on a Joystick with rumble support. Most common gamepads have this functionality, although not all drivers give proper support. Use Joystick:isVibrationSupported to check.
success = Joystick:setVibration( left, right )
left | number | Strength of the left vibration motor on the Joystick. Must be in the range of 1. |
right | number | Strength of the right vibration motor on the Joystick. Must be in the range of 1. |
success | boolean | True if the vibration was successfully applied, false if not. |
success = Joystick:setVibration()
success | boolean | True if the vibration was successfully disabled, false if not. |
success = Joystick:setVibration( left, right, duration )
left | number | Strength of the left vibration motor on the Joystick. Must be in the range of 1. |
right | number | Strength of the right vibration motor on the Joystick. Must be in the range of 1. |
duration (-1) | number | The duration of the vibration in seconds. A negative value means infinite duration. |
success | boolean | True if the vibration was successfully applied, false if not. |
leftx
The x-axis of the left thumbstick.
lefty
The y-axis of the left thumbstick.
rightx
The x-axis of the right thumbstick.
righty
The y-axis of the right thumbstick.
triggerleft
Left analog trigger.
triggerright
Right analog trigger.
a
Bottom face button (A).
b
Right face button (B).
x
Left face button (X).
y
Top face button (Y).
back
Back button.
guide
Guide button.
start
Start button.
leftstick
Left stick click button.
rightstick
Right stick click button.
leftshoulder
Left bumper.
rightshoulder
Right bumper.
dpup
D-pad up.
dpdown
D-pad down.
dpleft
D-pad left.
dpright
D-pad right.
love.keyboard.getKeyFromScancode
Gets the key corresponding to the given hardware scancode.
Unlike key constants, Scancodes are keyboard layout-independent. For example the scancode 'w' will be generated if the key in the same place as the 'w' key on an American keyboard is pressed, no matter what the key is labelled or what the user's operating system settings are.
Scancodes are useful for creating default controls that have the same physical locations on on all systems.
key = love.keyboard.getKeyFromScancode( scancode )
scancode | Scancode | The scancode to get the key from. |
key | KeyConstant | The key corresponding to the given scancode, or 'unknown' if the scancode doesn't map to a KeyConstant on the current system. |
love.keyboard.getScancodeFromKey
Gets the hardware scancode corresponding to the given key.
Unlike key constants, Scancodes are keyboard layout-independent. For example the scancode 'w' will be generated if the key in the same place as the 'w' key on an American keyboard is pressed, no matter what the key is labelled or what the user's operating system settings are.
Scancodes are useful for creating default controls that have the same physical locations on on all systems.
scancode = love.keyboard.getScancodeFromKey( key )
key | KeyConstant | The key to get the scancode from. |
scancode | Scancode | The scancode corresponding to the given key, or 'unknown' if the given key has no known physical representation on the current system. |
Gets whether key repeat is enabled.
enabled = love.keyboard.hasKeyRepeat()
enabled | boolean | Whether key repeat is enabled. |
love.keyboard.hasScreenKeyboard
Gets whether screen keyboard is supported.
supported = love.keyboard.hasScreenKeyboard()
supported | boolean | Whether screen keyboard is supported. |
Gets whether text input events are enabled.
enabled = love.keyboard.hasTextInput()
enabled | boolean | Whether text input events are enabled. |
Checks whether a certain key is down. Not to be confused with love.keypressed or love.keyreleased.
down = love.keyboard.isDown( key )
key | KeyConstant | The key to check. |
down | boolean | True if the key is down, false if not. |
anyDown = love.keyboard.isDown( key, ... )
key | KeyConstant | A key to check. |
... | KeyConstant | Additional keys to check. |
anyDown | boolean | True if any supplied key is down, false if not. |
Checks whether the specified Scancodes are pressed. Not to be confused with love.keypressed or love.keyreleased.
Unlike regular KeyConstants, Scancodes are keyboard layout-independent. The scancode 'w' is used if the key in the same place as the 'w' key on an American keyboard is pressed, no matter what the key is labelled or what the user's operating system settings are.
down = love.keyboard.isScancodeDown( scancode, ... )
scancode | Scancode | A Scancode to check. |
... | Scancode | Additional Scancodes to check. |
down | boolean | True if any supplied Scancode is down, false if not. |
Enables or disables key repeat for love.keypressed. It is disabled by default.
love.keyboard.setKeyRepeat( enable )
enable | boolean | Whether repeat keypress events should be enabled when a key is held down. |
Enables or disables text input events. It is enabled by default on Windows, Mac, and Linux, and disabled by default on iOS and Android.
On touch devices, this shows the system's native on-screen keyboard when it's enabled.
love.keyboard.setTextInput( enable )
enable | boolean | Whether text input events should be enabled. |
love.keyboard.setTextInput( enable, x, y, w, h )
enable | boolean | Whether text input events should be enabled. |
x | number | Text rectangle x position. |
y | number | Text rectangle y position. |
w | number | Text rectangle width. |
h | number | Text rectangle height. |
a
The A key
b
The B key
c
The C key
d
The D key
e
The E key
f
The F key
g
The G key
h
The H key
i
The I key
j
The J key
k
The K key
l
The L key
m
The M key
n
The N key
o
The O key
p
The P key
q
The Q key
r
The R key
s
The S key
t
The T key
u
The U key
v
The V key
w
The W key
x
The X key
y
The Y key
z
The Z key
0
The zero key
1
The one key
2
The two key
3
The three key
4
The four key
5
The five key
6
The six key
7
The seven key
8
The eight key
9
The nine key
space
Space key
!
Exclamation mark key
"
Double quote key
#
Hash key
$
Dollar key
&
Ampersand key
'
Single quote key
(
Left parenthesis key
)
Right parenthesis key
*
Asterisk key
+
Plus key
,
Comma key
-
Hyphen-minus key
.
Full stop key
/
Slash key
:
Colon key
;
Semicolon key
<
Less-than key
=
Equal key
>
Greater-than key
?
Question mark key
@
At sign key
[
Left square bracket key
\
Backslash key
]
Right square bracket key
^
Caret key
_
Underscore key
`
Grave accent key
kp0
The numpad zero key
kp1
The numpad one key
kp2
The numpad two key
kp3
The numpad three key
kp4
The numpad four key
kp5
The numpad five key
kp6
The numpad six key
kp7
The numpad seven key
kp8
The numpad eight key
kp9
The numpad nine key
kp.
The numpad decimal point key
kp/
The numpad division key
kp*
The numpad multiplication key
kp-
The numpad substraction key
kp+
The numpad addition key
kpenter
The numpad enter key
kp=
The numpad equals key
up
Up cursor key
down
Down cursor key
right
Right cursor key
left
Left cursor key
home
Home key
end
End key
pageup
Page up key
pagedown
Page down key
insert
Insert key
backspace
Backspace key
tab
Tab key
clear
Clear key
return
Return key
delete
Delete key
f1
The 1st function key
f2
The 2nd function key
f3
The 3rd function key
f4
The 4th function key
f5
The 5th function key
f6
The 6th function key
f7
The 7th function key
f8
The 8th function key
f9
The 9th function key
f10
The 10th function key
f11
The 11th function key
f12
The 12th function key
f13
The 13th function key
f14
The 14th function key
f15
The 15th function key
numlock
Num-lock key
capslock
Caps-lock key
scrollock
Scroll-lock key
rshift
Right shift key
lshift
Left shift key
rctrl
Right control key
lctrl
Left control key
ralt
Right alt key
lalt
Left alt key
rmeta
Right meta key
lmeta
Left meta key
lsuper
Left super key
rsuper
Right super key
mode
Mode key
compose
Compose key
pause
Pause key
escape
Escape key
help
Help key
Print key
sysreq
System request key
break
Break key
menu
Menu key
power
Power key
euro
Euro (€) key
undo
Undo key
www
WWW key
Mail key
calculator
Calculator key
appsearch
Application search key
apphome
Application home key
appback
Application back key
appforward
Application forward key
apprefresh
Application refresh key
appbookmarks
Application bookmarks key
a
The 'A' key on an American layout.
b
The 'B' key on an American layout.
c
The 'C' key on an American layout.
d
The 'D' key on an American layout.
e
The 'E' key on an American layout.
f
The 'F' key on an American layout.
g
The 'G' key on an American layout.
h
The 'H' key on an American layout.
i
The 'I' key on an American layout.
j
The 'J' key on an American layout.
k
The 'K' key on an American layout.
l
The 'L' key on an American layout.
m
The 'M' key on an American layout.
n
The 'N' key on an American layout.
o
The 'O' key on an American layout.
p
The 'P' key on an American layout.
q
The 'Q' key on an American layout.
r
The 'R' key on an American layout.
s
The 'S' key on an American layout.
t
The 'T' key on an American layout.
u
The 'U' key on an American layout.
v
The 'V' key on an American layout.
w
The 'W' key on an American layout.
x
The 'X' key on an American layout.
y
The 'Y' key on an American layout.
z
The 'Z' key on an American layout.
1
The '1' key on an American layout.
2
The '2' key on an American layout.
3
The '3' key on an American layout.
4
The '4' key on an American layout.
5
The '5' key on an American layout.
6
The '6' key on an American layout.
7
The '7' key on an American layout.
8
The '8' key on an American layout.
9
The '9' key on an American layout.
0
The '0' key on an American layout.
return
The 'return' / 'enter' key on an American layout.
escape
The 'escape' key on an American layout.
backspace
The 'backspace' key on an American layout.
tab
The 'tab' key on an American layout.
space
The spacebar on an American layout.
-
The minus key on an American layout.
=
The equals key on an American layout.
[
The left-bracket key on an American layout.
]
The right-bracket key on an American layout.
\
The backslash key on an American layout.
nonus#
The non-U.S. hash scancode.
;
The semicolon key on an American layout.
'
The apostrophe key on an American layout.
`
The back-tick / grave key on an American layout.
,
The comma key on an American layout.
.
The period key on an American layout.
/
The forward-slash key on an American layout.
capslock
The capslock key on an American layout.
f1
The F1 key on an American layout.
f2
The F2 key on an American layout.
f3
The F3 key on an American layout.
f4
The F4 key on an American layout.
f5
The F5 key on an American layout.
f6
The F6 key on an American layout.
f7
The F7 key on an American layout.
f8
The F8 key on an American layout.
f9
The F9 key on an American layout.
f10
The F10 key on an American layout.
f11
The F11 key on an American layout.
f12
The F12 key on an American layout.
f13
The F13 key on an American layout.
f14
The F14 key on an American layout.
f15
The F15 key on an American layout.
f16
The F16 key on an American layout.
f17
The F17 key on an American layout.
f18
The F18 key on an American layout.
f19
The F19 key on an American layout.
f20
The F20 key on an American layout.
f21
The F21 key on an American layout.
f22
The F22 key on an American layout.
f23
The F23 key on an American layout.
f24
The F24 key on an American layout.
lctrl
The left control key on an American layout.
lshift
The left shift key on an American layout.
lalt
The left alt / option key on an American layout.
lgui
The left GUI (command / windows / super) key on an American layout.
rctrl
The right control key on an American layout.
rshift
The right shift key on an American layout.
ralt
The right alt / option key on an American layout.
rgui
The right GUI (command / windows / super) key on an American layout.
printscreen
The printscreen key on an American layout.
scrolllock
The scroll-lock key on an American layout.
pause
The pause key on an American layout.
insert
The insert key on an American layout.
home
The home key on an American layout.
numlock
The numlock / clear key on an American layout.
pageup
The page-up key on an American layout.
delete
The forward-delete key on an American layout.
end
The end key on an American layout.
pagedown
The page-down key on an American layout.
right
The right-arrow key on an American layout.
left
The left-arrow key on an American layout.
down
The down-arrow key on an American layout.
up
The up-arrow key on an American layout.
nonusbackslash
The non-U.S. backslash scancode.
application
The application key on an American layout. Windows contextual menu, compose key.
execute
The 'execute' key on an American layout.
help
The 'help' key on an American layout.
menu
The 'menu' key on an American layout.
select
The 'select' key on an American layout.
stop
The 'stop' key on an American layout.
again
The 'again' key on an American layout.
undo
The 'undo' key on an American layout.
cut
The 'cut' key on an American layout.
copy
The 'copy' key on an American layout.
paste
The 'paste' key on an American layout.
find
The 'find' key on an American layout.
kp/
The keypad forward-slash key on an American layout.
kp*
The keypad '*' key on an American layout.
kp-
The keypad minus key on an American layout.
kp+
The keypad plus key on an American layout.
kp=
The keypad equals key on an American layout.
kpenter
The keypad enter key on an American layout.
kp1
The keypad '1' key on an American layout.
kp2
The keypad '2' key on an American layout.
kp3
The keypad '3' key on an American layout.
kp4
The keypad '4' key on an American layout.
kp5
The keypad '5' key on an American layout.
kp6
The keypad '6' key on an American layout.
kp7
The keypad '7' key on an American layout.
kp8
The keypad '8' key on an American layout.
kp9
The keypad '9' key on an American layout.
kp0
The keypad '0' key on an American layout.
kp.
The keypad period key on an American layout.
international1
The 1st international key on an American layout. Used on Asian keyboards.
international2
The 2nd international key on an American layout.
international3
The 3rd international key on an American layout. Yen.
international4
The 4th international key on an American layout.
international5
The 5th international key on an American layout.
international6
The 6th international key on an American layout.
international7
The 7th international key on an American layout.
international8
The 8th international key on an American layout.
international9
The 9th international key on an American layout.
lang1
Hangul/English toggle scancode.
lang2
Hanja conversion scancode.
lang3
Katakana scancode.
lang4
Hiragana scancode.
lang5
Zenkaku/Hankaku scancode.
mute
The mute key on an American layout.
volumeup
The volume up key on an American layout.
volumedown
The volume down key on an American layout.
audionext
The audio next track key on an American layout.
audioprev
The audio previous track key on an American layout.
audiostop
The audio stop key on an American layout.
audioplay
The audio play key on an American layout.
audiomute
The audio mute key on an American layout.
mediaselect
The media select key on an American layout.
www
The 'WWW' key on an American layout.
The Mail key on an American layout.
calculator
The calculator key on an American layout.
computer
The 'computer' key on an American layout.
acsearch
The AC Search key on an American layout.
achome
The AC Home key on an American layout.
acback
The AC Back key on an American layout.
acforward
The AC Forward key on an American layout.
acstop
Th AC Stop key on an American layout.
acrefresh
The AC Refresh key on an American layout.
acbookmarks
The AC Bookmarks key on an American layout.
power
The system power scancode.
brightnessdown
The brightness-down scancode.
brightnessup
The brightness-up scancode.
displayswitch
The display switch scancode.
kbdillumtoggle
The keyboard illumination toggle scancode.
kbdillumdown
The keyboard illumination down scancode.
kbdillumup
The keyboard illumination up scancode.
eject
The eject scancode.
sleep
The system sleep scancode.
alterase
The alt-erase key on an American layout.
sysreq
The sysreq key on an American layout.
cancel
The 'cancel' key on an American layout.
clear
The 'clear' key on an American layout.
prior
The 'prior' key on an American layout.
return2
The 'return2' key on an American layout.
separator
The 'separator' key on an American layout.
out
The 'out' key on an American layout.
oper
The 'oper' key on an American layout.
clearagain
The 'clearagain' key on an American layout.
crsel
The 'crsel' key on an American layout.
exsel
The 'exsel' key on an American layout.
kp00
The keypad 00 key on an American layout.
kp000
The keypad 000 key on an American layout.
thsousandsseparator
The thousands-separator key on an American layout.
decimalseparator
The decimal separator key on an American layout.
currencyunit
The currency unit key on an American layout.
currencysubunit
The currency sub-unit key on an American layout.
app1
The 'app1' scancode.
app2
The 'app2' scancode.
unknown
An unknown key.
Converts a color from 0..255 to 0..1 range.
r, g, b, a = love.math.colorFromBytes( rb, gb, bb, ab )
rb | number | Red color component in 0..255 range. |
gb | number | Green color component in 0..255 range. |
bb | number | Blue color component in 0..255 range. |
ab (nil) | number | Alpha color component in 0..255 range. |
r | number | Red color component in 0..1 range. |
g | number | Green color component in 0..1 range. |
b | number | Blue color component in 0..1 range. |
a | number | Alpha color component in 0..1 range or nil if alpha is not specified. |
Converts a color from 0..1 to 0..255 range.
rb, gb, bb, ab = love.math.colorToBytes( r, g, b, a )
r | number | Red color component. |
g | number | Green color component. |
b | number | Blue color component. |
a (nil) | number | Alpha color component. |
rb | number | Red color component in 0..255 range. |
gb | number | Green color component in 0..255 range. |
bb | number | Blue color component in 0..255 range. |
ab | number | Alpha color component in 0..255 range or nil if alpha is not specified. |
Converts a color from gamma-space (sRGB) to linear-space (RGB). This is useful when doing gamma-correct rendering and you need to do math in linear RGB in the few cases where LÖVE doesn't handle conversions automatically.
Read more about gamma-correct rendering here, here, and here.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
lr, lg, lb = love.math.gammaToLinear( r, g, b )
r | number | The red channel of the sRGB color to convert. |
g | number | The green channel of the sRGB color to convert. |
b | number | The blue channel of the sRGB color to convert. |
lr | number | The red channel of the converted color in linear RGB space. |
lg | number | The green channel of the converted color in linear RGB space. |
lb | number | The blue channel of the converted color in linear RGB space. |
lr, lg, lb = love.math.gammaToLinear( color )
color | table | An array with the red, green, and blue channels of the sRGB color to convert. |
lr | number | The red channel of the converted color in linear RGB space. |
lg | number | The green channel of the converted color in linear RGB space. |
lb | number | The blue channel of the converted color in linear RGB space. |
lc = love.math.gammaToLinear( c )
c | number | The value of a color channel in sRGB space to convert. |
lc | number | The value of the color channel in linear RGB space. |
Gets the seed of the random number generator.
The seed is split into two numbers due to Lua's use of doubles for all number values - doubles can't accurately represent integer values above 2^53, but the seed can be an integer value up to 2^64.
low, high = love.math.getRandomSeed()
low | number | Integer number representing the lower 32 bits of the random number generator's 64 bit seed value. |
high | number | Integer number representing the higher 32 bits of the random number generator's 64 bit seed value. |
Gets the current state of the random number generator. This returns an opaque implementation-dependent string which is only useful for later use with love.math.setRandomState or RandomGenerator:setState.
This is different from love.math.getRandomSeed in that getRandomState gets the random number generator's current state, whereas getRandomSeed gets the previously set seed number.
state = love.math.getRandomState()
state | string | The current state of the random number generator, represented as a string. |
Checks whether a polygon is convex.
PolygonShapes in love.physics, some forms of Meshes, and polygons drawn with love.graphics.polygon must be simple convex polygons.
convex = love.math.isConvex( vertices )
vertices | table | The vertices of the polygon as a table in the form of {x1, y1, x2, y2, x3, y3, ...}. |
convex | boolean | Whether the given polygon is convex. |
convex = love.math.isConvex( x1, y1, x2, y2, ... )
x1 | number | The position of the first vertex of the polygon on the x-axis. |
y1 | number | The position of the first vertex of the polygon on the y-axis. |
x2 | number | The position of the second vertex of the polygon on the x-axis. |
y2 | number | The position of the second vertex of the polygon on the y-axis. |
... | number | Additional position of the vertex of the polygon on the x-axis and y-axis. |
convex | boolean | Whether the given polygon is convex. |
Converts a color from linear-space (RGB) to gamma-space (sRGB). This is useful when storing linear RGB color values in an image, because the linear RGB color space has less precision than sRGB for dark colors, which can result in noticeable color banding when drawing.
In general, colors chosen based on what they look like on-screen are already in gamma-space and should not be double-converted. Colors calculated using math are often in the linear RGB space.
Read more about gamma-correct rendering here, here, and here.
In versions prior to 11.0, color component values were within the range of 0 to 255 instead of 0 to 1.
cr, cg, cb = love.math.linearToGamma( lr, lg, lb )
lr | number | The red channel of the linear RGB color to convert. |
lg | number | The green channel of the linear RGB color to convert. |
lb | number | The blue channel of the linear RGB color to convert. |
cr | number | The red channel of the converted color in gamma sRGB space. |
cg | number | The green channel of the converted color in gamma sRGB space. |
cb | number | The blue channel of the converted color in gamma sRGB space. |
cr, cg, cb = love.math.linearToGamma( color )
color | table | An array with the red, green, and blue channels of the linear RGB color to convert. |
cr | number | The red channel of the converted color in gamma sRGB space. |
cg | number | The green channel of the converted color in gamma sRGB space. |
cb | number | The blue channel of the converted color in gamma sRGB space. |
c = love.math.linearToGamma( lc )
lc | number | The value of a color channel in linear RGB space to convert. |
c | number | The value of the color channel in gamma sRGB space. |
Creates a new BezierCurve object.
The number of vertices in the control polygon determines the degree of the curve, e.g. three vertices define a quadratic (degree 2) Bézier curve, four vertices define a cubic (degree 3) Bézier curve, etc.
curve = love.math.newBezierCurve( vertices )
vertices | table | The vertices of the control polygon as a table in the form of {x1, y1, x2, y2, x3, y3, ...}. |
curve | BezierCurve | A Bézier curve object. |
curve = love.math.newBezierCurve( x1, y1, x2, y2, ... )
x1 | number | The position of the first vertex of the control polygon on the x-axis. |
y1 | number | The position of the first vertex of the control polygon on the y-axis. |
x2 | number | The position of the second vertex of the control polygon on the x-axis. |
y2 | number | The position of the second vertex of the control polygon on the y-axis. |
... | number | Additional position of the vertex of the control polygon on the x-axis and y-axis. |
curve | BezierCurve | A Bézier curve object. |
Creates a new RandomGenerator object which is completely independent of other RandomGenerator objects and random functions.
rng = love.math.newRandomGenerator()
rng | RandomGenerator | The new Random Number Generator object. |
rng = love.math.newRandomGenerator( seed )
seed | number | The initial seed number to use for this object. |
rng | RandomGenerator | The new Random Number Generator object. |
rng = love.math.newRandomGenerator( low, high )
low | number | The lower 32 bits of the seed number to use for this object. |
high | number | The higher 32 bits of the seed number to use for this object. |
rng | RandomGenerator | The new Random Number Generator object. |
Creates a new Transform object.
transform = love.math.newTransform()
transform | Transform | The new Transform object. |
transform = love.math.newTransform( x, y, angle, sx, sy, ox, oy, kx, ky )
x | number | The position of the new Transform on the x-axis. |
y | number | The position of the new Transform on the y-axis. |
angle (0) | number | The orientation of the new Transform in radians. |
sx (1) | number | Scale factor on the x-axis. |
sy (sx) | number | Scale factor on the y-axis. |
ox (0) | number | Origin offset on the x-axis. |
oy (0) | number | Origin offset on the y-axis. |
kx (0) | number | Shearing / skew factor on the x-axis. |
ky (0) | number | Shearing / skew factor on the y-axis. |
transform | Transform | The new Transform object. |
Generates a Simplex or Perlin noise value in 1-4 dimensions. The return value will always be the same, given the same arguments.
Simplex noise is closely related to Perlin noise. It is widely used for procedural content generation.
There are many webpages which discuss Perlin and Simplex noise in detail.
value = love.math.noise( x )
x | number | The number used to generate the noise value. |
value | number | The noise value in the range of 1. |
value = love.math.noise( x, y )
x | number | The first value of the 2-dimensional vector used to generate the noise value. |
y | number | The second value of the 2-dimensional vector used to generate the noise value. |
value | number | The noise value in the range of 1. |
value = love.math.noise( x, y, z )
x | number | The first value of the 3-dimensional vector used to generate the noise value. |
y | number | The second value of the 3-dimensional vector used to generate the noise value. |
z | number | The third value of the 3-dimensional vector used to generate the noise value. |
value | number | The noise value in the range of 1. |
value = love.math.noise( x, y, z, w )
x | number | The first value of the 4-dimensional vector used to generate the noise value. |
y | number | The second value of the 4-dimensional vector used to generate the noise value. |
z | number | The third value of the 4-dimensional vector used to generate the noise value. |
w | number | The fourth value of the 4-dimensional vector used to generate the noise value. |
value | number | The noise value in the range of 1. |
Generates a pseudo-random number in a platform independent manner. The default love.run seeds this function at startup, so you generally don't need to seed it yourself.
number = love.math.random()
number | number | The pseudo-random number. |
number = love.math.random( max )
max | number | The maximum possible value it should return. |
number | number | The pseudo-random integer number. |
number = love.math.random( min, max )
min | number | The minimum possible value it should return. |
max | number | The maximum possible value it should return. |
number | number | The pseudo-random integer number. |
Get a normally distributed pseudo random number.
number = love.math.randomNormal( stddev, mean )
stddev (1) | number | Standard deviation of the distribution. |
mean (0) | number | The mean of the distribution. |
number | number | Normally distributed random number with variance (stddev)² and the specified mean. |
Sets the seed of the random number generator using the specified integer number. This is called internally at startup, so you generally don't need to call it yourself.
love.math.setRandomSeed( seed )
seed | number | The integer number with which you want to seed the randomization. Must be within the range of 2^53 - 1. |
love.math.setRandomSeed( low, high )
low | number | The lower 32 bits of the seed value. Must be within the range of 2^32 - 1. |
high | number | The higher 32 bits of the seed value. Must be within the range of 2^32 - 1. |
Sets the current state of the random number generator. The value used as an argument for this function is an opaque implementation-dependent string and should only originate from a previous call to love.math.getRandomState.
This is different from love.math.setRandomSeed in that setRandomState directly sets the random number generator's current implementation-dependent state, whereas setRandomSeed gives it a new seed value.
love.math.setRandomState( state )
state | string | The new state of the random number generator, represented as a string. This should originate from a previous call to love.math.getRandomState. |
Decomposes a simple convex or concave polygon into triangles.
triangles = love.math.triangulate( polygon )
polygon | table | Polygon to triangulate. Must not intersect itself. |
triangles | table | List of triangles the polygon is composed of, in the form of {{x1, y1, x2, y2, x3, y3}, {x1, y1, x2, y2, x3, y3}, ...}. |
triangles = love.math.triangulate( x1, y1, x2, y2, x3, y3 )
x1 | number | The position of the first vertex of the polygon on the x-axis. |
y1 | number | The position of the first vertex of the polygon on the y-axis. |
x2 | number | The position of the second vertex of the polygon on the x-axis. |
y2 | number | The position of the second vertex of the polygon on the y-axis. |
x3 | number | The position of the third vertex of the polygon on the x-axis. |
y3 | number | The position of the third vertex of the polygon on the y-axis. |
triangles | table | List of triangles the polygon is composed of, in the form of {{x1, y1, x2, y2, x3, y3}, {x1, y1, x2, y2, x3, y3}, ...}. |
Evaluate Bézier curve at parameter t. The parameter must be between 0 and 1 (inclusive).
This function can be used to move objects along paths or tween parameters. However it should not be used to render the curve, see BezierCurve:render for that purpose.
x, y = BezierCurve:evaluate( t )
t | number | Where to evaluate the curve. |
x | number | x coordinate of the curve at parameter t. |
y | number | y coordinate of the curve at parameter t. |
Get coordinates of the i-th control point. Indices start with 1.
x, y = BezierCurve:getControlPoint( i )
i | number | Index of the control point. |
x | number | Position of the control point along the x axis. |
y | number | Position of the control point along the y axis. |
BezierCurve:getControlPointCount
Get the number of control points in the Bézier curve.
count = BezierCurve:getControlPointCount()
count | number | The number of control points. |
Get degree of the Bézier curve. The degree is equal to number-of-control-points - 1.
degree = BezierCurve:getDegree()
degree | number | Degree of the Bézier curve. |
Get the derivative of the Bézier curve.
This function can be used to rotate sprites moving along a curve in the direction of the movement and compute the direction perpendicular to the curve at some parameter t.
derivative = BezierCurve:getDerivative()
derivative | BezierCurve | The derivative curve. |
Gets a BezierCurve that corresponds to the specified segment of this BezierCurve.
curve = BezierCurve:getSegment( startpoint, endpoint )
startpoint | number | The starting point along the curve. Must be between 0 and 1. |
endpoint | number | The end of the segment. Must be between 0 and 1. |
curve | BezierCurve | A BezierCurve that corresponds to the specified segment. |
BezierCurve:insertControlPoint
Insert control point as the new i-th control point. Existing control points from i onwards are pushed back by 1. Indices start with 1. Negative indices wrap around: -1 is the last control point, -2 the one before the last, etc.
BezierCurve:insertControlPoint( x, y, i )
x | number | Position of the control point along the x axis. |
y | number | Position of the control point along the y axis. |
i (-1) | number | Index of the control point. |
BezierCurve:removeControlPoint
Removes the specified control point.
BezierCurve:removeControlPoint( index )
index | number | The index of the control point to remove. |
Get a list of coordinates to be used with love.graphics.line.
This function samples the Bézier curve using recursive subdivision. You can control the recursion depth using the depth parameter.
If you are just interested to know the position on the curve given a parameter, use BezierCurve:evaluate.
coordinates = BezierCurve:render( depth )
depth (5) | number | Number of recursive subdivision steps. |
coordinates | table | List of x,y-coordinate pairs of points on the curve. |
Get a list of coordinates on a specific part of the curve, to be used with love.graphics.line.
This function samples the Bézier curve using recursive subdivision. You can control the recursion depth using the depth parameter.
If you are just need to know the position on the curve given a parameter, use BezierCurve:evaluate.
coordinates = BezierCurve:renderSegment( startpoint, endpoint, depth )
startpoint | number | The starting point along the curve. Must be between 0 and 1. |
endpoint | number | The end of the segment to render. Must be between 0 and 1. |
depth (5) | number | Number of recursive subdivision steps. |
coordinates | table | List of x,y-coordinate pairs of points on the specified part of the curve. |
Rotate the Bézier curve by an angle.
BezierCurve:rotate( angle, ox, oy )
angle | number | Rotation angle in radians. |
ox (0) | number | X coordinate of the rotation center. |
oy (0) | number | Y coordinate of the rotation center. |
Scale the Bézier curve by a factor.
BezierCurve:scale( s, ox, oy )
s | number | Scale factor. |
ox (0) | number | X coordinate of the scaling center. |
oy (0) | number | Y coordinate of the scaling center. |
Set coordinates of the i-th control point. Indices start with 1.
BezierCurve:setControlPoint( i, x, y )
i | number | Index of the control point. |
x | number | Position of the control point along the x axis. |
y | number | Position of the control point along the y axis. |
Move the Bézier curve by an offset.
BezierCurve:translate( dx, dy )
dx | number | Offset along the x axis. |
dy | number | Offset along the y axis. |
Gets the seed of the random number generator object.
The seed is split into two numbers due to Lua's use of doubles for all number values - doubles can't accurately represent integer values above 2^53, but the seed value is an integer number in the range of 2^64 - 1.
low, high = RandomGenerator:getSeed()
low | number | Integer number representing the lower 32 bits of the RandomGenerator's 64 bit seed value. |
high | number | Integer number representing the higher 32 bits of the RandomGenerator's 64 bit seed value. |
Gets the current state of the random number generator. This returns an opaque string which is only useful for later use with RandomGenerator:setState in the same major version of LÖVE.
This is different from RandomGenerator:getSeed in that getState gets the RandomGenerator's current state, whereas getSeed gets the previously set seed number.
state = RandomGenerator:getState()
state | string | The current state of the RandomGenerator object, represented as a string. |
Generates a pseudo-random number in a platform independent manner.
number = RandomGenerator:random()
number | number | The pseudo-random number. |
number = RandomGenerator:random( max )
max | number | The maximum possible value it should return. |
number | number | The pseudo-random integer number. |
number = RandomGenerator:random( min, max )
min | number | The minimum possible value it should return. |
max | number | The maximum possible value it should return. |
number | number | The pseudo-random integer number. |
Get a normally distributed pseudo random number.
number = RandomGenerator:randomNormal( stddev, mean )
stddev (1) | number | Standard deviation of the distribution. |
mean (0) | number | The mean of the distribution. |
number | number | Normally distributed random number with variance (stddev)² and the specified mean. |
Sets the seed of the random number generator using the specified integer number.
RandomGenerator:setSeed( seed )
seed | number | The integer number with which you want to seed the randomization. Must be within the range of 2^53. |
RandomGenerator:setSeed( low, high )
low | number | The lower 32 bits of the seed value. Must be within the range of 2^32 - 1. |
high | number | The higher 32 bits of the seed value. Must be within the range of 2^32 - 1. |
Sets the current state of the random number generator. The value used as an argument for this function is an opaque string and should only originate from a previous call to RandomGenerator:getState in the same major version of LÖVE.
This is different from RandomGenerator:setSeed in that setState directly sets the RandomGenerator's current implementation-dependent state, whereas setSeed gives it a new seed value.
RandomGenerator:setState( state )
state | string | The new state of the RandomGenerator object, represented as a string. This should originate from a previous call to RandomGenerator:getState. |
Applies the given other Transform object to this one.
This effectively multiplies this Transform's internal transformation matrix with the other Transform's (i.e. self * other), and stores the result in this object.
transform = Transform:apply( other )
other | Transform | The other Transform object to apply to this Transform. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Creates a new copy of this Transform.
clone = Transform:clone()
clone | Transform | The copy of this Transform. |
Gets the internal 4x4 transformation matrix stored by this Transform. The matrix is returned in row-major order.
e1_1, e1_2, e1_3, e1_4, e2_1, e2_2, e2_3, e2_4, e3_1, e3_2, e3_3, e3_4, e4_1, e4_2, e4_3, e4_4 = Transform:getMatrix()
e1_1 | number | The first column of the first row of the matrix. |
e1_2 | number | The second column of the first row of the matrix. |
e1_3 | number | The third column of the first row of the matrix. |
e1_4 | number | The fourth column of the first row of the matrix. |
e2_1 | number | The first column of the second row of the matrix. |
e2_2 | number | The second column of the second row of the matrix. |
e2_3 | number | The third column of the second row of the matrix. |
e2_4 | number | The fourth column of the second row of the matrix. |
e3_1 | number | The first column of the third row of the matrix. |
e3_2 | number | The second column of the third row of the matrix. |
e3_3 | number | The third column of the third row of the matrix. |
e3_4 | number | The fourth column of the third row of the matrix. |
e4_1 | number | The first column of the fourth row of the matrix. |
e4_2 | number | The second column of the fourth row of the matrix. |
e4_3 | number | The third column of the fourth row of the matrix. |
e4_4 | number | The fourth column of the fourth row of the matrix. |
Creates a new Transform containing the inverse of this Transform.
inverse = Transform:inverse()
inverse | Transform | A new Transform object representing the inverse of this Transform's matrix. |
Transform:inverseTransformPoint
Applies the reverse of the Transform object's transformation to the given 2D position.
This effectively converts the given position from the local coordinate space of the Transform into global coordinates.
One use of this method can be to convert a screen-space mouse position into global world coordinates, if the given Transform has transformations applied that are used for a camera system in-game.
globalX, globalY = Transform:inverseTransformPoint( localX, localY )
localX | number | The x component of the position with the transform applied. |
localY | number | The y component of the position with the transform applied. |
globalX | number | The x component of the position in global coordinates. |
globalY | number | The y component of the position in global coordinates. |
Checks whether the Transform is an affine transformation.
affine = Transform:isAffine2DTransform()
affine | boolean | true if the transform object is an affine transformation, false otherwise. |
Resets the Transform to an identity state. All previously applied transformations are erased.
transform = Transform:reset()
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Applies a rotation to the Transform's coordinate system. This method does not reset any previously applied transformations.
transform = Transform:rotate( angle )
angle | number | The relative angle in radians to rotate this Transform by. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Scales the Transform's coordinate system. This method does not reset any previously applied transformations.
transform = Transform:scale( sx, sy )
sx | number | The relative scale factor along the x-axis. |
sy (sx) | number | The relative scale factor along the y-axis. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Directly sets the Transform's internal 4x4 transformation matrix.
transform = Transform:setMatrix( e1_1, e1_2, e1_3, e1_4, e2_1, e2_2, e2_3, e2_4, e3_1, e3_2, e3_3, e3_4, e4_1, e4_2, e4_3, e4_4 )
e1_1 | number | The first column of the first row of the matrix. |
e1_2 | number | The second column of the first row of the matrix. |
e1_3 | number | The third column of the first row of the matrix. |
e1_4 | number | The fourth column of the first row of the matrix. |
e2_1 | number | The first column of the second row of the matrix. |
e2_2 | number | The second column of the second row of the matrix. |
e2_3 | number | The third column of the second row of the matrix. |
e2_4 | number | The fourth column of the second row of the matrix. |
e3_1 | number | The first column of the third row of the matrix. |
e3_2 | number | The second column of the third row of the matrix. |
e3_3 | number | The third column of the third row of the matrix. |
e3_4 | number | The fourth column of the third row of the matrix. |
e4_1 | number | The first column of the fourth row of the matrix. |
e4_2 | number | The second column of the fourth row of the matrix. |
e4_3 | number | The third column of the fourth row of the matrix. |
e4_4 | number | The fourth column of the fourth row of the matrix. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
transform = Transform:setMatrix( layout, e1_1, e1_2, e1_3, e1_4, e2_1, e2_2, e2_3, e2_4, e3_1, e3_2, e3_3, e3_4, e4_1, e4_2, e4_3, e4_4 )
layout | MatrixLayout | How to interpret the matrix element arguments (row-major or column-major). |
e1_1 | number | The first column of the first row of the matrix. |
e1_2 | number | The second column of the first row or the first column of the second row of the matrix, depending on the specified layout. |
e1_3 | number | The third column/row of the first row/column of the matrix. |
e1_4 | number | The fourth column/row of the first row/column of the matrix. |
e2_1 | number | The first column/row of the second row/column of the matrix. |
e2_2 | number | The second column/row of the second row/column of the matrix. |
e2_3 | number | The third column/row of the second row/column of the matrix. |
e2_4 | number | The fourth column/row of the second row/column of the matrix. |
e3_1 | number | The first column/row of the third row/column of the matrix. |
e3_2 | number | The second column/row of the third row/column of the matrix. |
e3_3 | number | The third column/row of the third row/column of the matrix. |
e3_4 | number | The fourth column/row of the third row/column of the matrix. |
e4_1 | number | The first column/row of the fourth row/column of the matrix. |
e4_2 | number | The second column/row of the fourth row/column of the matrix. |
e4_3 | number | The third column/row of the fourth row/column of the matrix. |
e4_4 | number | The fourth column of the fourth row of the matrix. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
transform = Transform:setMatrix( layout, matrix )
layout | MatrixLayout | How to interpret the matrix element arguments (row-major or column-major). |
matrix | table | A flat table containing the 16 matrix elements. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
transform = Transform:setMatrix( layout, matrix )
layout | MatrixLayout | How to interpret the matrix element arguments (row-major or column-major). |
matrix | table | A table of 4 tables, with each sub-table containing 4 matrix elements. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Resets the Transform to the specified transformation parameters.
transform = Transform:setTransformation( x, y, angle, sx, sy, ox, oy, kx, ky )
x | number | The position of the Transform on the x-axis. |
y | number | The position of the Transform on the y-axis. |
angle (0) | number | The orientation of the Transform in radians. |
sx (1) | number | Scale factor on the x-axis. |
sy (sx) | number | Scale factor on the y-axis. |
ox (0) | number | Origin offset on the x-axis. |
oy (0) | number | Origin offset on the y-axis. |
kx (0) | number | Shearing / skew factor on the x-axis. |
ky (0) | number | Shearing / skew factor on the y-axis. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Applies a shear factor (skew) to the Transform's coordinate system. This method does not reset any previously applied transformations.
transform = Transform:shear( kx, ky )
kx | number | The shear factor along the x-axis. |
ky | number | The shear factor along the y-axis. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Applies the Transform object's transformation to the given 2D position.
This effectively converts the given position from global coordinates into the local coordinate space of the Transform.
localX, localY = Transform:transformPoint( globalX, globalY )
globalX | number | The x component of the position in global coordinates. |
globalY | number | The y component of the position in global coordinates. |
localX | number | The x component of the position with the transform applied. |
localY | number | The y component of the position with the transform applied. |
Applies a translation to the Transform's coordinate system. This method does not reset any previously applied transformations.
transform = Transform:translate( dx, dy )
dx | number | The relative translation along the x-axis. |
dy | number | The relative translation along the y-axis. |
transform | Transform | The Transform object the method was called on. Allows easily chaining Transform methods. |
Gets the current Cursor.
cursor = love.mouse.getCursor()
cursor | Cursor | The current cursor, or nil if no cursor is set. |
Returns the current position of the mouse.
x, y = love.mouse.getPosition()
x | number | The position of the mouse along the x-axis. |
y | number | The position of the mouse along the y-axis. |
Gets whether relative mode is enabled for the mouse.
If relative mode is enabled, the cursor is hidden and doesn't move when the mouse does, but relative mouse motion events are still generated via love.mousemoved. This lets the mouse move in any direction indefinitely without the cursor getting stuck at the edges of the screen.
The reported position of the mouse is not updated while relative mode is enabled, even when relative mouse motion events are generated.
enabled = love.mouse.getRelativeMode()
enabled | boolean | True if relative mode is enabled, false if it's disabled. |
Gets a Cursor object representing a system-native hardware cursor.
Hardware cursors are framerate-independent and work the same way as normal operating system cursors. Unlike drawing an image at the mouse's current coordinates, hardware cursors never have visible lag between when the mouse is moved and when the cursor position updates, even at low framerates.
cursor = love.mouse.getSystemCursor( ctype )
ctype | CursorType | The type of system cursor to get. |
cursor | Cursor | The Cursor object representing the system cursor type. |
Returns the current x-position of the mouse.
x = love.mouse.getX()
x | number | The position of the mouse along the x-axis. |
Returns the current y-position of the mouse.
y = love.mouse.getY()
y | number | The position of the mouse along the y-axis. |
Gets whether cursor functionality is supported.
If it isn't supported, calling love.mouse.newCursor and love.mouse.getSystemCursor will cause an error. Mobile devices do not support cursors.
supported = love.mouse.isCursorSupported()
supported | boolean | Whether the system has cursor functionality. |
Checks whether a certain mouse button is down.
This function does not detect mouse wheel scrolling; you must use the love.wheelmoved (or love.mousepressed in version 0.9.2 and older) callback for that.
down = love.mouse.isDown( button, ... )
button | number | The index of a button to check. 1 is the primary mouse button, 2 is the secondary mouse button and 3 is the middle button. Further buttons are mouse dependant. |
... | number | Additional button numbers to check. |
down | boolean | True if any specified button is down. |
Checks if the mouse is grabbed.
grabbed = love.mouse.isGrabbed()
grabbed | boolean | True if the cursor is grabbed, false if it is not. |
Checks if the cursor is visible.
visible = love.mouse.isVisible()
visible | boolean | True if the cursor to visible, false if the cursor is hidden. |
Creates a new hardware Cursor object from an image file or ImageData.
Hardware cursors are framerate-independent and work the same way as normal operating system cursors. Unlike drawing an image at the mouse's current coordinates, hardware cursors never have visible lag between when the mouse is moved and when the cursor position updates, even at low framerates.
The hot spot is the point the operating system uses to determine what was clicked and at what position the mouse cursor is. For example, the normal arrow pointer normally has its hot spot at the top left of the image, but a crosshair cursor might have it in the middle.
cursor = love.mouse.newCursor( imageData, hotx, hoty )
imageData | ImageData | The ImageData to use for the new Cursor. |
hotx (0) | number | The x-coordinate in the ImageData of the cursor's hot spot. |
hoty (0) | number | The y-coordinate in the ImageData of the cursor's hot spot. |
cursor | Cursor | The new Cursor object. |
cursor = love.mouse.newCursor( filename, hotx, hoty )
filename | string | Path to the image to use for the new Cursor. |
hotx (0) | number | The x-coordinate in the image of the cursor's hot spot. |
hoty (0) | number | The y-coordinate in the image of the cursor's hot spot. |
cursor | Cursor | The new Cursor object. |
cursor = love.mouse.newCursor( fileData, hotx, hoty )
fileData | FileData | Data representing the image to use for the new Cursor. |
hotx (0) | number | The x-coordinate in the image of the cursor's hot spot. |
hoty (0) | number | The y-coordinate in the image of the cursor's hot spot. |
cursor | Cursor | The new Cursor object. |
Sets the current mouse cursor.
love.mouse.setCursor( cursor )
cursor | Cursor | The Cursor object to use as the current mouse cursor. |
love.mouse.setCursor()
Grabs the mouse and confines it to the window.
love.mouse.setGrabbed( grab )
grab | boolean | True to confine the mouse, false to let it leave the window. |
Sets the current position of the mouse. Non-integer values are floored.
love.mouse.setPosition( x, y )
x | number | The new position of the mouse along the x-axis. |
y | number | The new position of the mouse along the y-axis. |
Sets whether relative mode is enabled for the mouse.
When relative mode is enabled, the cursor is hidden and doesn't move when the mouse does, but relative mouse motion events are still generated via love.mousemoved. This lets the mouse move in any direction indefinitely without the cursor getting stuck at the edges of the screen.
The reported position of the mouse may not be updated while relative mode is enabled, even when relative mouse motion events are generated.
love.mouse.setRelativeMode( enable )
enable | boolean | True to enable relative mode, false to disable it. |
Sets the current visibility of the cursor.
love.mouse.setVisible( visible )
visible | boolean | True to set the cursor to visible, false to hide the cursor. |
Sets the current X position of the mouse.
Non-integer values are floored.
love.mouse.setX( x )
x | number | The new position of the mouse along the x-axis. |
Sets the current Y position of the mouse.
Non-integer values are floored.
love.mouse.setY( y )
y | number | The new position of the mouse along the y-axis. |
image
The cursor is using a custom image.
arrow
An arrow pointer.
ibeam
An I-beam, normally used when mousing over editable or selectable text.
wait
Wait graphic.
waitarrow
Small wait cursor with an arrow pointer.
crosshair
Crosshair symbol.
sizenwse
Double arrow pointing to the top-left and bottom-right.
sizenesw
Double arrow pointing to the top-right and bottom-left.
sizewe
Double arrow pointing left and right.
sizens
Double arrow pointing up and down.
sizeall
Four-pointed arrow pointing up, down, left, and right.
no
Slashed circle or crossbones.
hand
Hand symbol.
Returns the two closest points between two fixtures and their distance.
distance, x1, y1, x2, y2 = love.physics.getDistance( fixture1, fixture2 )
fixture1 | Fixture | The first fixture. |
fixture2 | Fixture | The second fixture. |
distance | number | The distance of the two points. |
x1 | number | The x-coordinate of the first point. |
y1 | number | The y-coordinate of the first point. |
x2 | number | The x-coordinate of the second point. |
y2 | number | The y-coordinate of the second point. |
Returns the meter scale factor.
All coordinates in the physics module are divided by this number, creating a convenient way to draw the objects directly to the screen without the need for graphics transformations.
It is recommended to create shapes no larger than 10 times the scale. This is important because Box2D is tuned to work well with shape sizes from 0.1 to 10 meters.
scale = love.physics.getMeter()
scale | number | The scale factor as an integer. |
Creates a new body.
There are three types of bodies.
* Static bodies do not move, have a infinite mass, and can be used for level boundaries.
* Dynamic bodies are the main actors in the simulation, they collide with everything.
* Kinematic bodies do not react to forces and only collide with dynamic bodies.
The mass of the body gets calculated when a Fixture is attached or removed, but can be changed at any time with Body:setMass or Body:resetMassData.
body = love.physics.newBody( world, x, y, type )
world | World | The world to create the body in. |
x (0) | number | The x position of the body. |
y (0) | number | The y position of the body. |
type ('static') | BodyType | The type of the body. |
body | Body | A new body. |
Creates a new ChainShape.
shape = love.physics.newChainShape( loop, x1, y1, x2, y2, ... )
loop | boolean | If the chain should loop back to the first point. |
x1 | number | The x position of the first point. |
y1 | number | The y position of the first point. |
x2 | number | The x position of the second point. |
y2 | number | The y position of the second point. |
... | number | Additional point positions. |
shape | ChainShape | The new shape. |
shape = love.physics.newChainShape( loop, points )
loop | boolean | If the chain should loop back to the first point. |
points | table | A list of points to construct the ChainShape, in the form of {x1, y1, x2, y2, ...}. |
shape | ChainShape | The new shape. |
Creates a new CircleShape.
shape = love.physics.newCircleShape( radius )
radius | number | The radius of the circle. |
shape | CircleShape | The new shape. |
shape = love.physics.newCircleShape( x, y, radius )
x | number | The x position of the circle. |
y | number | The y position of the circle. |
radius | number | The radius of the circle. |
shape | CircleShape | The new shape. |
Creates a DistanceJoint between two bodies.
This joint constrains the distance between two points on two bodies to be constant. These two points are specified in world coordinates and the two bodies are assumed to be in place when this joint is created. The first anchor point is connected to the first body and the second to the second body, and the points define the length of the distance joint.
joint = love.physics.newDistanceJoint( body1, body2, x1, y1, x2, y2, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x1 | number | The x position of the first anchor point (world space). |
y1 | number | The y position of the first anchor point (world space). |
x2 | number | The x position of the second anchor point (world space). |
y2 | number | The y position of the second anchor point (world space). |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | DistanceJoint | The new distance joint. |
Creates a new EdgeShape.
shape = love.physics.newEdgeShape( x1, y1, x2, y2 )
x1 | number | The x position of the first point. |
y1 | number | The y position of the first point. |
x2 | number | The x position of the second point. |
y2 | number | The y position of the second point. |
shape | EdgeShape | The new shape. |
Creates and attaches a Fixture to a body.
Note that the Shape object is copied rather than kept as a reference when the Fixture is created. To get the Shape object that the Fixture owns, use Fixture:getShape.
fixture = love.physics.newFixture( body, shape, density )
body | Body | The body which gets the fixture attached. |
shape | Shape | The shape to be copied to the fixture. |
density (1) | number | The density of the fixture. |
fixture | Fixture | The new fixture. |
Create a friction joint between two bodies. A FrictionJoint applies friction to a body.
joint = love.physics.newFrictionJoint( body1, body2, x, y, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x | number | The x position of the anchor point. |
y | number | The y position of the anchor point. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | FrictionJoint | The new FrictionJoint. |
joint = love.physics.newFrictionJoint( body1, body2, x1, y1, x2, y2, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x1 | number | The x position of the first anchor point. |
y1 | number | The y position of the first anchor point. |
x2 | number | The x position of the second anchor point. |
y2 | number | The y position of the second anchor point. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | FrictionJoint | The new FrictionJoint. |
Create a GearJoint connecting two Joints.
The gear joint connects two joints that must be either prismatic or revolute joints. Using this joint requires that the joints it uses connect their respective bodies to the ground and have the ground as the first body. When destroying the bodies and joints you must make sure you destroy the gear joint before the other joints.
The gear joint has a ratio the determines how the angular or distance values of the connected joints relate to each other. The formula coordinate1 + ratio * coordinate2 always has a constant value that is set when the gear joint is created.
joint = love.physics.newGearJoint( joint1, joint2, ratio, collideConnected )
joint1 | Joint | The first joint to connect with a gear joint. |
joint2 | Joint | The second joint to connect with a gear joint. |
ratio (1) | number | The gear ratio. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | GearJoint | The new gear joint. |
Creates a joint between two bodies which controls the relative motion between them.
Position and rotation offsets can be specified once the MotorJoint has been created, as well as the maximum motor force and torque that will be be applied to reach the target offsets.
joint = love.physics.newMotorJoint( body1, body2, correctionFactor )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
correctionFactor (0.3) | number | The joint's initial position correction factor, in the range of 1. |
joint | MotorJoint | The new MotorJoint. |
joint = love.physics.newMotorJoint( body1, body2, correctionFactor, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
correctionFactor (0.3) | number | The joint's initial position correction factor, in the range of 1. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | MotorJoint | The new MotorJoint. |
Create a joint between a body and the mouse.
This joint actually connects the body to a fixed point in the world. To make it follow the mouse, the fixed point must be updated every timestep (example below).
The advantage of using a MouseJoint instead of just changing a body position directly is that collisions and reactions to other joints are handled by the physics engine.
joint = love.physics.newMouseJoint( body, x, y )
body | Body | The body to attach to the mouse. |
x | number | The x position of the connecting point. |
y | number | The y position of the connecting point. |
joint | MouseJoint | The new mouse joint. |
Creates a new PolygonShape.
This shape can have 8 vertices at most, and must form a convex shape.
shape = love.physics.newPolygonShape( x1, y1, x2, y2, x3, y3, ... )
x1 | number | The x position of the first point. |
y1 | number | The y position of the first point. |
x2 | number | The x position of the second point. |
y2 | number | The y position of the second point. |
x3 | number | The x position of the third point. |
y3 | number | The y position of the third point. |
... | number | You can continue passing more point positions to create the PolygonShape. |
shape | PolygonShape | A new PolygonShape. |
shape = love.physics.newPolygonShape( vertices )
vertices | table | A list of vertices to construct the polygon, in the form of {x1, y1, x2, y2, x3, y3, ...}. |
shape | PolygonShape | A new PolygonShape. |
love.physics.newPrismaticJoint
Creates a PrismaticJoint between two bodies.
A prismatic joint constrains two bodies to move relatively to each other on a specified axis. It does not allow for relative rotation. Its definition and operation are similar to a revolute joint, but with translation and force substituted for angle and torque.
joint = love.physics.newPrismaticJoint( body1, body2, x, y, ax, ay, collideConnected )
body1 | Body | The first body to connect with a prismatic joint. |
body2 | Body | The second body to connect with a prismatic joint. |
x | number | The x coordinate of the anchor point. |
y | number | The y coordinate of the anchor point. |
ax | number | The x coordinate of the axis vector. |
ay | number | The y coordinate of the axis vector. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | PrismaticJoint | The new prismatic joint. |
joint = love.physics.newPrismaticJoint( body1, body2, x1, y1, x2, y2, ax, ay, collideConnected )
body1 | Body | The first body to connect with a prismatic joint. |
body2 | Body | The second body to connect with a prismatic joint. |
x1 | number | The x coordinate of the first anchor point. |
y1 | number | The y coordinate of the first anchor point. |
x2 | number | The x coordinate of the second anchor point. |
y2 | number | The y coordinate of the second anchor point. |
ax | number | The x coordinate of the axis unit vector. |
ay | number | The y coordinate of the axis unit vector. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | PrismaticJoint | The new prismatic joint. |
joint = love.physics.newPrismaticJoint( body1, body2, x1, y1, x2, y2, ax, ay, collideConnected, referenceAngle )
body1 | Body | The first body to connect with a prismatic joint. |
body2 | Body | The second body to connect with a prismatic joint. |
x1 | number | The x coordinate of the first anchor point. |
y1 | number | The y coordinate of the first anchor point. |
x2 | number | The x coordinate of the second anchor point. |
y2 | number | The y coordinate of the second anchor point. |
ax | number | The x coordinate of the axis unit vector. |
ay | number | The y coordinate of the axis unit vector. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
referenceAngle (0) | number | The reference angle between body1 and body2, in radians. |
joint | PrismaticJoint | The new prismatic joint. |
Creates a PulleyJoint to join two bodies to each other and the ground.
The pulley joint simulates a pulley with an optional block and tackle. If the ratio parameter has a value different from one, then the simulated rope extends faster on one side than the other. In a pulley joint the total length of the simulated rope is the constant length1 + ratio * length2, which is set when the pulley joint is created.
Pulley joints can behave unpredictably if one side is fully extended. It is recommended that the method setMaxLengths be used to constrain the maximum lengths each side can attain.
joint = love.physics.newPulleyJoint( body1, body2, gx1, gy1, gx2, gy2, x1, y1, x2, y2, ratio, collideConnected )
body1 | Body | The first body to connect with a pulley joint. |
body2 | Body | The second body to connect with a pulley joint. |
gx1 | number | The x coordinate of the first body's ground anchor. |
gy1 | number | The y coordinate of the first body's ground anchor. |
gx2 | number | The x coordinate of the second body's ground anchor. |
gy2 | number | The y coordinate of the second body's ground anchor. |
x1 | number | The x coordinate of the pulley joint anchor in the first body. |
y1 | number | The y coordinate of the pulley joint anchor in the first body. |
x2 | number | The x coordinate of the pulley joint anchor in the second body. |
y2 | number | The y coordinate of the pulley joint anchor in the second body. |
ratio (1) | number | The joint ratio. |
collideConnected (true) | boolean | Specifies whether the two bodies should collide with each other. |
joint | PulleyJoint | The new pulley joint. |
love.physics.newRectangleShape
Shorthand for creating rectangular PolygonShapes.
By default, the local origin is located at the '''center''' of the rectangle as opposed to the top left for graphics.
shape = love.physics.newRectangleShape( width, height )
width | number | The width of the rectangle. |
height | number | The height of the rectangle. |
shape | PolygonShape | A new PolygonShape. |
shape = love.physics.newRectangleShape( x, y, width, height, angle )
x | number | The offset along the x-axis. |
y | number | The offset along the y-axis. |
width | number | The width of the rectangle. |
height | number | The height of the rectangle. |
angle (0) | number | The initial angle of the rectangle. |
shape | PolygonShape | A new PolygonShape. |
Creates a pivot joint between two bodies.
This joint connects two bodies to a point around which they can pivot.
joint = love.physics.newRevoluteJoint( body1, body2, x, y, collideConnected )
body1 | Body | The first body. |
body2 | Body | The second body. |
x | number | The x position of the connecting point. |
y | number | The y position of the connecting point. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | RevoluteJoint | The new revolute joint. |
joint = love.physics.newRevoluteJoint( body1, body2, x1, y1, x2, y2, collideConnected, referenceAngle )
body1 | Body | The first body. |
body2 | Body | The second body. |
x1 | number | The x position of the first connecting point. |
y1 | number | The y position of the first connecting point. |
x2 | number | The x position of the second connecting point. |
y2 | number | The y position of the second connecting point. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
referenceAngle (0) | number | The reference angle between body1 and body2, in radians. |
joint | RevoluteJoint | The new revolute joint. |
Creates a joint between two bodies. Its only function is enforcing a max distance between these bodies.
joint = love.physics.newRopeJoint( body1, body2, x1, y1, x2, y2, maxLength, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x1 | number | The x position of the first anchor point. |
y1 | number | The y position of the first anchor point. |
x2 | number | The x position of the second anchor point. |
y2 | number | The y position of the second anchor point. |
maxLength | number | The maximum distance for the bodies. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | RopeJoint | The new RopeJoint. |
Creates a constraint joint between two bodies. A WeldJoint essentially glues two bodies together. The constraint is a bit soft, however, due to Box2D's iterative solver.
joint = love.physics.newWeldJoint( body1, body2, x, y, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x | number | The x position of the anchor point (world space). |
y | number | The y position of the anchor point (world space). |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | WeldJoint | The new WeldJoint. |
joint = love.physics.newWeldJoint( body1, body2, x1, y1, x2, y2, collideConnected )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x1 | number | The x position of the first anchor point (world space). |
y1 | number | The y position of the first anchor point (world space). |
x2 | number | The x position of the second anchor point (world space). |
y2 | number | The y position of the second anchor point (world space). |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | WeldJoint | The new WeldJoint. |
joint = love.physics.newWeldJoint( body1, body2, x1, y1, x2, y2, collideConnected, referenceAngle )
body1 | Body | The first body to attach to the joint. |
body2 | Body | The second body to attach to the joint. |
x1 | number | The x position of the first anchor point (world space). |
y1 | number | The y position of the first anchor point (world space). |
x2 | number | The x position of the second anchor point (world space). |
y2 | number | The y position of the second anchor point (world space). |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
referenceAngle (0) | number | The reference angle between body1 and body2, in radians. |
joint | WeldJoint | The new WeldJoint. |
Creates a wheel joint.
joint = love.physics.newWheelJoint( body1, body2, x, y, ax, ay, collideConnected )
body1 | Body | The first body. |
body2 | Body | The second body. |
x | number | The x position of the anchor point. |
y | number | The y position of the anchor point. |
ax | number | The x position of the axis unit vector. |
ay | number | The y position of the axis unit vector. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | WheelJoint | The new WheelJoint. |
joint = love.physics.newWheelJoint( body1, body2, x1, y1, x2, y2, ax, ay, collideConnected )
body1 | Body | The first body. |
body2 | Body | The second body. |
x1 | number | The x position of the first anchor point. |
y1 | number | The y position of the first anchor point. |
x2 | number | The x position of the second anchor point. |
y2 | number | The y position of the second anchor point. |
ax | number | The x position of the axis unit vector. |
ay | number | The y position of the axis unit vector. |
collideConnected (false) | boolean | Specifies whether the two bodies should collide with each other. |
joint | WheelJoint | The new WheelJoint. |
Creates a new World.
world = love.physics.newWorld( xg, yg, sleep )
xg (0) | number | The x component of gravity. |
yg (0) | number | The y component of gravity. |
sleep (true) | boolean | Whether the bodies in this world are allowed to sleep. |
world | World | A brave new World. |
Sets the pixels to meter scale factor.
All coordinates in the physics module are divided by this number and converted to meters, and it creates a convenient way to draw the objects directly to the screen without the need for graphics transformations.
It is recommended to create shapes no larger than 10 times the scale. This is important because Box2D is tuned to work well with shape sizes from 0.1 to 10 meters. The default meter scale is 30.
love.physics.setMeter( scale )
scale | number | The scale factor as an integer. |
Applies an angular impulse to a body. This makes a single, instantaneous addition to the body momentum.
A body with with a larger mass will react less. The reaction does '''not''' depend on the timestep, and is equivalent to applying a force continuously for 1 second. Impulses are best used to give a single push to a body. For a continuous push to a body it is better to use Body:applyForce.
Body:applyAngularImpulse( impulse )
impulse | number | The impulse in kilogram-square meter per second. |
Apply force to a Body.
A force pushes a body in a direction. A body with with a larger mass will react less. The reaction also depends on how long a force is applied: since the force acts continuously over the entire timestep, a short timestep will only push the body for a short time. Thus forces are best used for many timesteps to give a continuous push to a body (like gravity). For a single push that is independent of timestep, it is better to use Body:applyLinearImpulse.
If the position to apply the force is not given, it will act on the center of mass of the body. The part of the force not directed towards the center of mass will cause the body to spin (and depends on the rotational inertia).
Note that the force components and position must be given in world coordinates.
Body:applyForce( fx, fy )
fx | number | The x component of force to apply to the center of mass. |
fy | number | The y component of force to apply to the center of mass. |
Body:applyForce( fx, fy, x, y )
fx | number | The x component of force to apply. |
fy | number | The y component of force to apply. |
x | number | The x position to apply the force. |
y | number | The y position to apply the force. |
Applies an impulse to a body.
This makes a single, instantaneous addition to the body momentum.
An impulse pushes a body in a direction. A body with with a larger mass will react less. The reaction does '''not''' depend on the timestep, and is equivalent to applying a force continuously for 1 second. Impulses are best used to give a single push to a body. For a continuous push to a body it is better to use Body:applyForce.
If the position to apply the impulse is not given, it will act on the center of mass of the body. The part of the impulse not directed towards the center of mass will cause the body to spin (and depends on the rotational inertia).
Note that the impulse components and position must be given in world coordinates.
Body:applyLinearImpulse( ix, iy )
ix | number | The x component of the impulse applied to the center of mass. |
iy | number | The y component of the impulse applied to the center of mass. |
Body:applyLinearImpulse( ix, iy, x, y )
ix | number | The x component of the impulse. |
iy | number | The y component of the impulse. |
x | number | The x position to apply the impulse. |
y | number | The y position to apply the impulse. |
Apply torque to a body.
Torque is like a force that will change the angular velocity (spin) of a body. The effect will depend on the rotational inertia a body has.
Body:applyTorque( torque )
torque | number | The torque to apply. |
Explicitly destroys the Body and all fixtures and joints attached to it.
An error will occur if you attempt to use the object after calling this function. In 0.7.2, when you don't have time to wait for garbage collection, this function may be used to free the object immediately.
Body:destroy()
Get the angle of the body.
The angle is measured in radians. If you need to transform it to degrees, use math.deg.
A value of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes ''clockwise'' from our point of view.
angle = Body:getAngle()
angle | number | The angle in radians. |
Gets the Angular damping of the Body
The angular damping is the ''rate of decrease of the angular velocity over time'': A spinning body with no damping and no external forces will continue spinning indefinitely. A spinning body with damping will gradually stop spinning.
Damping is not the same as friction - they can be modelled together. However, only damping is provided by Box2D (and LOVE).
Damping parameters should be between 0 and infinity, with 0 meaning no damping, and infinity meaning full damping. Normally you will use a damping value between 0 and 0.1.
damping = Body:getAngularDamping()
damping | number | The value of the angular damping. |
Get the angular velocity of the Body.
The angular velocity is the ''rate of change of angle over time''.
It is changed in World:update by applying torques, off centre forces/impulses, and angular damping. It can be set directly with Body:setAngularVelocity.
If you need the ''rate of change of position over time'', use Body:getLinearVelocity.
w = Body:getAngularVelocity()
w | number | The angular velocity in radians/second. |
Gets a list of all Contacts attached to the Body.
contacts = Body:getContacts()
contacts | table | A list with all contacts associated with the Body. |
Returns a table with all fixtures.
fixtures = Body:getFixtures()
fixtures | table | A sequence with all fixtures. |
Returns the gravity scale factor.
scale = Body:getGravityScale()
scale | number | The gravity scale factor. |
Gets the rotational inertia of the body.
The rotational inertia is how hard is it to make the body spin.
inertia = Body:getInertia()
inertia | number | The rotational inertial of the body. |
Returns a table containing the Joints attached to this Body.
joints = Body:getJoints()
joints | table | A sequence with the Joints attached to the Body. |
Gets the linear damping of the Body.
The linear damping is the ''rate of decrease of the linear velocity over time''. A moving body with no damping and no external forces will continue moving indefinitely, as is the case in space. A moving body with damping will gradually stop moving.
Damping is not the same as friction - they can be modelled together.
damping = Body:getLinearDamping()
damping | number | The value of the linear damping. |
Gets the linear velocity of the Body from its center of mass.
The linear velocity is the ''rate of change of position over time''.
If you need the ''rate of change of angle over time'', use Body:getAngularVelocity.
If you need to get the linear velocity of a point different from the center of mass:
* Body:getLinearVelocityFromLocalPoint allows you to specify the point in local coordinates.
* Body:getLinearVelocityFromWorldPoint allows you to specify the point in world coordinates.
See page 136 of 'Essential Mathematics for Games and Interactive Applications' for definitions of local and world coordinates.
x, y = Body:getLinearVelocity()
x | number | The x-component of the velocity vector |
y | number | The y-component of the velocity vector |
Body:getLinearVelocityFromLocalPoint
Get the linear velocity of a point on the body.
The linear velocity for a point on the body is the velocity of the body center of mass plus the velocity at that point from the body spinning.
The point on the body must given in local coordinates. Use Body:getLinearVelocityFromWorldPoint to specify this with world coordinates.
vx, vy = Body:getLinearVelocityFromLocalPoint( x, y )
x | number | The x position to measure velocity. |
y | number | The y position to measure velocity. |
vx | number | The x component of velocity at point (x,y). |
vy | number | The y component of velocity at point (x,y). |
Body:getLinearVelocityFromWorldPoint
Get the linear velocity of a point on the body.
The linear velocity for a point on the body is the velocity of the body center of mass plus the velocity at that point from the body spinning.
The point on the body must given in world coordinates. Use Body:getLinearVelocityFromLocalPoint to specify this with local coordinates.
vx, vy = Body:getLinearVelocityFromWorldPoint( x, y )
x | number | The x position to measure velocity. |
y | number | The y position to measure velocity. |
vx | number | The x component of velocity at point (x,y). |
vy | number | The y component of velocity at point (x,y). |
Get the center of mass position in local coordinates.
Use Body:getWorldCenter to get the center of mass in world coordinates.
x, y = Body:getLocalCenter()
x | number | The x coordinate of the center of mass. |
y | number | The y coordinate of the center of mass. |
Transform a point from world coordinates to local coordinates.
localX, localY = Body:getLocalPoint( worldX, worldY )
worldX | number | The x position in world coordinates. |
worldY | number | The y position in world coordinates. |
localX | number | The x position in local coordinates. |
localY | number | The y position in local coordinates. |
Transforms multiple points from world coordinates to local coordinates.
x1, y1, x2, y2, ... = Body:getLocalPoints( x1, y1, x2, y2, ... )
x1 | number | (Argument) The x position of the first point. |
y1 | number | (Argument) The y position of the first point. |
x2 | number | (Argument) The x position of the second point. |
y2 | number | (Argument) The y position of the second point. |
... | number | (Argument) You can continue passing x and y position of the points. |
x1 | number | (Result) The transformed x position of the first point. |
y1 | number | (Result) The transformed y position of the first point. |
x2 | number | (Result) The transformed x position of the second point. |
y2 | number | (Result) The transformed y position of the second point. |
... | number | (Result) Additional transformed x and y position of the points. |
Transform a vector from world coordinates to local coordinates.
localX, localY = Body:getLocalVector( worldX, worldY )
worldX | number | The vector x component in world coordinates. |
worldY | number | The vector y component in world coordinates. |
localX | number | The vector x component in local coordinates. |
localY | number | The vector y component in local coordinates. |
Get the mass of the body.
Static bodies always have a mass of 0.
mass = Body:getMass()
mass | number | The mass of the body (in kilograms). |
Returns the mass, its center, and the rotational inertia.
x, y, mass, inertia = Body:getMassData()
x | number | The x position of the center of mass. |
y | number | The y position of the center of mass. |
mass | number | The mass of the body. |
inertia | number | The rotational inertia. |
Get the position of the body.
Note that this may not be the center of mass of the body.
x, y = Body:getPosition()
x | number | The x position. |
y | number | The y position. |
Get the position and angle of the body.
Note that the position may not be the center of mass of the body. An angle of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes clockwise from our point of view.
x, y, angle = Body:getTransform()
x | number | The x component of the position. |
y | number | The y component of the position. |
angle | number | The angle in radians. |
Returns the Lua value associated with this Body.
value = Body:getUserData()
value | any | The Lua value associated with the Body. |
Get the center of mass position in world coordinates.
Use Body:getLocalCenter to get the center of mass in local coordinates.
x, y = Body:getWorldCenter()
x | number | The x coordinate of the center of mass. |
y | number | The y coordinate of the center of mass. |
Transform a point from local coordinates to world coordinates.
worldX, worldY = Body:getWorldPoint( localX, localY )
localX | number | The x position in local coordinates. |
localY | number | The y position in local coordinates. |
worldX | number | The x position in world coordinates. |
worldY | number | The y position in world coordinates. |
Transforms multiple points from local coordinates to world coordinates.
x1, y1, x2, y2 = Body:getWorldPoints( x1, y1, x2, y2 )
x1 | number | The x position of the first point. |
y1 | number | The y position of the first point. |
x2 | number | The x position of the second point. |
y2 | number | The y position of the second point. |
x1 | number | The transformed x position of the first point. |
y1 | number | The transformed y position of the first point. |
x2 | number | The transformed x position of the second point. |
y2 | number | The transformed y position of the second point. |
Transform a vector from local coordinates to world coordinates.
worldX, worldY = Body:getWorldVector( localX, localY )
localX | number | The vector x component in local coordinates. |
localY | number | The vector y component in local coordinates. |
worldX | number | The vector x component in world coordinates. |
worldY | number | The vector y component in world coordinates. |
Get the x position of the body in world coordinates.
x = Body:getX()
x | number | The x position in world coordinates. |
Get the y position of the body in world coordinates.
y = Body:getY()
y | number | The y position in world coordinates. |
Returns whether the body is actively used in the simulation.
status = Body:isActive()
status | boolean | True if the body is active or false if not. |
Returns the sleep status of the body.
status = Body:isAwake()
status | boolean | True if the body is awake or false if not. |
Get the bullet status of a body.
There are two methods to check for body collisions:
* at their location when the world is updated (default)
* using continuous collision detection (CCD)
The default method is efficient, but a body moving very quickly may sometimes jump over another body without producing a collision. A body that is set as a bullet will use CCD. This is less efficient, but is guaranteed not to jump when moving quickly.
Note that static bodies (with zero mass) always use CCD, so your walls will not let a fast moving body pass through even if it is not a bullet.
status = Body:isBullet()
status | boolean | The bullet status of the body. |
Gets whether the Body is destroyed. Destroyed bodies cannot be used.
destroyed = Body:isDestroyed()
destroyed | boolean | Whether the Body is destroyed. |
Returns whether the body rotation is locked.
fixed = Body:isFixedRotation()
fixed | boolean | True if the body's rotation is locked or false if not. |
Returns the sleeping behaviour of the body.
allowed = Body:isSleepingAllowed()
allowed | boolean | True if the body is allowed to sleep or false if not. |
Gets whether the Body is touching the given other Body.
touching = Body:isTouching( otherbody )
otherbody | Body | The other body to check. |
touching | boolean | True if this body is touching the other body, false otherwise. |
Resets the mass of the body by recalculating it from the mass properties of the fixtures.
Body:resetMassData()
Sets whether the body is active in the world.
An inactive body does not take part in the simulation. It will not move or cause any collisions.
Body:setActive( active )
active | boolean | If the body is active or not. |
Set the angle of the body.
The angle is measured in radians. If you need to transform it from degrees, use math.rad.
A value of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes ''clockwise'' from our point of view.
It is possible to cause a collision with another body by changing its angle.
Body:setAngle( angle )
angle | number | The angle in radians. |
Sets the angular damping of a Body
See Body:getAngularDamping for a definition of angular damping.
Angular damping can take any value from 0 to infinity. It is recommended to stay between 0 and 0.1, though. Other values will look unrealistic.
Body:setAngularDamping( damping )
damping | number | The new angular damping. |
Sets the angular velocity of a Body.
The angular velocity is the ''rate of change of angle over time''.
This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.
Body:setAngularVelocity( w )
w | number | The new angular velocity, in radians per second |
Wakes the body up or puts it to sleep.
Body:setAwake( awake )
awake | boolean | The body sleep status. |
Set the bullet status of a body.
There are two methods to check for body collisions:
* at their location when the world is updated (default)
* using continuous collision detection (CCD)
The default method is efficient, but a body moving very quickly may sometimes jump over another body without producing a collision. A body that is set as a bullet will use CCD. This is less efficient, but is guaranteed not to jump when moving quickly.
Note that static bodies (with zero mass) always use CCD, so your walls will not let a fast moving body pass through even if it is not a bullet.
Body:setBullet( status )
status | boolean | The bullet status of the body. |
Set whether a body has fixed rotation.
Bodies with fixed rotation don't vary the speed at which they rotate. Calling this function causes the mass to be reset.
Body:setFixedRotation( isFixed )
isFixed | boolean | Whether the body should have fixed rotation. |
Sets a new gravity scale factor for the body.
Body:setGravityScale( scale )
scale | number | The new gravity scale factor. |
Set the inertia of a body.
Body:setInertia( inertia )
inertia | number | The new moment of inertia, in kilograms * pixel squared. |
Sets the linear damping of a Body
See Body:getLinearDamping for a definition of linear damping.
Linear damping can take any value from 0 to infinity. It is recommended to stay between 0 and 0.1, though. Other values will make the objects look 'floaty'(if gravity is enabled).
Body:setLinearDamping( ld )
ld | number | The new linear damping |
Sets a new linear velocity for the Body.
This function will not accumulate anything; any impulses previously applied since the last call to World:update will be lost.
Body:setLinearVelocity( x, y )
x | number | The x-component of the velocity vector. |
y | number | The y-component of the velocity vector. |
Overrides the calculated mass data.
Body:setMassData( x, y, mass, inertia )
x | number | The x position of the center of mass. |
y | number | The y position of the center of mass. |
mass | number | The mass of the body. |
inertia | number | The rotational inertia. |
Set the position of the body.
Note that this may not be the center of mass of the body.
This function cannot wake up the body.
Body:setPosition( x, y )
x | number | The x position. |
y | number | The y position. |
Sets the sleeping behaviour of the body. Should sleeping be allowed, a body at rest will automatically sleep. A sleeping body is not simulated unless it collided with an awake body. Be wary that one can end up with a situation like a floating sleeping body if the floor was removed.
Body:setSleepingAllowed( allowed )
allowed | boolean | True if the body is allowed to sleep or false if not. |
Set the position and angle of the body.
Note that the position may not be the center of mass of the body. An angle of 0 radians will mean 'looking to the right'. Although radians increase counter-clockwise, the y axis points down so it becomes clockwise from our point of view.
This function cannot wake up the body.
Body:setTransform( x, y, angle )
x | number | The x component of the position. |
y | number | The y component of the position. |
angle | number | The angle in radians. |
Associates a Lua value with the Body.
To delete the reference, explicitly pass nil.
Body:setUserData( value )
value | any | The Lua value to associate with the Body. |
Set the x position of the body.
This function cannot wake up the body.
Body:setX( x )
x | number | The x position. |
Set the y position of the body.
This function cannot wake up the body.
Body:setY( y )
y | number | The y position. |
Returns a child of the shape as an EdgeShape.
shape = ChainShape:getChildEdge( index )
index | number | The index of the child. |
shape | EdgeShape | The child as an EdgeShape. |
Gets the vertex that establishes a connection to the next shape.
Setting next and previous ChainShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
x, y = ChainShape:getNextVertex()
x | number | The x-component of the vertex, or nil if ChainShape:setNextVertex hasn't been called. |
y | number | The y-component of the vertex, or nil if ChainShape:setNextVertex hasn't been called. |
Returns a point of the shape.
x, y = ChainShape:getPoint( index )
index | number | The index of the point to return. |
x | number | The x-coordinate of the point. |
y | number | The y-coordinate of the point. |
Returns all points of the shape.
x1, y1, x2, y2 = ChainShape:getPoints()
x1 | number | The x-coordinate of the first point. |
y1 | number | The y-coordinate of the first point. |
x2 | number | The x-coordinate of the second point. |
y2 | number | The y-coordinate of the second point. |
Gets the vertex that establishes a connection to the previous shape.
Setting next and previous ChainShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
x, y = ChainShape:getPreviousVertex()
x | number | The x-component of the vertex, or nil if ChainShape:setPreviousVertex hasn't been called. |
y | number | The y-component of the vertex, or nil if ChainShape:setPreviousVertex hasn't been called. |
Returns the number of vertices the shape has.
count = ChainShape:getVertexCount()
count | number | The number of vertices. |
Sets a vertex that establishes a connection to the next shape.
This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
ChainShape:setNextVertex( x, y )
x | number | The x-component of the vertex. |
y | number | The y-component of the vertex. |
Sets a vertex that establishes a connection to the previous shape.
This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
ChainShape:setPreviousVertex( x, y )
x | number | The x-component of the vertex. |
y | number | The y-component of the vertex. |
Gets the center point of the circle shape.
x, y = CircleShape:getPoint()
x | number | The x-component of the center point of the circle. |
y | number | The y-component of the center point of the circle. |
Gets the radius of the circle shape.
radius = CircleShape:getRadius()
radius | number | The radius of the circle |
Sets the location of the center of the circle shape.
CircleShape:setPoint( x, y )
x | number | The x-component of the new center point of the circle. |
y | number | The y-component of the new center point of the circle. |
Sets the radius of the circle.
CircleShape:setRadius( radius )
radius | number | The radius of the circle |
Gets the child indices of the shapes of the two colliding fixtures. For ChainShapes, an index of 1 is the first edge in the chain. Used together with Fixture:rayCast or ChainShape:getChildEdge.
indexA, indexB = Contact:getChildren()
indexA | number | The child index of the first fixture's shape. |
indexB | number | The child index of the second fixture's shape. |
Gets the two Fixtures that hold the shapes that are in contact.
fixtureA, fixtureB = Contact:getFixtures()
fixtureA | Fixture | The first Fixture. |
fixtureB | Fixture | The second Fixture. |
Get the friction between two shapes that are in contact.
friction = Contact:getFriction()
friction | number | The friction of the contact. |
Get the normal vector between two shapes that are in contact.
This function returns the coordinates of a unit vector that points from the first shape to the second.
nx, ny = Contact:getNormal()
nx | number | The x component of the normal vector. |
ny | number | The y component of the normal vector. |
Returns the contact points of the two colliding fixtures. There can be one or two points.
x1, y1, x2, y2 = Contact:getPositions()
x1 | number | The x coordinate of the first contact point. |
y1 | number | The y coordinate of the first contact point. |
x2 | number | The x coordinate of the second contact point. |
y2 | number | The y coordinate of the second contact point. |
Get the restitution between two shapes that are in contact.
restitution = Contact:getRestitution()
restitution | number | The restitution between the two shapes. |
Returns whether the contact is enabled. The collision will be ignored if a contact gets disabled in the preSolve callback.
enabled = Contact:isEnabled()
enabled | boolean | True if enabled, false otherwise. |
Returns whether the two colliding fixtures are touching each other.
touching = Contact:isTouching()
touching | boolean | True if they touch or false if not. |
Resets the contact friction to the mixture value of both fixtures.
Contact:resetFriction()
Resets the contact restitution to the mixture value of both fixtures.
Contact:resetRestitution()
Enables or disables the contact.
Contact:setEnabled( enabled )
enabled | boolean | True to enable or false to disable. |
Sets the contact friction.
Contact:setFriction( friction )
friction | number | The contact friction. |
Sets the contact restitution.
Contact:setRestitution( restitution )
restitution | number | The contact restitution. |
Gets the damping ratio.
ratio = DistanceJoint:getDampingRatio()
ratio | number | The damping ratio. |
Gets the response speed.
Hz = DistanceJoint:getFrequency()
Hz | number | The response speed. |
Gets the equilibrium distance between the two Bodies.
l = DistanceJoint:getLength()
l | number | The length between the two Bodies. |
Sets the damping ratio.
DistanceJoint:setDampingRatio( ratio )
ratio | number | The damping ratio. |
Sets the response speed.
DistanceJoint:setFrequency( Hz )
Hz | number | The response speed. |
Sets the equilibrium distance between the two Bodies.
DistanceJoint:setLength( l )
l | number | The length between the two Bodies. |
Gets the vertex that establishes a connection to the next shape.
Setting next and previous EdgeShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
x, y = EdgeShape:getNextVertex()
x | number | The x-component of the vertex, or nil if EdgeShape:setNextVertex hasn't been called. |
y | number | The y-component of the vertex, or nil if EdgeShape:setNextVertex hasn't been called. |
Returns the local coordinates of the edge points.
x1, y1, x2, y2 = EdgeShape:getPoints()
x1 | number | The x-component of the first vertex. |
y1 | number | The y-component of the first vertex. |
x2 | number | The x-component of the second vertex. |
y2 | number | The y-component of the second vertex. |
Gets the vertex that establishes a connection to the previous shape.
Setting next and previous EdgeShape vertices can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
x, y = EdgeShape:getPreviousVertex()
x | number | The x-component of the vertex, or nil if EdgeShape:setPreviousVertex hasn't been called. |
y | number | The y-component of the vertex, or nil if EdgeShape:setPreviousVertex hasn't been called. |
Sets a vertex that establishes a connection to the next shape.
This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
EdgeShape:setNextVertex( x, y )
x | number | The x-component of the vertex. |
y | number | The y-component of the vertex. |
Sets a vertex that establishes a connection to the previous shape.
This can help prevent unwanted collisions when a flat shape slides along the edge and moves over to the new shape.
EdgeShape:setPreviousVertex( x, y )
x | number | The x-component of the vertex. |
y | number | The y-component of the vertex. |
Returns the points of the fixture bounding box. In case the fixture has multiple children a 1-based index can be specified. For example, a fixture will have multiple children with a chain shape.
topLeftX, topLeftY, bottomRightX, bottomRightY = Fixture:getBoundingBox( index )
index (1) | number | A bounding box of the fixture. |
topLeftX | number | The x position of the top-left point. |
topLeftY | number | The y position of the top-left point. |
bottomRightX | number | The x position of the bottom-right point. |
bottomRightY | number | The y position of the bottom-right point. |
Returns the categories the fixture belongs to.
... = Fixture:getCategory()
... | number | The categories. |
Returns the density of the fixture.
density = Fixture:getDensity()
density | number | The fixture density in kilograms per square meter. |
Returns the filter data of the fixture.
Categories and masks are encoded as the bits of a 16-bit integer.
categories, mask, group = Fixture:getFilterData()
categories | number | The categories as an integer from 0 to 65535. |
mask | number | The mask as an integer from 0 to 65535. |
group | number | The group as an integer from -32768 to 32767. |
Returns the friction of the fixture.
friction = Fixture:getFriction()
friction | number | The fixture friction. |
Returns the group the fixture belongs to. Fixtures with the same group will always collide if the group is positive or never collide if it's negative. The group zero means no group.
The groups range from -32768 to 32767.
group = Fixture:getGroupIndex()
group | number | The group of the fixture. |
Returns which categories this fixture should '''NOT''' collide with.
... = Fixture:getMask()
... | number | The masks. |
Returns the mass, its center and the rotational inertia.
x, y, mass, inertia = Fixture:getMassData()
x | number | The x position of the center of mass. |
y | number | The y position of the center of mass. |
mass | number | The mass of the fixture. |
inertia | number | The rotational inertia. |
Returns the restitution of the fixture.
restitution = Fixture:getRestitution()
restitution | number | The fixture restitution. |
Returns the shape of the fixture. This shape is a reference to the actual data used in the simulation. It's possible to change its values between timesteps.
shape = Fixture:getShape()
shape | Shape | The fixture's shape. |
Returns the Lua value associated with this fixture.
value = Fixture:getUserData()
value | any | The Lua value associated with the fixture. |
Gets whether the Fixture is destroyed. Destroyed fixtures cannot be used.
destroyed = Fixture:isDestroyed()
destroyed | boolean | Whether the Fixture is destroyed. |
Returns whether the fixture is a sensor.
sensor = Fixture:isSensor()
sensor | boolean | If the fixture is a sensor. |
Casts a ray against the shape of the fixture and returns the surface normal vector and the line position where the ray hit. If the ray missed the shape, nil will be returned.
The ray starts on the first point of the input line and goes towards the second point of the line. The fifth argument is the maximum distance the ray is going to travel as a scale factor of the input line length.
The childIndex parameter is used to specify which child of a parent shape, such as a ChainShape, will be ray casted. For ChainShapes, the index of 1 is the first edge on the chain. Ray casting a parent shape will only test the child specified so if you want to test every shape of the parent, you must loop through all of its children.
The world position of the impact can be calculated by multiplying the line vector with the third return value and adding it to the line starting point.
hitx, hity = x1 + (x2 - x1) * fraction, y1 + (y2 - y1) * fraction
xn, yn, fraction = Fixture:rayCast( x1, y1, x2, y2, maxFraction, childIndex )
x1 | number | The x position of the input line starting point. |
y1 | number | The y position of the input line starting point. |
x2 | number | The x position of the input line end point. |
y2 | number | The y position of the input line end point. |
maxFraction | number | Ray length parameter. |
childIndex (1) | number | The index of the child the ray gets cast against. |
xn | number | The x component of the normal vector of the edge where the ray hit the shape. |
yn | number | The y component of the normal vector of the edge where the ray hit the shape. |
fraction | number | The position on the input line where the intersection happened as a factor of the line length. |
Sets the categories the fixture belongs to. There can be up to 16 categories represented as a number from 1 to 16.
All fixture's default category is 1.
Fixture:setCategory( ... )
... | number | The categories. |
Sets the density of the fixture. Call Body:resetMassData if this needs to take effect immediately.
Fixture:setDensity( density )
density | number | The fixture density in kilograms per square meter. |
Sets the filter data of the fixture.
Groups, categories, and mask can be used to define the collision behaviour of the fixture.
If two fixtures are in the same group they either always collide if the group is positive, or never collide if it's negative. If the group is zero or they do not match, then the contact filter checks if the fixtures select a category of the other fixture with their masks. The fixtures do not collide if that's not the case. If they do have each other's categories selected, the return value of the custom contact filter will be used. They always collide if none was set.
There can be up to 16 categories. Categories and masks are encoded as the bits of a 16-bit integer.
When created, prior to calling this function, all fixtures have category set to 1, mask set to 65535 (all categories) and group set to 0.
This function allows setting all filter data for a fixture at once. To set only the categories, the mask or the group, you can use Fixture:setCategory, Fixture:setMask or Fixture:setGroupIndex respectively.
Fixture:setFilterData( categories, mask, group )
categories | number | The categories as an integer from 0 to 65535. |
mask | number | The mask as an integer from 0 to 65535. |
group | number | The group as an integer from -32768 to 32767. |
Sets the friction of the fixture.
Friction determines how shapes react when they 'slide' along other shapes. Low friction indicates a slippery surface, like ice, while high friction indicates a rough surface, like concrete. Range: 0.0 - 1.0.
Fixture:setFriction( friction )
friction | number | The fixture friction. |
Sets the group the fixture belongs to. Fixtures with the same group will always collide if the group is positive or never collide if it's negative. The group zero means no group.
The groups range from -32768 to 32767.
Fixture:setGroupIndex( group )
group | number | The group as an integer from -32768 to 32767. |
Sets the category mask of the fixture. There can be up to 16 categories represented as a number from 1 to 16.
This fixture will '''NOT''' collide with the fixtures that are in the selected categories if the other fixture also has a category of this fixture selected.
Fixture:setMask( ... )
... | number | The masks. |
Sets the restitution of the fixture.
Fixture:setRestitution( restitution )
restitution | number | The fixture restitution. |
Sets whether the fixture should act as a sensor.
Sensors do not cause collision responses, but the begin-contact and end-contact World callbacks will still be called for this fixture.
Fixture:setSensor( sensor )
sensor | boolean | The sensor status. |
Associates a Lua value with the fixture.
To delete the reference, explicitly pass nil.
Fixture:setUserData( value )
value | any | The Lua value to associate with the fixture. |
Checks if a point is inside the shape of the fixture.
isInside = Fixture:testPoint( x, y )
x | number | The x position of the point. |
y | number | The y position of the point. |
isInside | boolean | True if the point is inside or false if it is outside. |
Gets the maximum friction force in Newtons.
force = FrictionJoint:getMaxForce()
force | number | Maximum force in Newtons. |
Gets the maximum friction torque in Newton-meters.
torque = FrictionJoint:getMaxTorque()
torque | number | Maximum torque in Newton-meters. |
Sets the maximum friction force in Newtons.
FrictionJoint:setMaxForce( maxForce )
maxForce | number | Max force in Newtons. |
Sets the maximum friction torque in Newton-meters.
FrictionJoint:setMaxTorque( torque )
torque | number | Maximum torque in Newton-meters. |
Get the Joints connected by this GearJoint.
joint1, joint2 = GearJoint:getJoints()
joint1 | Joint | The first connected Joint. |
joint2 | Joint | The second connected Joint. |
Get the ratio of a gear joint.
ratio = GearJoint:getRatio()
ratio | number | The ratio of the joint. |
Set the ratio of a gear joint.
GearJoint:setRatio( ratio )
ratio | number | The new ratio of the joint. |
Explicitly destroys the Joint. An error will occur if you attempt to use the object after calling this function.
In 0.7.2, when you don't have time to wait for garbage collection, this function
may be used to free the object immediately.
Joint:destroy()
Get the anchor points of the joint.
x1, y1, x2, y2 = Joint:getAnchors()
x1 | number | The x-component of the anchor on Body 1. |
y1 | number | The y-component of the anchor on Body 1. |
x2 | number | The x-component of the anchor on Body 2. |
y2 | number | The y-component of the anchor on Body 2. |
Gets the bodies that the Joint is attached to.
bodyA, bodyB = Joint:getBodies()
bodyA | Body | The first Body. |
bodyB | Body | The second Body. |
Gets whether the connected Bodies collide.
c = Joint:getCollideConnected()
c | boolean | True if they collide, false otherwise. |
Returns the reaction force in newtons on the second body
x, y = Joint:getReactionForce( x )
x | number | How long the force applies. Usually the inverse time step or 1/dt. |
x | number | The x-component of the force. |
y | number | The y-component of the force. |
Returns the reaction torque on the second body.
torque = Joint:getReactionTorque( invdt )
invdt | number | How long the force applies. Usually the inverse time step or 1/dt. |
torque | number | The reaction torque on the second body. |
Gets a string representing the type.
type = Joint:getType()
type | JointType | A string with the name of the Joint type. |
Returns the Lua value associated with this Joint.
value = Joint:getUserData()
value | any | The Lua value associated with the Joint. |
Gets whether the Joint is destroyed. Destroyed joints cannot be used.
destroyed = Joint:isDestroyed()
destroyed | boolean | Whether the Joint is destroyed. |
Associates a Lua value with the Joint.
To delete the reference, explicitly pass nil.
Joint:setUserData( value )
value | any | The Lua value to associate with the Joint. |
Gets the target angular offset between the two Bodies the Joint is attached to.
angleoffset = MotorJoint:getAngularOffset()
angleoffset | number | The target angular offset in radians: the second body's angle minus the first body's angle. |
Gets the target linear offset between the two Bodies the Joint is attached to.
x, y = MotorJoint:getLinearOffset()
x | number | The x component of the target linear offset, relative to the first Body. |
y | number | The y component of the target linear offset, relative to the first Body. |
Sets the target angluar offset between the two Bodies the Joint is attached to.
MotorJoint:setAngularOffset( angleoffset )
angleoffset | number | The target angular offset in radians: the second body's angle minus the first body's angle. |
Sets the target linear offset between the two Bodies the Joint is attached to.
MotorJoint:setLinearOffset( x, y )
x | number | The x component of the target linear offset, relative to the first Body. |
y | number | The y component of the target linear offset, relative to the first Body. |
Returns the damping ratio.
ratio = MouseJoint:getDampingRatio()
ratio | number | The new damping ratio. |
Returns the frequency.
freq = MouseJoint:getFrequency()
freq | number | The frequency in hertz. |
Gets the highest allowed force.
f = MouseJoint:getMaxForce()
f | number | The max allowed force. |
Gets the target point.
x, y = MouseJoint:getTarget()
x | number | The x-component of the target. |
y | number | The x-component of the target. |
Sets a new damping ratio.
MouseJoint:setDampingRatio( ratio )
ratio | number | The new damping ratio. |
Sets a new frequency.
MouseJoint:setFrequency( freq )
freq | number | The new frequency in hertz. |
Sets the highest allowed force.
MouseJoint:setMaxForce( f )
f | number | The max allowed force. |
Sets the target point.
MouseJoint:setTarget( x, y )
x | number | The x-component of the target. |
y | number | The y-component of the target. |
Get the local coordinates of the polygon's vertices.
This function has a variable number of return values. It can be used in a nested fashion with love.graphics.polygon.
x1, y1, x2, y2 = PolygonShape:getPoints()
x1 | number | The x-component of the first vertex. |
y1 | number | The y-component of the first vertex. |
x2 | number | The x-component of the second vertex. |
y2 | number | The y-component of the second vertex. |
PrismaticJoint:areLimitsEnabled
Checks whether the limits are enabled.
enabled = PrismaticJoint:areLimitsEnabled()
enabled | boolean | True if enabled, false otherwise. |
Gets the world-space axis vector of the Prismatic Joint.
x, y = PrismaticJoint:getAxis()
x | number | The x-axis coordinate of the world-space axis vector. |
y | number | The y-axis coordinate of the world-space axis vector. |
Get the current joint angle speed.
s = PrismaticJoint:getJointSpeed()
s | number | Joint angle speed in meters/second. |
PrismaticJoint:getJointTranslation
Get the current joint translation.
t = PrismaticJoint:getJointTranslation()
t | number | Joint translation, usually in meters.. |
Gets the joint limits.
lower, upper = PrismaticJoint:getLimits()
lower | number | The lower limit, usually in meters. |
upper | number | The upper limit, usually in meters. |
Gets the lower limit.
lower = PrismaticJoint:getLowerLimit()
lower | number | The lower limit, usually in meters. |
PrismaticJoint:getMaxMotorForce
Gets the maximum motor force.
f = PrismaticJoint:getMaxMotorForce()
f | number | The maximum motor force, usually in N. |
Returns the current motor force.
force = PrismaticJoint:getMotorForce( invdt )
invdt | number | How long the force applies. Usually the inverse time step or 1/dt. |
force | number | The force on the motor in newtons. |
Gets the motor speed.
s = PrismaticJoint:getMotorSpeed()
s | number | The motor speed, usually in meters per second. |
PrismaticJoint:getReferenceAngle
Gets the reference angle.
angle = PrismaticJoint:getReferenceAngle()
angle | number | The reference angle in radians. |
Gets the upper limit.
upper = PrismaticJoint:getUpperLimit()
upper | number | The upper limit, usually in meters. |
Checks whether the motor is enabled.
enabled = PrismaticJoint:isMotorEnabled()
enabled | boolean | True if enabled, false if disabled. |
Sets the limits.
PrismaticJoint:setLimits( lower, upper )
lower | number | The lower limit, usually in meters. |
upper | number | The upper limit, usually in meters. |
PrismaticJoint:setLimitsEnabled
Enables/disables the joint limit.
enable = PrismaticJoint:setLimitsEnabled()
enable | boolean | True if enabled, false if disabled. |
Sets the lower limit.
PrismaticJoint:setLowerLimit( lower )
lower | number | The lower limit, usually in meters. |
PrismaticJoint:setMaxMotorForce
Set the maximum motor force.
PrismaticJoint:setMaxMotorForce( f )
f | number | The maximum motor force, usually in N. |
PrismaticJoint:setMotorEnabled
Enables/disables the joint motor.
PrismaticJoint:setMotorEnabled( enable )
enable | boolean | True to enable, false to disable. |
Sets the motor speed.
PrismaticJoint:setMotorSpeed( s )
s | number | The motor speed, usually in meters per second. |
Sets the upper limit.
PrismaticJoint:setUpperLimit( upper )
upper | number | The upper limit, usually in meters. |
Get the total length of the rope.
length = PulleyJoint:getConstant()
length | number | The length of the rope in the joint. |
Get the ground anchor positions in world coordinates.
a1x, a1y, a2x, a2y = PulleyJoint:getGroundAnchors()
a1x | number | The x coordinate of the first anchor. |
a1y | number | The y coordinate of the first anchor. |
a2x | number | The x coordinate of the second anchor. |
a2y | number | The y coordinate of the second anchor. |
Get the current length of the rope segment attached to the first body.
length = PulleyJoint:getLengthA()
length | number | The length of the rope segment. |
Get the current length of the rope segment attached to the second body.
length = PulleyJoint:getLengthB()
length | number | The length of the rope segment. |
Get the maximum lengths of the rope segments.
len1, len2 = PulleyJoint:getMaxLengths()
len1 | number | The maximum length of the first rope segment. |
len2 | number | The maximum length of the second rope segment. |
Get the pulley ratio.
ratio = PulleyJoint:getRatio()
ratio | number | The pulley ratio of the joint. |
Set the total length of the rope.
Setting a new length for the rope updates the maximum length values of the joint.
PulleyJoint:setConstant( length )
length | number | The new length of the rope in the joint. |
Set the maximum lengths of the rope segments.
The physics module also imposes maximum values for the rope segments. If the parameters exceed these values, the maximum values are set instead of the requested values.
PulleyJoint:setMaxLengths( max1, max2 )
max1 | number | The new maximum length of the first segment. |
max2 | number | The new maximum length of the second segment. |
Set the pulley ratio.
PulleyJoint:setRatio( ratio )
ratio | number | The new pulley ratio of the joint. |
RevoluteJoint:areLimitsEnabled
Checks whether limits are enabled.
enabled = RevoluteJoint:areLimitsEnabled()
enabled | boolean | True if enabled, false otherwise. |
Get the current joint angle.
angle = RevoluteJoint:getJointAngle()
angle | number | The joint angle in radians. |
Get the current joint angle speed.
s = RevoluteJoint:getJointSpeed()
s | number | Joint angle speed in radians/second. |
Gets the joint limits.
lower, upper = RevoluteJoint:getLimits()
lower | number | The lower limit, in radians. |
upper | number | The upper limit, in radians. |
Gets the lower limit.
lower = RevoluteJoint:getLowerLimit()
lower | number | The lower limit, in radians. |
RevoluteJoint:getMaxMotorTorque
Gets the maximum motor force.
f = RevoluteJoint:getMaxMotorTorque()
f | number | The maximum motor force, in Nm. |
Gets the motor speed.
s = RevoluteJoint:getMotorSpeed()
s | number | The motor speed, radians per second. |
Get the current motor force.
f = RevoluteJoint:getMotorTorque()
f | number | The current motor force, in Nm. |
RevoluteJoint:getReferenceAngle
Gets the reference angle.
angle = RevoluteJoint:getReferenceAngle()
angle | number | The reference angle in radians. |
Gets the upper limit.
upper = RevoluteJoint:getUpperLimit()
upper | number | The upper limit, in radians. |
RevoluteJoint:hasLimitsEnabled
Checks whether limits are enabled.
enabled = RevoluteJoint:hasLimitsEnabled()
enabled | boolean | True if enabled, false otherwise. |
Checks whether the motor is enabled.
enabled = RevoluteJoint:isMotorEnabled()
enabled | boolean | True if enabled, false if disabled. |
Sets the limits.
RevoluteJoint:setLimits( lower, upper )
lower | number | The lower limit, in radians. |
upper | number | The upper limit, in radians. |
RevoluteJoint:setLimitsEnabled
Enables/disables the joint limit.
RevoluteJoint:setLimitsEnabled( enable )
enable | boolean | True to enable, false to disable. |
Sets the lower limit.
RevoluteJoint:setLowerLimit( lower )
lower | number | The lower limit, in radians. |
RevoluteJoint:setMaxMotorTorque
Set the maximum motor force.
RevoluteJoint:setMaxMotorTorque( f )
f | number | The maximum motor force, in Nm. |
Enables/disables the joint motor.
RevoluteJoint:setMotorEnabled( enable )
enable | boolean | True to enable, false to disable. |
Sets the motor speed.
RevoluteJoint:setMotorSpeed( s )
s | number | The motor speed, radians per second. |
Sets the upper limit.
RevoluteJoint:setUpperLimit( upper )
upper | number | The upper limit, in radians. |
Gets the maximum length of a RopeJoint.
maxLength = RopeJoint:getMaxLength()
maxLength | number | The maximum length of the RopeJoint. |
Sets the maximum length of a RopeJoint.
RopeJoint:setMaxLength( maxLength )
maxLength | number | The new maximum length of the RopeJoint. |
Returns the points of the bounding box for the transformed shape.
topLeftX, topLeftY, bottomRightX, bottomRightY = Shape:computeAABB( tx, ty, tr, childIndex )
tx | number | The translation of the shape on the x-axis. |
ty | number | The translation of the shape on the y-axis. |
tr | number | The shape rotation. |
childIndex (1) | number | The index of the child to compute the bounding box of. |
topLeftX | number | The x position of the top-left point. |
topLeftY | number | The y position of the top-left point. |
bottomRightX | number | The x position of the bottom-right point. |
bottomRightY | number | The y position of the bottom-right point. |
Computes the mass properties for the shape with the specified density.
x, y, mass, inertia = Shape:computeMass( density )
density | number | The shape density. |
x | number | The x postition of the center of mass. |
y | number | The y postition of the center of mass. |
mass | number | The mass of the shape. |
inertia | number | The rotational inertia. |
Returns the number of children the shape has.
count = Shape:getChildCount()
count | number | The number of children. |
Gets the radius of the shape.
radius = Shape:getRadius()
radius | number | The radius of the shape. |
Gets a string representing the Shape.
This function can be useful for conditional debug drawing.
type = Shape:getType()
type | ShapeType | The type of the Shape. |
Casts a ray against the shape and returns the surface normal vector and the line position where the ray hit. If the ray missed the shape, nil will be returned. The Shape can be transformed to get it into the desired position.
The ray starts on the first point of the input line and goes towards the second point of the line. The fourth argument is the maximum distance the ray is going to travel as a scale factor of the input line length.
The childIndex parameter is used to specify which child of a parent shape, such as a ChainShape, will be ray casted. For ChainShapes, the index of 1 is the first edge on the chain. Ray casting a parent shape will only test the child specified so if you want to test every shape of the parent, you must loop through all of its children.
The world position of the impact can be calculated by multiplying the line vector with the third return value and adding it to the line starting point.
hitx, hity = x1 + (x2 - x1) * fraction, y1 + (y2 - y1) * fraction
xn, yn, fraction = Shape:rayCast( x1, y1, x2, y2, maxFraction, tx, ty, tr, childIndex )
x1 | number | The x position of the input line starting point. |
y1 | number | The y position of the input line starting point. |
x2 | number | The x position of the input line end point. |
y2 | number | The y position of the input line end point. |
maxFraction | number | Ray length parameter. |
tx | number | The translation of the shape on the x-axis. |
ty | number | The translation of the shape on the y-axis. |
tr | number | The shape rotation. |
childIndex (1) | number | The index of the child the ray gets cast against. |
xn | number | The x component of the normal vector of the edge where the ray hit the shape. |
yn | number | The y component of the normal vector of the edge where the ray hit the shape. |
fraction | number | The position on the input line where the intersection happened as a factor of the line length. |
This is particularly useful for mouse interaction with the shapes. By looping through all shapes and testing the mouse position with this function, we can find which shapes the mouse touches.
hit = Shape:testPoint( tx, ty, tr, x, y )
tx | number | Translates the shape along the x-axis. |
ty | number | Translates the shape along the y-axis. |
tr | number | Rotates the shape. |
x | number | The x-component of the point. |
y | number | The y-component of the point. |
hit | boolean | True if inside, false if outside |
Returns the damping ratio of the joint.
ratio = WeldJoint:getDampingRatio()
ratio | number | The damping ratio. |
Returns the frequency.
freq = WeldJoint:getFrequency()
freq | number | The frequency in hertz. |
Gets the reference angle.
angle = WeldJoint:getReferenceAngle()
angle | number | The reference angle in radians. |
Sets a new damping ratio.
WeldJoint:setDampingRatio( ratio )
ratio | number | The new damping ratio. |
Sets a new frequency.
WeldJoint:setFrequency( freq )
freq | number | The new frequency in hertz. |
Gets the world-space axis vector of the Wheel Joint.
x, y = WheelJoint:getAxis()
x | number | The x-axis coordinate of the world-space axis vector. |
y | number | The y-axis coordinate of the world-space axis vector. |
Returns the current joint translation speed.
speed = WheelJoint:getJointSpeed()
speed | number | The translation speed of the joint in meters per second. |
WheelJoint:getJointTranslation
Returns the current joint translation.
position = WheelJoint:getJointTranslation()
position | number | The translation of the joint in meters. |
Returns the maximum motor torque.
maxTorque = WheelJoint:getMaxMotorTorque()
maxTorque | number | The maximum torque of the joint motor in newton meters. |
Returns the speed of the motor.
speed = WheelJoint:getMotorSpeed()
speed | number | The speed of the joint motor in radians per second. |
Returns the current torque on the motor.
torque = WheelJoint:getMotorTorque( invdt )
invdt | number | How long the force applies. Usually the inverse time step or 1/dt. |
torque | number | The torque on the motor in newton meters. |
WheelJoint:getSpringDampingRatio
Returns the damping ratio.
ratio = WheelJoint:getSpringDampingRatio()
ratio | number | The damping ratio. |
Returns the spring frequency.
freq = WheelJoint:getSpringFrequency()
freq | number | The frequency in hertz. |
Checks if the joint motor is running.
on = WheelJoint:isMotorEnabled()
on | boolean | The status of the joint motor. |
Sets a new maximum motor torque.
WheelJoint:setMaxMotorTorque( maxTorque )
maxTorque | number | The new maximum torque for the joint motor in newton meters. |
Starts and stops the joint motor.
WheelJoint:setMotorEnabled( enable )
enable | boolean | True turns the motor on and false turns it off. |
Sets a new speed for the motor.
WheelJoint:setMotorSpeed( speed )
speed | number | The new speed for the joint motor in radians per second. |
WheelJoint:setSpringDampingRatio
Sets a new damping ratio.
WheelJoint:setSpringDampingRatio( ratio )
ratio | number | The new damping ratio. |
Sets a new spring frequency.
WheelJoint:setSpringFrequency( freq )
freq | number | The new frequency in hertz. |
Destroys the world, taking all bodies, joints, fixtures and their shapes with it.
An error will occur if you attempt to use any of the destroyed objects after calling this function.
World:destroy()
Returns a table with all bodies.
bodies = World:getBodies()
bodies | table | A sequence with all bodies. |
Returns the number of bodies in the world.
n = World:getBodyCount()
n | number | The number of bodies in the world. |
Returns functions for the callbacks during the world update.
beginContact, endContact, preSolve, postSolve = World:getCallbacks()
beginContact | function | Gets called when two fixtures begin to overlap. |
endContact | function | Gets called when two fixtures cease to overlap. |
preSolve | function | Gets called before a collision gets resolved. |
postSolve | function | Gets called after the collision has been resolved. |
Returns the number of contacts in the world.
n = World:getContactCount()
n | number | The number of contacts in the world. |
Returns the function for collision filtering.
contactFilter = World:getContactFilter()
contactFilter | function | The function that handles the contact filtering. |
Returns a table with all Contacts.
contacts = World:getContacts()
contacts | table | A sequence with all Contacts. |
Get the gravity of the world.
x, y = World:getGravity()
x | number | The x component of gravity. |
y | number | The y component of gravity. |
Returns the number of joints in the world.
n = World:getJointCount()
n | number | The number of joints in the world. |
Returns a table with all joints.
joints = World:getJoints()
joints | table | A sequence with all joints. |
Gets whether the World is destroyed. Destroyed worlds cannot be used.
destroyed = World:isDestroyed()
destroyed | boolean | Whether the World is destroyed. |
Returns if the world is updating its state.
This will return true inside the callbacks from World:setCallbacks.
locked = World:isLocked()
locked | boolean | Will be true if the world is in the process of updating its state. |
Gets the sleep behaviour of the world.
allow = World:isSleepingAllowed()
allow | boolean | True if bodies in the world are allowed to sleep, or false if not. |
Calls a function for each fixture inside the specified area by searching for any overlapping bounding box (Fixture:getBoundingBox).
World:queryBoundingBox( topLeftX, topLeftY, bottomRightX, bottomRightY, callback )
topLeftX | number | The x position of the top-left point. |
topLeftY | number | The y position of the top-left point. |
bottomRightX | number | The x position of the bottom-right point. |
bottomRightY | number | The y position of the bottom-right point. |
callback | function | This function gets passed one argument, the fixture, and should return a boolean. The search will continue if it is true or stop if it is false. |
Casts a ray and calls a function for each fixtures it intersects.
World:rayCast( x1, y1, x2, y2, callback )
x1 | number | The x position of the starting point of the ray. |
y1 | number | The x position of the starting point of the ray. |
x2 | number | The x position of the end point of the ray. |
y2 | number | The x value of the surface normal vector of the shape edge. |
callback | function | A function called for each fixture intersected by the ray. The function gets six arguments and should return a number as a control value. The intersection points fed into the function will be in an arbitrary order. If you wish to find the closest point of intersection, you'll need to do that yourself within the function. The easiest way to do that is by using the fraction value. |
Sets functions for the collision callbacks during the world update.
Four Lua functions can be given as arguments. The value nil removes a function.
When called, each function will be passed three arguments. The first two arguments are the colliding fixtures and the third argument is the Contact between them. The postSolve callback additionally gets the normal and tangent impulse for each contact point. See notes.
If you are interested to know when exactly each callback is called, consult a Box2d manual
World:setCallbacks( beginContact, endContact, preSolve, postSolve )
beginContact | function | Gets called when two fixtures begin to overlap. |
endContact | function | Gets called when two fixtures cease to overlap. This will also be called outside of a world update, when colliding objects are destroyed. |
preSolve (nil) | function | Gets called before a collision gets resolved. |
postSolve (nil) | function | Gets called after the collision has been resolved. |
Sets a function for collision filtering.
If the group and category filtering doesn't generate a collision decision, this function gets called with the two fixtures as arguments. The function should return a boolean value where true means the fixtures will collide and false means they will pass through each other.
World:setContactFilter( filter )
filter | function | The function handling the contact filtering. |
Set the gravity of the world.
World:setGravity( x, y )
x | number | The x component of gravity. |
y | number | The y component of gravity. |
Sets the sleep behaviour of the world.
World:setSleepingAllowed( allow )
allow | boolean | True if bodies in the world are allowed to sleep, or false if not. |
Translates the World's origin. Useful in large worlds where floating point precision issues become noticeable at far distances from the origin.
World:translateOrigin( x, y )
x | number | The x component of the new origin with respect to the old origin. |
y | number | The y component of the new origin with respect to the old origin. |
Update the state of the world.
World:update( dt, velocityiterations, positioniterations )
dt | number | The time (in seconds) to advance the physics simulation. |
velocityiterations (8) | number | The maximum number of steps used to determine the new velocities when resolving a collision. |
positioniterations (3) | number | The maximum number of steps used to determine the new positions when resolving a collision. |
static
Static bodies do not move.
dynamic
Dynamic bodies collide with all bodies.
kinematic
Kinematic bodies only collide with dynamic bodies.
distance
friction
gear
A GearJoint.
mouse
A MouseJoint.
prismatic
pulley
A PulleyJoint.
revolute
rope
A RopeJoint.
weld
A WeldJoint.
circle
The Shape is a CircleShape.
polygon
The Shape is a PolygonShape.
edge
chain
The Shape is a ChainShape.
Attempts to find a decoder for the encoded sound data in the specified file.
decoder = love.sound.newDecoder( file, buffer )
file | File | The file with encoded sound data. |
buffer (2048) | number | The size of each decoded chunk, in bytes. |
decoder | Decoder | A new Decoder object. |
decoder = love.sound.newDecoder( filename, buffer )
filename | string | The filename of the file with encoded sound data. |
buffer (2048) | number | The size of each decoded chunk, in bytes. |
decoder | Decoder | A new Decoder object. |
Creates new SoundData from a filepath, File, or Decoder. It's also possible to create SoundData with a custom sample rate, channel and bit depth.
The sound data will be decoded to the memory in a raw format. It is recommended to create only short sounds like effects, as a 3 minute song uses 30 MB of memory this way.
soundData = love.sound.newSoundData( filename )
filename | string | The file name of the file to load. |
soundData | SoundData | A new SoundData object. |
soundData = love.sound.newSoundData( file )
file | File | A File pointing to an audio file. |
soundData | SoundData | A new SoundData object. |
soundData = love.sound.newSoundData( decoder )
decoder | Decoder | Decode data from this Decoder until EOF. |
soundData | SoundData | A new SoundData object. |
soundData = love.sound.newSoundData( samples, rate, bits, channels )
samples | number | Total number of samples. |
rate (44100) | number | Number of samples per second |
bits (16) | number | Bits per sample (8 or 16). |
channels (2) | number | Either 1 for mono or 2 for stereo. |
soundData | SoundData | A new SoundData object. |
Creates a new copy of current decoder.
The new decoder will start decoding from the beginning of the audio stream.
decoder = Decoder:clone()
decoder | Decoder | New copy of the decoder. |
Decodes the audio and returns a SoundData object containing the decoded audio data.
soundData = Decoder:decode()
soundData | SoundData | Decoded audio data. |
Returns the number of bits per sample.
bitDepth = Decoder:getBitDepth()
bitDepth | number | Either 8, or 16. |
Returns the number of channels in the stream.
channels = Decoder:getChannelCount()
channels | number | 1 for mono, 2 for stereo. |
Gets the duration of the sound file. It may not always be sample-accurate, and it may return -1 if the duration cannot be determined at all.
duration = Decoder:getDuration()
duration | number | The duration of the sound file in seconds, or -1 if it cannot be determined. |
Returns the sample rate of the Decoder.
rate = Decoder:getSampleRate()
rate | number | Number of samples per second. |
Sets the currently playing position of the Decoder.
Decoder:seek( offset )
offset | number | The position to seek to, in seconds. |
Returns the number of bits per sample.
bitdepth = SoundData:getBitDepth()
bitdepth | number | Either 8, or 16. |
Returns the number of channels in the SoundData.
channels = SoundData:getChannelCount()
channels | number | 1 for mono, 2 for stereo. |
Gets the duration of the sound data.
duration = SoundData:getDuration()
duration | number | The duration of the sound data in seconds. |
Gets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order.
sample = SoundData:getSample( i )
i | number | An integer value specifying the position of the sample (starting at 0). |
sample | number | The normalized samplepoint (range -1.0 to 1.0). |
sample = SoundData:getSample( i, channel )
i | number | An integer value specifying the position of the sample (starting at 0). |
channel | number | The index of the channel to get within the given sample. |
sample | number | The normalized samplepoint (range -1.0 to 1.0). |
Returns the number of samples per channel of the SoundData.
count = SoundData:getSampleCount()
count | number | Total number of samples. |
Returns the sample rate of the SoundData.
rate = SoundData:getSampleRate()
rate | number | Number of samples per second. |
Sets the value of the sample-point at the specified position. For stereo SoundData objects, the data from the left and right channels are interleaved in that order.
SoundData:setSample( i, sample )
i | number | An integer value specifying the position of the sample (starting at 0). |
sample | number | The normalized samplepoint (range -1.0 to 1.0). |
SoundData:setSample( i, channel, sample )
i | number | An integer value specifying the position of the sample (starting at 0). |
channel | number | The index of the channel to set within the given sample. |
sample | number | The normalized samplepoint (range -1.0 to 1.0). |
Gets text from the clipboard.
text = love.system.getClipboardText()
text | string | The text currently held in the system's clipboard. |
Gets the current operating system. In general, LÖVE abstracts away the need to know the current operating system, but there are a few cases where it can be useful (especially in combination with os.execute.)
osString = love.system.getOS()
osString | string | The current operating system. 'OS X', 'Windows', 'Linux', 'Android' or 'iOS'. |
Gets information about the system's power supply.
state, percent, seconds = love.system.getPowerInfo()
state | PowerState | The basic state of the power supply. |
percent | number | Percentage of battery life left, between 0 and 100. nil if the value can't be determined or there's no battery. |
seconds | number | Seconds of battery life left. nil if the value can't be determined or there's no battery. |
Gets the amount of logical processor in the system.
processorCount = love.system.getProcessorCount()
processorCount | number | Amount of logical processors. |
love.system.hasBackgroundMusic
Gets whether another application on the system is playing music in the background.
Currently this is implemented on iOS and Android, and will always return false on other operating systems. The t.audio.mixwithsystem flag in love.conf can be used to configure whether background audio / music from other apps should play while LÖVE is open.
backgroundmusic = love.system.hasBackgroundMusic()
backgroundmusic | boolean | True if the user is playing music in the background via another app, false otherwise. |
Opens a URL with the user's web or file browser.
success = love.system.openURL( url )
url | string | The URL to open. Must be formatted as a proper URL. |
success | boolean | Whether the URL was opened successfully. |
Puts text in the clipboard.
love.system.setClipboardText( text )
text | string | The new text to hold in the system's clipboard. |
Causes the device to vibrate, if possible. Currently this will only work on Android and iOS devices that have a built-in vibration motor.
love.system.vibrate( seconds )
seconds (0.5) | number | The duration to vibrate for. If called on an iOS device, it will always vibrate for 0.5 seconds due to limitations in the iOS system APIs. |
unknown
Cannot determine power status.
battery
Not plugged in, running on a battery.
nobattery
Plugged in, no battery available.
charging
Plugged in, charging battery.
charged
Plugged in, battery is fully charged.
Creates or retrieves a named thread channel.
channel = love.thread.getChannel( name )
name | string | The name of the channel you want to create or retrieve. |
channel | Channel | The Channel object associated with the name. |
Create a new unnamed thread channel.
One use for them is to pass new unnamed channels to other threads via Channel:push on a named channel.
channel = love.thread.newChannel()
channel | Channel | The new Channel object. |
Creates a new Thread from a filename, string or FileData object containing Lua code.
thread = love.thread.newThread( filename )
filename | string | The name of the Lua file to use as the source. |
thread | Thread | A new Thread that has yet to be started. |
thread = love.thread.newThread( fileData )
fileData | FileData | The FileData containing the Lua code to use as the source. |
thread | Thread | A new Thread that has yet to be started. |
thread = love.thread.newThread( codestring )
codestring | string | A string containing the Lua code to use as the source. It needs to either be at least 1024 characters long, or contain at least one newline. |
thread | Thread | A new Thread that has yet to be started. |
Retrieves the value of a Channel message and removes it from the message queue.
It waits until a message is in the queue then returns the message value.
value = Channel:demand()
value | Variant | The contents of the message. |
value = Channel:demand( timeout )
timeout | number | The maximum amount of time to wait. |
value | Variant | The contents of the message or nil if the timeout expired. |
Retrieves the number of messages in the thread Channel queue.
count = Channel:getCount()
count | number | The number of messages in the queue. |
Gets whether a pushed value has been popped or otherwise removed from the Channel.
hasread = Channel:hasRead( id )
id | number | An id value previously returned by Channel:push. |
hasread | boolean | Whether the value represented by the id has been removed from the Channel via Channel:pop, Channel:demand, or Channel:clear. |
Retrieves the value of a Channel message, but leaves it in the queue.
It returns nil if there's no message in the queue.
value = Channel:peek()
value | Variant | The contents of the message. |
Executes the specified function atomically with respect to this Channel.
Calling multiple methods in a row on the same Channel is often useful. However if multiple Threads are calling this Channel's methods at the same time, the different calls on each Thread might end up interleaved (e.g. one or more of the second thread's calls may happen in between the first thread's calls.)
This method avoids that issue by making sure the Thread calling the method has exclusive access to the Channel until the specified function has returned.
ret1, ... = Channel:performAtomic( func, ... )
func | function | The function to call, the form of function(channel, arg1, arg2, ...) end. The Channel is passed as the first argument to the function when it is called. |
... | any | Additional arguments that the given function will receive when it is called. |
ret1 | any | The first return value of the given function (if any.) |
... | any | Any other return values. |
Retrieves the value of a Channel message and removes it from the message queue.
It returns nil if there are no messages in the queue.
value = Channel:pop()
value | Variant | The contents of the message. |
Send a message to the thread Channel.
See Variant for the list of supported types.
id = Channel:push( value )
value | Variant | The contents of the message. |
id | number | Identifier which can be supplied to Channel:hasRead |
Send a message to the thread Channel and wait for a thread to accept it.
See Variant for the list of supported types.
success = Channel:supply( value )
value | Variant | The contents of the message. |
success | boolean | Whether the message was successfully supplied (always true). |
success = Channel:supply( value, timeout )
value | Variant | The contents of the message. |
timeout | number | The maximum amount of time to wait. |
success | boolean | Whether the message was successfully supplied before the timeout expired. |
Retrieves the error string from the thread if it produced an error.
err = Thread:getError()
err | string | The error message, or nil if the Thread has not caused an error. |
Returns whether the thread is currently running.
Threads which are not running can be (re)started with Thread:start.
value = Thread:isRunning()
value | boolean | True if the thread is running, false otherwise. |
Starts the thread.
Beginning with version 0.9.0, threads can be restarted after they have completed their execution.
Thread:start()
Thread:start( ... )
... | Variant | A string, number, boolean, LÖVE object, or simple table. |
Returns the average delta time (seconds per frame) over the last second.
delta = love.timer.getAverageDelta()
delta | number | The average delta time over the last second. |
Returns the time between the last two frames.
dt = love.timer.getDelta()
dt | number | The time passed (in seconds). |
Returns the current frames per second.
fps = love.timer.getFPS()
fps | number | The current FPS. |
Returns the value of a timer with an unspecified starting time.
This function should only be used to calculate differences between points in time, as the starting time of the timer is unknown.
time = love.timer.getTime()
time | number | The time in seconds. Given as a decimal, accurate to the microsecond. |
Pauses the current thread for the specified amount of time.
love.timer.sleep( s )
s | number | Seconds to sleep for. |
Measures the time between two frames.
Calling this changes the return value of love.timer.getDelta.
dt = love.timer.step()
dt | number | The time passed (in seconds). |
Gets the current position of the specified touch-press, in pixels.
x, y = love.touch.getPosition( id )
id | light userdata | The identifier of the touch-press. Use love.touch.getTouches, love.touchpressed, or love.touchmoved to obtain touch id values. |
x | number | The position along the x-axis of the touch-press inside the window, in pixels. |
y | number | The position along the y-axis of the touch-press inside the window, in pixels. |
Gets the current pressure of the specified touch-press.
pressure = love.touch.getPressure( id )
id | light userdata | The identifier of the touch-press. Use love.touch.getTouches, love.touchpressed, or love.touchmoved to obtain touch id values. |
pressure | number | The pressure of the touch-press. Most touch screens aren't pressure sensitive, in which case the pressure will be 1. |
Gets a list of all active touch-presses.
touches = love.touch.getTouches()
touches | table | A list of active touch-press id values, which can be used with love.touch.getPosition. |
Creates a new VideoStream. Currently only Ogg Theora video files are supported. VideoStreams can't draw videos, see love.graphics.newVideo for that.
videostream = love.video.newVideoStream( filename )
filename | string | The file path to the Ogg Theora video file. |
videostream | VideoStream | A new VideoStream. |
videostream = love.video.newVideoStream( file )
file | File | The File object containing the Ogg Theora video. |
videostream | VideoStream | A new VideoStream. |
Gets the filename of the VideoStream.
filename = VideoStream:getFilename()
filename | string | The filename of the VideoStream |
Gets whether the VideoStream is playing.
playing = VideoStream:isPlaying()
playing | boolean | Whether the VideoStream is playing. |
Sets the current playback position of the VideoStream.
VideoStream:seek( offset )
offset | number | The time in seconds since the beginning of the VideoStream. |
Gets the current playback position of the VideoStream.
seconds = VideoStream:tell()
seconds | number | The number of seconds sionce the beginning of the VideoStream. |
Converts a number from pixels to density-independent units.
The pixel density inside the window might be greater (or smaller) than the 'size' of the window. For example on a retina screen in Mac OS X with the highdpi window flag enabled, the window may take up the same physical size as an 800x600 window, but the area inside the window uses 1600x1200 pixels. love.window.fromPixels(1600) would return 800 in that case.
This function converts coordinates from pixels to the size users are expecting them to display at onscreen. love.window.toPixels does the opposite. The highdpi window flag must be enabled to use the full pixel density of a Retina screen on Mac OS X and iOS. The flag currently does nothing on Windows and Linux, and on Android it is effectively always enabled.
Most LÖVE functions return values and expect arguments in terms of pixels rather than density-independent units.
value = love.window.fromPixels( pixelvalue )
pixelvalue | number | A number in pixels to convert to density-independent units. |
value | number | The converted number, in density-independent units. |
x, y = love.window.fromPixels( px, py )
px | number | The x-axis value of a coordinate in pixels. |
py | number | The y-axis value of a coordinate in pixels. |
x | number | The converted x-axis value of the coordinate, in density-independent units. |
y | number | The converted y-axis value of the coordinate, in density-independent units. |
Gets the DPI scale factor associated with the window.
The pixel density inside the window might be greater (or smaller) than the 'size' of the window. For example on a retina screen in Mac OS X with the highdpi window flag enabled, the window may take up the same physical size as an 800x600 window, but the area inside the window uses 1600x1200 pixels. love.window.getDPIScale() would return 2.0 in that case.
The love.window.fromPixels and love.window.toPixels functions can also be used to convert between units.
The highdpi window flag must be enabled to use the full pixel density of a Retina screen on Mac OS X and iOS. The flag currently does nothing on Windows and Linux, and on Android it is effectively always enabled.
scale = love.window.getDPIScale()
scale | number | The pixel scale factor associated with the window. |
love.window.getDesktopDimensions
Gets the width and height of the desktop.
width, height = love.window.getDesktopDimensions( displayindex )
displayindex (1) | number | The index of the display, if multiple monitors are available. |
width | number | The width of the desktop. |
height | number | The height of the desktop. |
Gets the number of connected monitors.
count = love.window.getDisplayCount()
count | number | The number of currently connected displays. |
Gets the name of a display.
name = love.window.getDisplayName( displayindex )
displayindex (1) | number | The index of the display to get the name of. |
name | string | The name of the specified display. |
love.window.getDisplayOrientation
Gets current device display orientation.
orientation = love.window.getDisplayOrientation( displayindex )
displayindex (nil) | number | Display index to get its display orientation, or nil for default display index. |
orientation | DisplayOrientation | Current device display orientation. |
Gets whether the window is fullscreen.
fullscreen, fstype = love.window.getFullscreen()
fullscreen | boolean | True if the window is fullscreen, false otherwise. |
fstype | FullscreenType | The type of fullscreen mode used. |
love.window.getFullscreenModes
Gets a list of supported fullscreen modes.
modes = love.window.getFullscreenModes( displayindex )
displayindex (1) | number | The index of the display, if multiple monitors are available. |
modes | table | A table of width/height pairs. (Note that this may not be in order.) |
modes | number | Window fullscreen width. |
modes | number | Window fullscreen height. |
Gets the window icon.
imagedata = love.window.getIcon()
imagedata | ImageData | The window icon imagedata, or nil if no icon has been set with love.window.setIcon. |
Gets the display mode and properties of the window.
width, height, flags = love.window.getMode()
width | number | Window width. |
height | number | Window height. |
flags | table | Table with the window properties: |
flags | boolean | Fullscreen (true), or windowed (false). |
flags | FullscreenType | The type of fullscreen mode used. |
flags | boolean | True if the graphics framerate is synchronized with the monitor's refresh rate, false otherwise. |
flags | number | The number of antialiasing samples used (0 if MSAA is disabled). |
flags | boolean | True if the window is resizable in windowed mode, false otherwise. |
flags | boolean | True if the window is borderless in windowed mode, false otherwise. |
flags | boolean | True if the window is centered in windowed mode, false otherwise. |
flags | number | The index of the display the window is currently in, if multiple monitors are available. |
flags | number | The minimum width of the window, if it's resizable. |
flags | number | The minimum height of the window, if it's resizable. |
flags | boolean | True if high-dpi mode is allowed on Retina displays in OS X. Does nothing on non-Retina displays. |
flags | number | The refresh rate of the screen's current display mode, in Hz. May be 0 if the value can't be determined. |
flags | number | The x-coordinate of the window's position in its current display. |
flags | number | The y-coordinate of the window's position in its current display. |
flags | boolean | Removed in 0.10.0 (use love.graphics.isGammaCorrect instead). True if sRGB gamma correction is applied when drawing to the screen. |
Gets the position of the window on the screen.
The window position is in the coordinate space of the display it is currently in.
x, y, displayindex = love.window.getPosition()
x | number | The x-coordinate of the window's position. |
y | number | The y-coordinate of the window's position. |
displayindex | number | The index of the display that the window is in. |
Gets area inside the window which is known to be unobstructed by a system title bar, the iPhone X notch, etc. Useful for making sure UI elements can be seen by the user.
x, y, w, h = love.window.getSafeArea()
x | number | Starting position of safe area (x-axis). |
y | number | Starting position of safe area (y-axis). |
w | number | Width of safe area. |
h | number | Height of safe area. |
Gets the window title.
title = love.window.getTitle()
title | string | The current window title. |
Gets current vertical synchronization (vsync).
vsync = love.window.getVSync()
vsync | number | Current vsync status. 1 if enabled, 0 if disabled, and -1 for adaptive vsync. |
Checks if the game window has keyboard focus.
focus = love.window.hasFocus()
focus | boolean | True if the window has the focus or false if not. |
Checks if the game window has mouse focus.
focus = love.window.hasMouseFocus()
focus | boolean | True if the window has mouse focus or false if not. |
love.window.isDisplaySleepEnabled
Gets whether the display is allowed to sleep while the program is running.
Display sleep is disabled by default. Some types of input (e.g. joystick button presses) might not prevent the display from sleeping, if display sleep is allowed.
enabled = love.window.isDisplaySleepEnabled()
enabled | boolean | True if system display sleep is enabled / allowed, false otherwise. |
Gets whether the Window is currently maximized.
The window can be maximized if it is not fullscreen and is resizable, and either the user has pressed the window's Maximize button or love.window.maximize has been called.
maximized = love.window.isMaximized()
maximized | boolean | True if the window is currently maximized in windowed mode, false otherwise. |
Gets whether the Window is currently minimized.
minimized = love.window.isMinimized()
minimized | boolean | True if the window is currently minimized, false otherwise. |
Checks if the window is open.
open = love.window.isOpen()
open | boolean | True if the window is open, false otherwise. |
Checks if the game window is visible.
The window is considered visible if it's not minimized and the program isn't hidden.
visible = love.window.isVisible()
visible | boolean | True if the window is visible or false if not. |
Makes the window as large as possible.
This function has no effect if the window isn't resizable, since it essentially programmatically presses the window's 'maximize' button.
love.window.maximize()
Causes the window to request the attention of the user if it is not in the foreground.
In Windows the taskbar icon will flash, and in OS X the dock icon will bounce.
love.window.requestAttention( continuous )
continuous (false) | boolean | Whether to continuously request attention until the window becomes active, or to do it only once. |
Restores the size and position of the window if it was minimized or maximized.
love.window.restore()
love.window.setDisplaySleepEnabled
Sets whether the display is allowed to sleep while the program is running.
Display sleep is disabled by default. Some types of input (e.g. joystick button presses) might not prevent the display from sleeping, if display sleep is allowed.
love.window.setDisplaySleepEnabled( enable )
enable | boolean | True to enable system display sleep, false to disable it. |
Enters or exits fullscreen. The display to use when entering fullscreen is chosen based on which display the window is currently in, if multiple monitors are connected.
success = love.window.setFullscreen( fullscreen )
fullscreen | boolean | Whether to enter or exit fullscreen mode. |
success | boolean | True if an attempt to enter fullscreen was successful, false otherwise. |
success = love.window.setFullscreen( fullscreen, fstype )
fullscreen | boolean | Whether to enter or exit fullscreen mode. |
fstype | FullscreenType | The type of fullscreen mode to use. |
success | boolean | True if an attempt to enter fullscreen was successful, false otherwise. |
Sets the window icon until the game is quit. Not all operating systems support very large icon images.
success = love.window.setIcon( imagedata )
imagedata | ImageData | The window icon image. |
success | boolean | Whether the icon has been set successfully. |
Sets the display mode and properties of the window.
If width or height is 0, setMode will use the width and height of the desktop.
Changing the display mode may have side effects: for example, canvases will be cleared and values sent to shaders with canvases beforehand or re-draw to them afterward if you need to.
success = love.window.setMode( width, height, flags )
width | number | Display width. |
height | number | Display height. |
flags | table | The flags table with the options: |
flags | boolean | Fullscreen (true), or windowed (false). |
flags | FullscreenType | The type of fullscreen to use. This defaults to 'normal' in 0.9.0 through 0.9.2 and to 'desktop' in 0.10.0 and older. |
flags | boolean | True if LÖVE should wait for vsync, false otherwise. |
flags | number | The number of antialiasing samples. |
flags | boolean | Whether a stencil buffer should be allocated. If true, the stencil buffer will have 8 bits. |
flags | number | The number of bits in the depth buffer. |
flags | boolean | True if the window should be resizable in windowed mode, false otherwise. |
flags | boolean | True if the window should be borderless in windowed mode, false otherwise. |
flags | boolean | True if the window should be centered in windowed mode, false otherwise. |
flags | number | The index of the display to show the window in, if multiple monitors are available. |
flags | number | The minimum width of the window, if it's resizable. Cannot be less than 1. |
flags | number | The minimum height of the window, if it's resizable. Cannot be less than 1. |
flags | boolean | True if high-dpi mode should be used on Retina displays in macOS and iOS. Does nothing on non-Retina displays. |
flags | number | The x-coordinate of the window's position in the specified display. |
flags | number | The y-coordinate of the window's position in the specified display. |
flags | boolean | Disables automatic DPI scaling when false. |
flags | boolean | Removed in 0.10.0 (set t.gammacorrect in conf.lua instead). True if sRGB gamma correction should be applied when drawing to the screen. |
success | boolean | True if successful, false otherwise. |
Sets the position of the window on the screen.
The window position is in the coordinate space of the specified display.
love.window.setPosition( x, y, displayindex )
x | number | The x-coordinate of the window's position. |
y | number | The y-coordinate of the window's position. |
displayindex (1) | number | The index of the display that the new window position is relative to. |
Sets the window title.
love.window.setTitle( title )
title | string | The new window title. |
Sets vertical synchronization mode.
love.window.setVSync( vsync )
vsync | number | VSync number: 1 to enable, 0 to disable, and -1 for adaptive vsync. |
Displays a message box dialog above the love window. The message box contains a title, optional text, and buttons.
success = love.window.showMessageBox( title, message, type, attachtowindow )
title | string | The title of the message box. |
message | string | The text inside the message box. |
type ('info') | MessageBoxType | The type of the message box. |
attachtowindow (true) | boolean | Whether the message box should be attached to the love window or free-floating. |
success | boolean | Whether the message box was successfully displayed. |
pressedbutton = love.window.showMessageBox( title, message, buttonlist, type, attachtowindow )
title | string | The title of the message box. |
message | string | The text inside the message box. |
buttonlist | table | A table containing a list of button names to show. The table can also contain the fields enterbutton and escapebutton, which should be the index of the default button to use when the user presses 'enter' or 'escape', respectively. |
type ('info') | MessageBoxType | The type of the message box. |
attachtowindow (true) | boolean | Whether the message box should be attached to the love window or free-floating. |
pressedbutton | number | The index of the button pressed by the user. May be 0 if the message box dialog was closed without pressing a button. |
Converts a number from density-independent units to pixels.
The pixel density inside the window might be greater (or smaller) than the 'size' of the window. For example on a retina screen in Mac OS X with the highdpi window flag enabled, the window may take up the same physical size as an 800x600 window, but the area inside the window uses 1600x1200 pixels. love.window.toPixels(800) would return 1600 in that case.
This is used to convert coordinates from the size users are expecting them to display at onscreen to pixels. love.window.fromPixels does the opposite. The highdpi window flag must be enabled to use the full pixel density of a Retina screen on Mac OS X and iOS. The flag currently does nothing on Windows and Linux, and on Android it is effectively always enabled.
Most LÖVE functions return values and expect arguments in terms of pixels rather than density-independent units.
pixelvalue = love.window.toPixels( value )
value | number | A number in density-independent units to convert to pixels. |
pixelvalue | number | The converted number, in pixels. |
px, py = love.window.toPixels( x, y )
x | number | The x-axis value of a coordinate in density-independent units to convert to pixels. |
y | number | The y-axis value of a coordinate in density-independent units to convert to pixels. |
px | number | The converted x-axis value of the coordinate, in pixels. |
py | number | The converted y-axis value of the coordinate, in pixels. |
Sets the display mode and properties of the window, without modifying unspecified properties.
If width or height is 0, updateMode will use the width and height of the desktop.
Changing the display mode may have side effects: for example, canvases will be cleared. Make sure to save the contents of canvases beforehand or re-draw to them afterward if you need to.
success = love.window.updateMode( width, height, settings )
width | number | Window width. |
height | number | Window height. |
settings | table | The settings table with the following optional fields. Any field not filled in will use the current value that would be returned by love.window.getMode. |
settings | boolean | Fullscreen (true), or windowed (false). |
settings | FullscreenType | The type of fullscreen to use. |
settings | boolean | True if LÖVE should wait for vsync, false otherwise. |
settings | number | The number of antialiasing samples. |
settings | boolean | True if the window should be resizable in windowed mode, false otherwise. |
settings | boolean | True if the window should be borderless in windowed mode, false otherwise. |
settings | boolean | True if the window should be centered in windowed mode, false otherwise. |
settings | number | The index of the display to show the window in, if multiple monitors are available. |
settings | number | The minimum width of the window, if it's resizable. Cannot be less than 1. |
settings | number | The minimum height of the window, if it's resizable. Cannot be less than 1. |
settings | boolean | True if high-dpi mode should be used on Retina displays in macOS and iOS. Does nothing on non-Retina displays. |
settings | number | The x-coordinate of the window's position in the specified display. |
settings | number | The y-coordinate of the window's position in the specified display. |
success | boolean | True if successful, false otherwise. |
unknown
Orientation cannot be determined.
landscape
Landscape orientation.
landscapeflipped
Landscape orientation (flipped).
portrait
Portrait orientation.
portraitflipped
Portrait orientation (flipped).
desktop
Sometimes known as borderless fullscreen windowed mode. A borderless screen-sized window is created which sits on top of all desktop UI elements. The window is automatically resized to match the dimensions of the desktop, and its size cannot be changed.
exclusive
Standard exclusive-fullscreen mode. Changes the display mode (actual resolution) of the monitor.
normal
Standard exclusive-fullscreen mode. Changes the display mode (actual resolution) of the monitor.