1
0
mirror of synced 2024-11-24 06:50:11 +01:00

update changelog

This commit is contained in:
Aaron M 2019-12-22 15:58:39 +13:00
parent 3e3d52ef1f
commit 851f20407a
2 changed files with 18 additions and 5 deletions

View File

@ -182,19 +182,19 @@ void AliensExtermination::FFBLoop(EffectConstants* constants, Helpers* helpers,
{
double percentForce = ((Gun1pStrength) / 100.0);
double percentLength = configFeedbackLength;
triggers->Rumble(1.0, 1.0, percentLength);
triggers->Rumble(percentForce, percentForce, percentLength);
}
else if (HowtoRumbleGunEffect == 1)
{
double percentForce = ((Gun1pStrength) / 100.0);
double percentLength = configFeedbackLength;
triggers->Rumble(0, 1.0, percentLength);
triggers->Rumble(0, percentForce, percentLength);
}
else if (HowtoRumbleGunEffect == 2)
{
double percentForce = ((Gun1pStrength) / 100.0);
double percentLength = configFeedbackLength;
triggers->Rumble(1.0, 0, percentLength);
triggers->Rumble(percentForce, 0, percentLength);
}
}
}

View File

@ -1,6 +1,6 @@
***FFB Arcade Plugin***
Version 1.4a
Version 1.4b
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.
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
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***