Scrolling Game Development Kit Forum
SGDK Version 2 => Help, Errors, FAQ => Topic started by: NightFang on 2007-06-01, 04:59:39 PM
-
yeah how do I map a key which i want to be left click with the mouse and I also want to right click but, when I checked the mapkeytoinputs section well, I couldnt find the left click or right click can someone help me out or is the left and right click not in the source code?
-
Boy, oh, boy. I told BlueMonk to do that like a <i>week</i> ago! ;-) If it's not there yet, it will be. In any case, there should be some ability to detect mouse clicks some how. I made a game that did it just the other day (well, a pseudo-game). Although, I don't remember if there was a built-in function for mouse-clicks or not. My instinct tells me there wasn't, and I had to go make one myself. Although that may have been for hiding the cursor. I'm not sure. Here's something you can do though:
DO rule type
SetInput rule
Arg 1: (Whichever button you want to use)
Arg 2: (System.Windows.Input.Mouse.LeftButton==System.Windows.Input.MouseButtonState.Pressed)
There's a better way to do it, but I can't find it right now, and it will soon be if not already is supported by the engine itself with a built-in operation.
-
I've found the built-in function to determine if a button is pressed: IsMouseButtonPressed
So just use
Arg 2: IsMouseButtonPressed(System.Windows.Forms.MouseButtons.Left)
However, I believe that eventually something closer to a mouse-pointer-as-a-player will be implemented, where one call will set the sprite position to the mouse position, and map all the mouse button inputs to the player inputs. Something like that.
-
ok thanks!
-
Look for MapMouseToSprite... I think that may already be done.