Shooter Test COde...

This commit is contained in:
Jason Cox 2016-02-08 19:26:44 -05:00
parent 51741fe33b
commit bc81c928a8

View File

@ -11,8 +11,8 @@
#ifndef BUTTON_LAYOUT #ifndef BUTTON_LAYOUT
#define BUTTON_LAYOUT #define BUTTON_LAYOUT
#define TRIGGER 10 // I have no idea what the right button number is... #define TRIGGER 0
#define THUMB 11 #define THUMB 1
#endif #endif
@ -77,15 +77,18 @@ public:
if(rstick.GetRawButton(TRIGGER)) if(rstick.GetRawButton(TRIGGER))
{ {
// SHOOT THE BALL // SHOOT THE BALL
ramp.Set(-0.5);
} }
if(rstick.GetRawButton(THUMB)) if(rstick.GetRawButton(THUMB))
{ {
// lower the ramp // lower the ramp
ramp.Set(0.5);
} }
else else
{ {
// raise the ramp to HALF (so it isn't down all the time!) // raise the ramp to HALF (so it isn't down all the time!)
ramp.Set(0);
} }
// How to pickup? // How to pickup?