mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-10 08:44:47 +00:00
31 lines
586 B
Haxe
31 lines
586 B
Haxe
|
package funkin.ui.haxeui.components;
|
||
|
|
||
|
import funkin.input.Cursor;
|
||
|
import haxe.ui.events.MouseEvent;
|
||
|
import haxe.ui.containers.menus.MenuItem;
|
||
|
|
||
|
/**
|
||
|
* A HaxeUI menu item which:
|
||
|
* - Changes the current cursor when hovered over.
|
||
|
*/
|
||
|
class FunkinMenuItem extends MenuItem
|
||
|
{
|
||
|
public function new()
|
||
|
{
|
||
|
super();
|
||
|
|
||
|
this.onMouseOver = handleMouseOver;
|
||
|
this.onMouseOut = handleMouseOut;
|
||
|
}
|
||
|
|
||
|
private function handleMouseOver(event:MouseEvent)
|
||
|
{
|
||
|
Cursor.cursorMode = Pointer;
|
||
|
}
|
||
|
|
||
|
private function handleMouseOut(event:MouseEvent)
|
||
|
{
|
||
|
Cursor.cursorMode = Default;
|
||
|
}
|
||
|
}
|