Infinite Runner Engine v1.9
Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Properties | List of all members
MoreMountains.Feedbacks.MMShaker Class Reference
Inheritance diagram for MoreMountains.Feedbacks.MMShaker:
MoreMountains.Feedbacks.MMAudioFilterDistortionShaker MoreMountains.Feedbacks.MMAudioFilterEchoShaker MoreMountains.Feedbacks.MMAudioFilterHighPassShaker MoreMountains.Feedbacks.MMAudioFilterLowPassShaker MoreMountains.Feedbacks.MMAudioFilterReverbShaker MoreMountains.Feedbacks.MMAudioSourcePitchShaker MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker MoreMountains.Feedbacks.MMAudioSourceVolumeShaker MoreMountains.Feedbacks.MMCameraClippingPlanesShaker MoreMountains.Feedbacks.MMCameraFieldOfViewShaker MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker MoreMountains.Feedbacks.MMFeedbacksShaker MoreMountains.Feedbacks.MMLightShaker MoreMountains.Feedbacks.MMSpriteRendererShaker MoreMountains.FeedbacksForThirdParty.MMBloomShaker MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP MoreMountains.FeedbacksForThirdParty.MMVignetteShaker MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP

Public Member Functions

virtual float GetTime ()
 
virtual float GetDeltaTime ()
 
virtual void StartShaking ()
 Starts shaking the values More...
 
virtual void Play ()
 Starts this shaker More...
 
virtual void Stop ()
 Stops this shaker More...
 
virtual void StartListening ()
 Starts listening for events More...
 
virtual void StopListening ()
 Stops listening for events More...
 

Public Attributes

int Channel = 0
 the channel to listen to - has to match the one on the feedback More...
 
float ShakeDuration = 0.2f
 the duration of the shake, in seconds More...
 
bool PlayOnAwake = false
 if this is true this shaker will play on awake More...
 
bool Interruptible = true
 if this is true, a new shake can happen while shaking More...
 
bool AlwaysResetTargetValuesAfterShake = false
 if this is true, this shaker will always reset target values, regardless of how it was called More...
 
float CooldownBetweenShakes = 0f
 a cooldown, in seconds, after a shake, during which no other shake can start More...
 
bool Shaking = false
 whether or not this shaker is shaking right now More...
 
bool ForwardDirection = true
 
TimescaleModes TimescaleMode = TimescaleModes.Scaled
 

Protected Member Functions

virtual void Awake ()
 On Awake we grab our volume and profile More...
 
virtual void Initialization ()
 Override this method to initialize your shaker More...
 
virtual void ShakeStarts ()
 Describes what happens when a shake starts More...
 
virtual void GrabInitialValues ()
 A method designed to collect initial values More...
 
virtual void Update ()
 On Update, we shake our values if needed, or reset if our shake has ended More...
 
virtual void Shake ()
 Override this method to implement shake over time More...
 
virtual float ShakeFloat (AnimationCurve curve, float remapMin, float remapMax, bool relativeIntensity, float initialValue)
 A method used to "shake" a flot over time along a curve More...
 
virtual void ResetTargetValues ()
 Resets the values on the target More...
 
virtual void ResetShakerValues ()
 Resets the values on the shaker More...
 
virtual void ShakeComplete ()
 Describes what happens when the shake is complete More...
 
virtual void OnEnable ()
 On enable we start shaking if needed More...
 
virtual void OnDestroy ()
 On destroy we stop listening for events More...
 
virtual void OnDisable ()
 On disable we complete our shake if it was in progress More...
 
virtual bool CheckEventAllowed (int channel, bool useRange=false, float range=0f, Vector3 eventOriginPosition=default(Vector3))
 Returns true if this shaker should listen to events, false otherwise More...
 

Protected Attributes

float _shakeStartedTimestamp = -Single.MaxValue
 
float _remappedTimeSinceStart
 
bool _resetShakerValuesAfterShake
 
bool _resetTargetValuesAfterShake
 
float _journey
 

Properties

bool ListeningToEvents [get]
 

Member Function Documentation

◆ Awake()

