MouseEnter (Event)/3D: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy Example added |
>Legend26 No edit summary |
||
(2 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> | {{Example|<pre> | ||
local function entering() | local function entering() |
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)