// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Mechanics.Weapons { /// /// Enumerates the supported firearm shot cycles. /// public enum UxrShotCycle { /// /// Weapon requires a manual reload to fire the next round. /// ManualReload, /// /// Weapon fires a single round each time the trigger is pressed. The next round requires to release the trigger and /// press it again. /// SemiAutomatic, /// /// Weapon keeps firing one round after another while the trigger is being pressed. /// FullyAutomatic } }