virtual void MoreMountains.Feedbacks.MMShaker.Awake ( )
protectedvirtual

On Awake we grab our volume and profile

◆ CheckEventAllowed()

virtual bool MoreMountains.Feedbacks.MMShaker.CheckEventAllowed ( int  channel,
bool  useRange = false,
float  range = 0f,
Vector3  eventOriginPosition = default(Vector3) 
)
protectedvirtual

Returns true if this shaker should listen to events, false otherwise

Parameters
channel
Returns

◆ GetDeltaTime()

virtual float MoreMountains.Feedbacks.MMShaker.GetDeltaTime ( )
virtual

◆ GetTime()

virtual float MoreMountains.Feedbacks.MMShaker.GetTime ( )
virtual

◆ GrabInitialValues()

virtual void MoreMountains.Feedbacks.MMShaker.GrabInitialValues ( )
protectedvirtual

A method designed to collect initial values

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ Initialization()

virtual void MoreMountains.Feedbacks.MMShaker.Initialization ( )
protectedvirtual

Override this method to initialize your shaker

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMFeedbacksShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ OnDestroy()

virtual void MoreMountains.Feedbacks.MMShaker.OnDestroy ( )
protectedvirtual

On destroy we stop listening for events

◆ OnDisable()

virtual void MoreMountains.Feedbacks.MMShaker.OnDisable ( )
protectedvirtual

On disable we complete our shake if it was in progress

◆ OnEnable()

virtual void MoreMountains.Feedbacks.MMShaker.OnEnable ( )
protectedvirtual

On enable we start shaking if needed

◆ Play()

virtual void MoreMountains.Feedbacks.MMShaker.Play ( )
virtual

Starts this shaker

◆ ResetShakerValues()

virtual void MoreMountains.Feedbacks.MMShaker.ResetShakerValues ( )
protectedvirtual

Resets the values on the shaker

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ ResetTargetValues()

virtual void MoreMountains.Feedbacks.MMShaker.ResetTargetValues ( )
protectedvirtual

Resets the values on the target

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ Shake()

virtual void MoreMountains.Feedbacks.MMShaker.Shake ( )
protectedvirtual

Override this method to implement shake over time

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ ShakeComplete()

virtual void MoreMountains.Feedbacks.MMShaker.ShakeComplete ( )
protectedvirtual

Describes what happens when the shake is complete

◆ ShakeFloat()

virtual float MoreMountains.Feedbacks.MMShaker.ShakeFloat ( AnimationCurve  curve,
float  remapMin,
float  remapMax,
bool  relativeIntensity,
float  initialValue 
)
protectedvirtual

A method used to "shake" a flot over time along a curve

Parameters
curve
remapMin
remapMax
relativeIntensity
initialValue
Returns

◆ ShakeStarts()

virtual void MoreMountains.Feedbacks.MMShaker.ShakeStarts ( )
protectedvirtual

Describes what happens when a shake starts

Reimplemented in MoreMountains.Feedbacks.MMFeedbacksShaker.

◆ StartListening()

virtual void MoreMountains.Feedbacks.MMShaker.StartListening ( )
virtual

Starts listening for events

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMFeedbacksShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ StartShaking()

virtual void MoreMountains.Feedbacks.MMShaker.StartShaking ( )
virtual

Starts shaking the values

◆ Stop()

virtual void MoreMountains.Feedbacks.MMShaker.Stop ( )
virtual

Stops this shaker

◆ StopListening()

virtual void MoreMountains.Feedbacks.MMShaker.StopListening ( )
virtual

Stops listening for events

