MouseUp (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Blocco
We have a default "returns" argument set up.
>Anaminus
Adding info
Line 2: Line 2:
|name                = MouseUp
|name                = MouseUp
|arguments            =  
|arguments            =  
|description          = Clears whatever the dragger instance currently is 'dragging'. Will error if [[MouseDown]] is not called first.  
|description          = Stops the current dragging action (made by [[MouseDown]]).
|object              = Dragger
|object              = Dragger
}}</onlyinclude>
}}</onlyinclude>


{{clear floats}}
{{clear floats}}
==Notes==
*Stops the current dragging action.
*Cannot be called if [[MouseDown]] hasn't already been called.
*Generally used with [[Button1Up|Mouse.Button1Up]].
==See Also==
*[[Dragger]]
*[[MouseDown]]
*[[MouseMove]]
*[[AxisRotate]]


[[Category:Methods]]
[[Category:Methods]]

Revision as of 15:06, 30 April 2011

MouseUp( )
Returns nil
Description: Stops the current dragging action (made by MouseDown).
Member of: Dragger


Notes

  • Stops the current dragging action.
  • Cannot be called if MouseDown hasn't already been called.
  • Generally used with Mouse.Button1Up.

See Also