Font:hasGlyphs

Font:hasGlyphs Available since LÖVE 0.9.0 This function is not supported in earlier versions. Gets whether the Font can render a character or string. Function Synopsis hasglyphs = Font:hasGlyphs( text ) Arguments string text A UTF-8 encoded unicode string. Returns boolean hasglyph Whether the font can render all the UTF-8 characters in the string. Function Synopsis hasglyphs = Font:hasGlyphs( character1, character2, ... ) Arguments string character1 A unicode character. string chara

Font:setFallbacks

Font:setFallbacks Available since LÖVE 0.10.0 This function is not supported in earlier versions. 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). Function Synopsis Font:setFallbacks( fallbackfont1, ... ) Arguments Font fallbackfont1 The first fallback Font to use. Font ... Additional fallback Fonts. Returns Nothing. Notes If this

Font:setFilter

Font:setFilter Available since LÖVE 0.9.0 This function is not supported in earlier versions. Sets the filter mode for a font. Function Synopsis Font:setFilter( min, mag, anisotropy ) Arguments FilterMode min How to scale a font down. FilterMode mag How to scale a font up. number anisotropy (1) Maximum amount of anisotropic filtering used. Returns Nothing. See Also Font FilterMode

Font:setLineHeight

Font:setLineHeight 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. Function Synopsis Font:setLineHeight( height ) Arguments number height The new line height. Returns Nothing. See Also Font Font:getLineHeight

Framebuffer:getImageData

Framebuffer:getImageData Available since LÖVE 0.7.0 This function is not supported in earlier versions. Removed in LÖVE 0.8.0 It has been renamed to Canvas:getImageData. Returns the image data stored in the Framebuffer. Think of it as a screenshot of the hidden screen that is the framebuffer. Function Synopsis data = Framebuffer:getImageData( ) Arguments None. Returns ImageData data The image data stored in the framebuffer. See Also Framebuffer love.graphics.newScreenshot

Framebuffer:getWrap

Framebuffer:getWrap Available since LÖVE 0.7.2 This function is not supported in earlier versions. Removed in LÖVE 0.8.0 It has been renamed to Canvas:getWrap. Gets the wrapping properties of a Framebuffer. This functions returns the currently set horizontal and vertical wrapping modes for the framebuffer. Function Synopsis horiz, vert = Framebuffer:getWrap( ) Arguments None Returns WrapMode horiz Horizontal wrapping mode of the Framebuffer. WrapMode vert Vertical wrapping mode of

Framebuffer:renderTo

Framebuffer:renderTo Available since LÖVE 0.7.0 This function is not supported in earlier versions. Removed in LÖVE 0.8.0 It has been renamed to Canvas:renderTo. Render to the Framebuffer using a function. Function Synopsis Framebuffer:renderTo( func ) Arguments function func A function performing drawing operations. Returns Nothing. Notes This function will clear the target framebuffer. This is a shortcut to love.graphics.setRenderTarget: framebuffer:renderTo( func ) is the same

Framebuffer:setWrap

Framebuffer:setWrap Available since LÖVE 0.7.2 This function is not supported in earlier versions. Removed in LÖVE 0.8.0 It has been renamed to Canvas:setWrap. Sets the wrapping properties of a Framebuffer. This function sets the way the edges of a Framebuffer are treated if it is scaled or rotated. If the WrapMode is set to 'clamp', the edge will not be interpolated. If set to 'repeat', the edge will be interpolated with the pixels on the opposing side of the framebuffer. Function Sy

FrictionJoint:getMaxForce

FrictionJoint:getMaxForce Available since LÖVE 0.8.0 This function is not supported in earlier versions. Gets the maximum friction force in Newtons. Function Synopsis force = FrictionJoint:getMaxForce( ) Arguments None. Returns number force Maximum force in Newtons. See Also FrictionJoint FrictionJoint:setMaxForce

FrictionJoint:getMaxTorque

FrictionJoint:getMaxTorque Available since LÖVE 0.8.0 This function is not supported in earlier versions. Gets the maximum friction torque in Newton-meters. Function Synopsis torque = FrictionJoint:getMaxTorque( ) Arguments None. Returns number torque Maximum torque in Newton-meters. See Also FrictionJoint FrictionJoint:setMaxTorque