Zarx1554
Smash Journeyman
I'm not completely sure this thread goes here, but it seems to best fit here. I'm trying to use Glovepie so I can use my gamecube controller, through the mayflash adapter, to play melee on dolphin. The code works perfectly except for one problem. When I use the analog stick, it only works for one frame. The code functions as a keyboard, and I want it to stay that way. Can anyone help me with this.
Here's my code. I'm not extremely experienced.
Key.Q = Pressed(Classic1.LeftStickY + 1)
Key.W = Pressed(Classic1.LeftStickY - 1)
Key.E = Pressed(Classic1.LeftStickX - 1)
Key.R = Pressed(Classic1.LeftStickX + 1)
Key.T = Pressed(Classic1.RightStickY + 1)
Key.Y = Pressed(Classic1.RightStickY - 1)
Key.U = Pressed(Classic1.RightStickX + 1)
Key.I = Pressed(Classic1.RightStickX + 1)
Key.O = Pressed(Classic1.a)
Key.P = Pressed(Classic1.b)
Key.A = Pressed(Classic1.x)
Key.S = Pressed(Classic1.y)
Key.D = Pressed(Classic1.ZR)
Key.F = Pressed(Classic1.L)
Key.G = Pressed(Classic1.R)
Key.H = Pressed(Classic1.Start)
Key.X = Pressed(Classic1.DPadY - 1)
Key.Z = Pressed(Classic1.DPadY + 1)
Key.C = Pressed(Classic1.DPadX - 1)
Key.V = Pressed(Classic1.DPadX + 1)
Here's my code. I'm not extremely experienced.
Key.Q = Pressed(Classic1.LeftStickY + 1)
Key.W = Pressed(Classic1.LeftStickY - 1)
Key.E = Pressed(Classic1.LeftStickX - 1)
Key.R = Pressed(Classic1.LeftStickX + 1)
Key.T = Pressed(Classic1.RightStickY + 1)
Key.Y = Pressed(Classic1.RightStickY - 1)
Key.U = Pressed(Classic1.RightStickX + 1)
Key.I = Pressed(Classic1.RightStickX + 1)
Key.O = Pressed(Classic1.a)
Key.P = Pressed(Classic1.b)
Key.A = Pressed(Classic1.x)
Key.S = Pressed(Classic1.y)
Key.D = Pressed(Classic1.ZR)
Key.F = Pressed(Classic1.L)
Key.G = Pressed(Classic1.R)
Key.H = Pressed(Classic1.Start)
Key.X = Pressed(Classic1.DPadY - 1)
Key.Z = Pressed(Classic1.DPadY + 1)
Key.C = Pressed(Classic1.DPadX - 1)
Key.V = Pressed(Classic1.DPadX + 1)