PluginMouse

사용되지 않는 항목 표시
만들 수 없음

The PluginMouse object gives Plugins access to the mouse. It works like the Mouse object and can be obtained using the plugin Plugin:GetMouse() method.

Note the PluginMouse can only be used when the plugin has been activated using Plugin:Activate().

In addition to the functions from the Mouse object, the PluginMouse includes the PluginMouse.DragEnter function which keeps track of items being selected while the mouse is dragging.

For more information on how to use mouse objects, see the Mouse page.

코드 샘플

PluginMouse Get

plugin:Activate(false) -- gain non exclusive access to the mouse
local mouse = plugin:GetMouse()
local function button1Down()
print("Left mouse click")
end
mouse.Button1Down:Connect(button1Down)

요약

속성

속성Mouse에서 상속되었습니다
  • 읽기 전용
    복제되지 않음
    병렬 읽기

    The CFrame of the mouse's position in 3D space.

  • 병렬 읽기

    The content ID of the image used as the Mouse icon.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    A CFrame positioned at the Workspace.CurrentCamera and oriented toward the mouse's 3D position.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    The object in 3D space the mouse is pointing to.

  • 병렬 읽기

    Determines an object (and its descendants) to be ignored when determining Mouse.Hit and Mouse.Target.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    Indicates the Enum.NormalId of the BasePart surface at which the mouse is pointing.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    A Ray directed towards the mouse's world position, originating from the Workspace.CurrentCamera world position.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    Describes the width of the game window in pixels.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    Describes the height of the game window in pixels.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    Describes the X (horizontal) component of the mouse's position on the screen.

  • 읽기 전용
    복제되지 않음
    병렬 읽기

    Describes the Y (vertical) component of the mouse's screen position.

이벤트

이벤트Mouse에서 상속되었습니다

속성

메서드

이벤트

DragEnter

플러그인 보안

Fired when Instances are being selected while the mouse is dragging.

매개 변수

instances: Objects