OpenXcom Forum
Contributions => Programming => Topic started by: CanadianBeaver on August 19, 2016, 11:29:53 pm
-
If a weapon has option arcingShot: true, then bulletSprite does not work for specified clips in the compatibleAmmo list. It means, that only specified bulletSprite in the weapon definition will be drawn instead of the specified bulletSprite in the each clip.
Example:
- type: STR_SUPER_WEAPON
compatibleAmmo:
- STR_SW1_AMMO
- STR_SW2_AMMO
arcingShot: true
- type: STR_SW1_AMMO
bulletSprite: 15 # it does not work
- type: STR_SW2_AMMO
bulletSprite: 16 # it does not work
Is it OK or is it bug? I think this is a bug, because other weapons (arcingShot: false) do not have this problem.
-
I think this is because in normal xcom only Celatid have arcing attack and he don't have ammo.
-
It looks like true.
But some mods have different animations for clips of arcing weapons. For example the Grenade Launcher (https://www.openxcom.com/mod/grenade-launcher) from Ryskeliini implements different animation for grenades. Unfortunately, how I see during the game, only animation from the weapon definition works and does not work from the clip definition.
-
i'm going to assume you're using 1.0, where these features didn't exist, as opposed to the nightly, where they do.
-
i'm going to assume you're using 1.0, where these features didn't exist, as opposed to the nightly, where they do.
Yes, I am using 1.0. Thank you for answer.