iRacingReplayOverlay.Phases.Direction.RuleBattle.RuleBattle C# (CSharp) Method

RuleBattle() public method

public RuleBattle ( CameraControl cameraControl, EditMarker editMarker, System.TimeSpan cameraStickyPeriod, System.TimeSpan battleStickyPeriod, System.TimeSpan battleGap, double battleFactor ) : iRacingReplayOverlay.Phases.Capturing
cameraControl CameraControl
editMarker iRacingReplayOverlay.Phases.Capturing.EditMarker
cameraStickyPeriod System.TimeSpan
battleStickyPeriod System.TimeSpan
battleGap System.TimeSpan
battleFactor double
return iRacingReplayOverlay.Phases.Capturing
        public RuleBattle(CameraControl cameraControl, EditMarker editMarker, TimeSpan cameraStickyPeriod, TimeSpan battleStickyPeriod, TimeSpan battleGap, double battleFactor)
        {
            this.cameraControl = cameraControl;
            this.editMarker = editMarker;
            this.battleStickyPeriod = battleStickyPeriod;
            this.battleCameraChangePeriod = cameraStickyPeriod;
            this.battleGap = battleGap;
            this.battleFactor = battleFactor;
        }