WheelJoint:enableMotor

WheelJoint:enableMotor Available since LÖVE 0.8.0 This method is not supported in earlier versions. Removed in LÖVE 0.9.0 It has been renamed to WheelJoint:setMotorEnabled. Starts and stops the joint motor. Function Synopsis WheelJoint:enableMotor( on ) Arguments boolean on True turns the motor on and false turns it off. Returns Nothing. See Also WheelJoint

WeldJoint:setFrequency

WeldJoint:setFrequency Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets a new frequency. Function Synopsis WeldJoint:setFrequency( freq ) Arguments number freq The new frequency in hertz. Returns Nothing. See Also WeldJoint WeldJoint:getFrequency

WeldJoint:setDampingRatio

WeldJoint:setDampingRatio Available since LÖVE 0.8.0 This method is not supported in earlier versions. Sets a new damping ratio. Function Synopsis WeldJoint:setDampingRatio( ratio ) Arguments number ratio The new damping ratio. Returns Nothing. See Also WeldJoint WeldJoint:getDampingRatio

WeldJoint:getFrequency

WeldJoint:getFrequency Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns the frequency. Function Synopsis freq = WeldJoint:getFrequency( ) Arguments None. Returns number freq The frequency in hertz. See Also WeldJoint WeldJoint:setFrequency

WeldJoint:getDampingRatio

WeldJoint:getDampingRatio Available since LÖVE 0.8.0 This method is not supported in earlier versions. Returns the damping ratio of the joint. Function Synopsis ratio = WeldJoint:getDampingRatio( ) Arguments None. Returns number ratio The damping ratio. See Also WeldJoint WeldJoint:setDampingRatio

Video:tell

Video:tell Available since LÖVE 0.10.0 This function is not supported in earlier versions. Gets the current playback position of the Video. Function Synopsis seconds = Video:tell( ) Arguments None. Returns number seconds The time in seconds since the beginning of the Video. See Also Video Video:rewind Video:seek

Video:setSource

Video:setSource Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the audio Source used for playing back the video's audio. The audio Source also controls playback speed and synchronization. Function Synopsis Video:setSource( source ) Arguments Source source (nil) The audio Source used for audio playback, or nil to disable audio synchronization. Returns Nothing. See Also Video Video:getSource Source

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

Video:seek

Video:seek Available since LÖVE 0.10.0 This function is not supported in earlier versions. Sets the current playback position of the Video. Function Synopsis Video:seek( offset ) Arguments number offset The time in seconds since the beginning of the Video. Returns Nothing. See Also Video Video:rewind Video:tell

Video:rewind

Video:rewind Available since LÖVE 0.10.0 This function is not supported in earlier versions. Rewinds the Video to the beginning. Function Synopsis Video:rewind( ) Arguments None. Returns Nothing. See Also Video Video:play Video:seek Video:tell