Shape:setRestitution

Shape:setRestitution Removed in LÖVE 0.8.0 This function is not supported in that and later versions. Sets the restitution of the shape. Restitution indicates the "bounciness" of the shape. High restitution can be used to model stuff like a rubber ball, while low restitution can be used for "dull" objects, like a bag of sand. Function Synopsis Shape:setRestitution( restitution ) Arguments number restitution The restitution of the shape. Returns Nothing. Notes A shape with a restitution

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:getAscent

Font:getAscent Available since LÖVE 0.9.0 This function is not supported in earlier versions. 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. Function Synopsis ascent = Font:getAscent( ) Arguments None. Returns number ascent The ascent of the Font in pixels. See Also Font Font:getDescent Font:getBaseline

Video:setFilter

Video:setFilter Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the scaling filters used when drawing the Video. Function Synopsis Video:setFilter( min, mag, anisotropy ) Arguments FilterMode min The filter mode used when scaling the Video down. FilterMode mag The filter mode used when scaling the Video up. number anisotropy (1) Maximum amount of anisotropic filtering used. Returns Nothing. See Also Video Video:getFilter FilterMode

Joystick:getName

Joystick:getName Available since LÖVE 0.9.0 It has been moved from love.joystick.getName. Gets the name of the joystick. Function Synopsis name = Joystick:getName( ) Arguments None. Returns string name The name of the joystick. See Also Joystick

Source:resume

Source:resume Available since LÖVE 0.7.0 This function is not supported in earlier versions. Resumes a paused Source. Function Synopsis Source:resume() Arguments None. Returns Nothing. See Also Source

CircleShape:setRadius

CircleShape:setRadius Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets the radius of the circle. Function Synopsis CircleShape:setRadius( radius ) Arguments number radius The radius of the circle Returns Nothing. See Also CircleShape

Contact:setFriction

Contact:setFriction Available since LÖVE 0.8.0 This function is not supported in earlier versions. Sets the contact friction. Function Synopsis Contact:setFriction( friction ) Arguments number friction The contact friction. Returns Nothing. See Also Contact

Rasterizer:getGlyphCount

Rasterizer:getGlyphCount Available since LÖVE 0.7.0 This function is not supported in earlier versions. TODO See Also Rasterizer GlyphData

SoundData:setSample

SoundData:setSample Sets the sample at the specified position. Function Synopsis SoundData:setSample( i, sample ) Arguments number i The position of the sample (0 means first sample). number sample A normalized sample (range -1.0 to 1.0). Returns Nothing. See Also SoundData