love.mouse.newCursor (한국어)

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Creates a new hardware Cursor object from an image file or ImageData.

Hardware cursors are framerate-independent and work the same way as normal operating system cursors. Unlike drawing an image at the mouse's current coordinates, hardware cursors never have visible lag between when the mouse is moved and when the cursor position updates, even at low framerates.

The hot spot is the point the operating system uses to determine what was clicked and at what position the mouse cursor is. For example, the normal arrow pointer normally has its hot spot at the top left of the image, but a crosshair cursor might have it in the middle.


O.png This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused!  



함수

형식

cursor = love.mouse.newCursor( imageData, hotx, hoty )

매개변수

ImageData (한국어) imageData
The ImageData to use for the new Cursor.
number (한국어) hotx (0)
The x-coordinate in the ImageData of the cursor's hot spot.
number (한국어) hoty (0)
The y-coordinate in the ImageData of the cursor's hot spot.

리턴값

Cursor (한국어) cursor
The new Cursor object.

함수

형식

cursor = love.mouse.newCursor( filename, hotx, hoty )

매개변수

string (한국어) filename
Path to the image to use for the new Cursor.
number (한국어) hotx (0)
The x-coordinate in the image of the cursor's hot spot.
number (한국어) hoty (0)
The y-coordinate in the image of the cursor's hot spot.

리턴값

Cursor (한국어) cursor
The new Cursor object.

함수

형식

cursor = love.mouse.newCursor( fileData, hotx, hoty )

매개변수

FileData (한국어) fileData
Data representing the image to use for the new Cursor.
number (한국어) hotx (0)
The x-coordinate in the image of the cursor's hot spot.
number (한국어) hoty (0)
The y-coordinate in the image of the cursor's hot spot.

리턴값

Cursor (한국어) cursor
The new Cursor object.

같이 보기

다른 언어