我正在使用 Gosu gem 进行一些图形编程。问题是,当我创建一个窗口时,我的鼠标指针是隐藏的。我可以在某个时刻猜到鼠标在哪里,我可以直观地点击,但我的用户可能不会。
如何显示指针?
如果你想使用系统光标,你可以这样做
class Window < Gosu::Window
def initialize
super 320, 240, false
end
def needs_cursor?
true
end
end
查看 libgosu 的文档
我正在使用这样的东西:
class Game < Gosu::Window
def initialize
super 800, 600, false
@cursor = Gosu::Image.new(self, 'media/cursor.png')
end
def draw
@cursor.draw self.mouse_x, self.mouse_y, 0
end
end
Game.new.show