-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overlapping voicelines on squadmate death #1398
Comments
Hmm....this seems to be handled by OnDeath in XGUnit -
|
OK So I did a bit of logging on this and there are actually a few different things going on. A lot of the speech lines are fired from X2Action_ApplyWeaponDamageToUnit (I logged mainly ShowDamageMessage and ShowCritMessage Basically, from logging, the following things happen:
So firstly, there are no real guardrails in place inside ShowDamageMessage / ShowCritMessage in X2Action_ApplyWeaponDamageToUnit to prevent the Taking Damage / Critically Wounded voicelines from playing if the damage killed the unit - personally I think adding that check alone would improve the experience quite a bit (I'd say the unit being unable to speak after just being blasted to pieces by advent is a reasonable adjustment to make). Even if we did that, if multiple units were killed, you'd still get multiple SquadMemberDead speechlines being played as well so some measure of preventing those for multi-unit-kills would probably be welcome (A single squadmember lamenting their fallen comrades would be ample from my perspective but that's open to a bit of interpretation). Perhaps we could set a unitvalue that prevents the squadmemberdead line from playing more than once per turn or something like that. I don't think removing any deathscream lines is a good idea, generally. Lastly, every time a unit is hit, it plays the 'taking damage' voiceline for each unit - this in its-self makes getting hit by grenades or multi-target abilities quite screamy most of the time - I'm divided over whether we ought to change this - it's certainly loud and a bit annoying but it might sound a little 'flat' if a grenade gets chucked into the middle of a cluster of units and one dude shouts "ow my eyes" or something. So yeah, there are 3 areas we can target for a fix - open to discussion on which (if any) we'd like to address. |
When a squadmate dies or is knocked into a bleedout, their squadmates will play overlapping voicelines about that, which can get pretty loud and cacophonic.
The text was updated successfully, but these errors were encountered: