MouseUp (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>MrNicNac
New page: <onlyinclude>{{Method |name = MouseUp |arguments = |description = Clears whatever the dragger instance currently is 'dragging'. Will error if [[MouseDo...
 
>Anaminus
Adding info
 
(4 intermediate revisions by 3 users not shown)
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
|returns              = [[nil]]
}}</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]]

Latest 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