How to catch right mouse button events with my SKScene

453 Views Asked by At

I've overriden the rightMouseDown(with event:) function, but nothing, even a simple print(), will happen? Is there anything more I need to do? The mouseDown() func work properly though...

Any clue?

1

There are 1 best solutions below

0
On

SOLVED!

Since the right click is reserved by default for the popup menu, you need to add an extension that will override rightMouseDown() and redirect the event to your scene's event.

Here is the solution I found on another thread and that works (Swift 3)

extension SKView {

open override func rightMouseDown(theEvent: NSEvent) {
    self.scene?.rightMouseDown(theEvent)
}