Weapon Utilities
Weapon Utilities are used to make sure needed data about the weapons are synced correctly and limits event call for Player/UI to only the Local Client.
Common Events are Linked by default and requires no setup other then moving or setting up any UI effecting call in the utility rather then the weapon script. OnHit OnHitPosition OnHitInteractable OnEquiped OnUnequiped OnProfileChanged OnCharged OnMaxCharged OnAiming
Weapon Utilities also take advantage of EventSync in order to pass the data with out make every weapon a Network Object.
MeleeUtility
Does not add anything beyond Weapon Utility as a whole other then to add an additional event listener for OnCauseDamage
RangedUtility
Add on 4 more Player Events and EventSync OnLoadProjectile OnFireProjectile OnReloadStart OnReloaded
This script controls the UI Chamber count, Projectile being fire, and Ammo Count.
Weapon Ammo Type: was added to allow the weapon to request Ammo from NetWeaponManager this call will return a prefab and count of how much ammo there is. but if this field is left empty it will not effect the config of the weapon. Ammo Type is planned to support StatID in the future in allow ammo to come from a Stat rather then a Inventory.
Ammo Multiplier: allows a weapon to consume more Ammo per count, main use is for StatID ammo and Example: a Fireball could cost 10 Mana and you would set multipler to 10.
In Chamber UI: Give the weapon the correct UI to change and update when ammo count changes.
Dump Chamber: this bool will delete/discard the remaining ammo in the chamber on reload if wished.
SyncedProjectile
Synced Projectile is and extension to MProjectile ,this adds a SEED (INT) and Catchup Logic.
SEED is currently not used, but could be used for thing like Ricochet using PRNG to make sure all Clients calculate the same output.
Catchup Logic take over the Flying Projectile function to use the know delay between client and server to calculate the steps behind the projectile is currently and speeds up the steps until that delay is gone. This allows the Object to no be a Network Object and fly smoother across all clients.
UnarmedUtility
Unarmed Utility is used on only AttackTrigger on the Animals, by default is links what is required and has only the following Player Events OnHit OnHitPosition OnHitInteractable OnProfileChanged OnAttackTrigger
Due to how Unarmed attacks work this script is reasonable for making sure it attack trigger is active on the server for the attack.
Last updated