update changelog
This commit is contained in:
parent
3e3d52ef1f
commit
851f20407a
@ -182,19 +182,19 @@ void AliensExtermination::FFBLoop(EffectConstants* constants, Helpers* helpers,
|
|||||||
{
|
{
|
||||||
double percentForce = ((Gun1pStrength) / 100.0);
|
double percentForce = ((Gun1pStrength) / 100.0);
|
||||||
double percentLength = configFeedbackLength;
|
double percentLength = configFeedbackLength;
|
||||||
triggers->Rumble(1.0, 1.0, percentLength);
|
triggers->Rumble(percentForce, percentForce, percentLength);
|
||||||
}
|
}
|
||||||
else if (HowtoRumbleGunEffect == 1)
|
else if (HowtoRumbleGunEffect == 1)
|
||||||
{
|
{
|
||||||
double percentForce = ((Gun1pStrength) / 100.0);
|
double percentForce = ((Gun1pStrength) / 100.0);
|
||||||
double percentLength = configFeedbackLength;
|
double percentLength = configFeedbackLength;
|
||||||
triggers->Rumble(0, 1.0, percentLength);
|
triggers->Rumble(0, percentForce, percentLength);
|
||||||
}
|
}
|
||||||
else if (HowtoRumbleGunEffect == 2)
|
else if (HowtoRumbleGunEffect == 2)
|
||||||
{
|
{
|
||||||
double percentForce = ((Gun1pStrength) / 100.0);
|
double percentForce = ((Gun1pStrength) / 100.0);
|
||||||
double percentLength = configFeedbackLength;
|
double percentLength = configFeedbackLength;
|
||||||
triggers->Rumble(1.0, 0, percentLength);
|
triggers->Rumble(percentForce, 0, percentLength);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
***FFB Arcade Plugin***
|
***FFB Arcade Plugin***
|
||||||
|
|
||||||
Version 1.4a
|
Version 1.4b
|
||||||
|
|
||||||
Brought to you by Boomslangnz, Ducon2016, Spazzy & pinkimo.
|
Brought to you by Boomslangnz, Ducon2016, Spazzy & pinkimo.
|
||||||
|
|
||||||
@ -8,7 +8,20 @@ This is a plugin to provide Force Feedback and Rumble (and in certain cases adde
|
|||||||
to add FFB to Daytona Championship USA and it grew from there to support several more games and rumble was added.
|
to add FFB to Daytona Championship USA and it grew from there to support several more games and rumble was added.
|
||||||
While best efforts were made to try to resemble the real arcade force feedback, It will never be 100% accurate &
|
While best efforts were made to try to resemble the real arcade force feedback, It will never be 100% accurate &
|
||||||
in some cases eg Mario Kart GP DX, Pokken Tournament and Battle Gear 4,effects were created entirely from scratch
|
in some cases eg Mario Kart GP DX, Pokken Tournament and Battle Gear 4,effects were created entirely from scratch
|
||||||
so are not using real force feedback values. Most games use correct ffb values however :)
|
so are not using real force feedback values. Most games use REAL ffb values however :)
|
||||||
|
|
||||||
|
***1.4b Changes***
|
||||||
|
|
||||||
|
- Added rumble support for Golden Gun (up to 2 players)
|
||||||
|
|
||||||
|
- Added ability to have individual game settings for MAME & Supermodel Output Games
|
||||||
|
|
||||||
|
- Certain MAME Output will now use all available values as some were skipped previously
|
||||||
|
|
||||||
|
- Fixed issue on Aliens Extermination where it only Gun Shoot was always at full power
|
||||||
|
|
||||||
|
- MAME Lightgun games now only work on rumble (removed old sine effect on these, seemed unnecessary to include)
|
||||||
|
|
||||||
|
|
||||||
***1.4a Changes***
|
***1.4a Changes***
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user