PrismaticJoint:getAxis

PrismaticJoint:getAxis Available since LÖVE 0.10.2 This function is not supported in earlier versions. Gets the world-space axis vector of the Prismatic Joint. Function Synopsis x, y = PrismaticJoint:getAxis( ) Arguments None. Returns number x The x-axis coordinate of the world-space axis vector. number y The y-axis coordinate of the world-space axis vector. See Also PrismaticJoint love.physics.newPrismaticJoint

Decoder:getSampleRate

Decoder:getSampleRate Returns the sample rate of the Decoder. Function Synopsis rate = Decoder:getSampleRate( ) Arguments None. Returns number rate Number of samples per second. See Also Decoder

Quad:getViewport

Quad:getViewport Gets the current viewport of this Quad. Function Synopsis x, y, w, h = Quad:getViewport( ) Arguments None. Returns number x The top-left corner along the x-axis. number y The top-right corner along the y-axis. number w The width of the viewport. number h The height of the viewport. See Also Quad

RevoluteJoint:setLowerLimit

RevoluteJoint:setLowerLimit Sets the lower limit. Function Synopsis RevoluteJoint:setLowerLimit( lower ) Arguments number lower The lower limit, in radians. Returns Nothing. See Also RevoluteJoint

(File):getFilename

(File):getFilename Available since LÖVE 0.10.0 This function is not supported in earlier versions. 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. Function Synopsis filename = File:getFilename( ) Arguments None. Returns string filename The filename of the File. See Also File

PrismaticJoint:getJointSpeed

PrismaticJoint:getJointSpeed Get the current joint angle speed. Function Synopsis s = PrismaticJoint:getJointSpeed( ) Arguments None. Returns number s Joint angle speed in meters/second. See Also PrismaticJoint

love.joystick.close

love.joystick.close Removed in LÖVE 0.9.0 This function is not supported in that and later versions. Closes a joystick, i.e. stop using it for generating events and in query functions. Function Synopsis love.joystick.close( joystick ) Arguments number joystick The joystick to be closed Returns Nothing. See Also love.joystick

ChainShape:getVertexCount

ChainShape:getVertexCount Available since LÖVE 0.8.0 This function is not supported in earlier versions. Returns the number of vertices the shape has. Function Synopsis count = ChainShape:getVertexCount( ) Arguments None. Returns number count The number of vertices. See Also ChainShape

love.timer.getDelta

love.timer.getDelta Returns the time between the last two frames. Function Synopsis dt = love.timer.getDelta( ) Arguments None. Returns number dt The time passed (in seconds). See Also love.timer

Source:getChannels

Source:getChannels Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets the number of channels in the Source. Only 1-channel (mono) Sources can use directional and positional effects. Function Synopsis channels = Source:getChannels( ) Arguments None. Returns number channels 1 for mono, 2 for stereo. See Also Source