MouseEnter (Event)/3D: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer New page: {{Event|name=MouseEnter |arguments= |description= Fired when a mouse "enters" or "touches" a 3D Object. |object=ArcHandles, [[RBX.lua.Handles (Object)|Handl... |
>Legend26 No edit summary |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Event|name=MouseEnter | <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> | ||
{{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
![]() | |
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)