I'm not a computer genius but I know that mac computers are highly capable and encouraged to use gestures. I think that we should integrate the gesture systems to Graal. Wouldn't it be so much easier on zodiac to open your inventory by sliding 3 fingers to the side? Or on Era, simply swiping you hand across the mouse pad to easily switch guns? A function for it could be.
PHP Code:
//Movement 1, 2, and 3 are the movement of each finger on the trackpad
//each defined by the number of fingers and which way you slide them
//The top left of the trackpad gets scanned first for movement1
function onGesture(fingers, movement1, movement2, movement3) {
if (fingers == 3 && movement1 == "Up-Left" && movement2 == "Down-Left" && movement3 == "Down-Right") {
player.chat = "Gesture Correct";
}
It is already in minecraft too. As I already said, I'm not sure it can be integrated into Graal but its worth a shot.