make ramp more sensitive.
This commit is contained in:
parent
98fa52cf26
commit
d0ebd066cb
@ -64,24 +64,18 @@ public:
|
|||||||
|
|
||||||
void LowerRamp()
|
void LowerRamp()
|
||||||
{
|
{
|
||||||
ramp->Set(-1);
|
ramp->Set(-.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RaiseRamp()
|
void RaiseRamp()
|
||||||
{
|
{
|
||||||
ramp->Set(1);
|
ramp->Set(0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
void StopRamp()
|
void StopRamp()
|
||||||
{
|
{
|
||||||
ramp->Set(0);
|
ramp->Set(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BoostRamp()
|
|
||||||
{
|
|
||||||
ramp->Set(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Shoot()
|
void Shoot()
|
||||||
{
|
{
|
||||||
// TODO: Shooter Logic should go as follows:
|
// TODO: Shooter Logic should go as follows:
|
||||||
|
Reference in New Issue
Block a user