MouseEnter (Event)/3D: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Fixed |
>Legend26 No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<onlyinclude>{{Event|name = MouseEnter | |||
|arguments = | |arguments = | ||
|description = Fired when a mouse "enters" or "touches" a 3D Object. | |description = Fired when a mouse "enters" or "touches" a 3D Object. | ||
| | |objects = [[ArcHandles]], [[Handles]] | ||
|}}</onlyinclude> | |}}</onlyinclude> | ||
|} | |||
{{clear floats}} | |||
{{Example|<pre> | |||
local function entering() | |||
print("Mouse has entered 3D GUI") | |||
end | |||
obj.MouseEnter:connect(entering) | |||
</pre>}} |
Latest revision as of 14:33, 17 January 2012
MouseEnter ( ) | |
Description | Fired when a mouse "enters" or "touches" a 3D Object. |
---|---|
Member of: | ArcHandles, Handles |
Example
local function entering() print("Mouse has entered 3D GUI") end obj.MouseEnter:connect(entering)