Reimplemented in MoreMountains.Feedbacks.MMAudioFilterDistortionShaker, MoreMountains.Feedbacks.MMAudioFilterEchoShaker, MoreMountains.Feedbacks.MMAudioFilterHighPassShaker, MoreMountains.Feedbacks.MMAudioFilterLowPassShaker, MoreMountains.Feedbacks.MMAudioFilterReverbShaker, MoreMountains.Feedbacks.MMAudioSourcePitchShaker, MoreMountains.Feedbacks.MMAudioSourceStereoPanShaker, MoreMountains.Feedbacks.MMAudioSourceVolumeShaker, MoreMountains.Feedbacks.MMCameraClippingPlanesShaker, MoreMountains.Feedbacks.MMCameraFieldOfViewShaker, MoreMountains.Feedbacks.MMCameraOrthographicSizeShaker, MoreMountains.Feedbacks.MMFeedbacksShaker, MoreMountains.Feedbacks.MMLightShaker, MoreMountains.Feedbacks.MMSpriteRendererShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineClippingPlanesShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineFieldOfViewShaker, MoreMountains.FeedbacksForThirdParty.MMCinemachineOrthographicSizeShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMExposureShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_HDRP, MoreMountains.FeedbacksForThirdParty.MMBloomShaker, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker, MoreMountains.FeedbacksForThirdParty.MMColorGradingShaker, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker, MoreMountains.FeedbacksForThirdParty.MMBloomShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChannelMixerShaker_URP, MoreMountains.FeedbacksForThirdParty.MMChromaticAberrationShaker_URP, MoreMountains.FeedbacksForThirdParty.MMColorAdjustmentsShaker_URP, MoreMountains.FeedbacksForThirdParty.MMDepthOfFieldShaker_URP, MoreMountains.FeedbacksForThirdParty.MMFilmGrainShaker_URP, MoreMountains.FeedbacksForThirdParty.MMLensDistortionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMMotionBlurShaker_URP, MoreMountains.FeedbacksForThirdParty.MMPaniniProjectionShaker_URP, MoreMountains.FeedbacksForThirdParty.MMVignetteShaker_URP, and MoreMountains.FeedbacksForThirdParty.MMWhiteBalanceShaker_URP.

◆ Update()

virtual void MoreMountains.Feedbacks.MMShaker.Update ( )
protectedvirtual

On Update, we shake our values if needed, or reset if our shake has ended

Member Data Documentation

◆ _journey

float MoreMountains.Feedbacks.MMShaker._journey
protected

◆ _remappedTimeSinceStart

float MoreMountains.Feedbacks.MMShaker._remappedTimeSinceStart
protected

◆ _resetShakerValuesAfterShake

bool MoreMountains.Feedbacks.MMShaker._resetShakerValuesAfterShake
protected

◆ _resetTargetValuesAfterShake

bool MoreMountains.Feedbacks.MMShaker._resetTargetValuesAfterShake
protected

◆ _shakeStartedTimestamp

float MoreMountains.Feedbacks.MMShaker._shakeStartedTimestamp = -Single.MaxValue
protected

◆ AlwaysResetTargetValuesAfterShake

bool MoreMountains.Feedbacks.MMShaker.AlwaysResetTargetValuesAfterShake = false

if this is true, this shaker will always reset target values, regardless of how it was called

◆ Channel

int MoreMountains.Feedbacks.MMShaker.Channel = 0

the channel to listen to - has to match the one on the feedback

◆ CooldownBetweenShakes

float MoreMountains.Feedbacks.MMShaker.CooldownBetweenShakes = 0f

a cooldown, in seconds, after a shake, during which no other shake can start

◆ ForwardDirection

bool MoreMountains.Feedbacks.MMShaker.ForwardDirection = true

◆ Interruptible

bool MoreMountains.Feedbacks.MMShaker.Interruptible = true

if this is true, a new shake can happen while shaking

◆ PlayOnAwake

bool MoreMountains.Feedbacks.MMShaker.PlayOnAwake = false

if this is true this shaker will play on awake

◆ ShakeDuration

float MoreMountains.Feedbacks.MMShaker.ShakeDuration = 0.2f

the duration of the shake, in seconds

◆ Shaking

bool MoreMountains.Feedbacks.MMShaker.Shaking = false

whether or not this shaker is shaking right now

◆ TimescaleMode

TimescaleModes MoreMountains.Feedbacks.MMShaker.TimescaleMode = TimescaleModes.Scaled

Property Documentation

◆ ListeningToEvents

bool MoreMountains.Feedbacks.MMShaker.ListeningToEvents
get

The documentation for this class was generated from the following file: