Description
The TriggerDeploy
method is part of the CitizenAnimationHelper
class within the Sandbox.Citizen
namespace. This method is used to initiate a weapon deploy animation for a citizen character. It is a public, non-static method that does not take any parameters and does not return a value.
Usage
To use the TriggerDeploy
method, you need to have an instance of the CitizenAnimationHelper
class. Once you have the instance, you can call the method directly to trigger the deploy animation for the associated citizen character.
Example
// Example of using TriggerDeploy method
// Assume 'animationHelper' is an instance of CitizenAnimationHelper
CitizenAnimationHelper animationHelper = new CitizenAnimationHelper();
// Trigger the weapon deploy animation
animationHelper.TriggerDeploy();