![]() |
Feel 5.9.1
The best way to improve your game's feel and make it extra juicy
|
Public Member Functions | |
| virtual string | GetLabel () |
| you can override this when creating a custom feedback to have it behave differently and display a different label | |
| virtual float | ComputeIntensity (float intensity, Vector3 position) |
| Computes the new intensity, taking into account constant intensity and potential randomness. | |
| virtual void | CacheRequiresSetup () |
| virtual bool | EvaluateRequiresSetup () |
| Override this method to determine if a feedback requires setup. | |
| virtual void | SetFeedbackDuration (float newDuration) |
| Use this method to change the duration of this feedback. | |
| virtual void | PreInitialization (MMF_Player owner, int index) |
| Runs at Awake, lets you preinitialize your custom feedback before Initialization. | |
| virtual void | Initialization (MMF_Player owner, int index) |
| Typically runs on Start, Initializes the feedback and its timing related variables. | |
| virtual void | SetIndexInFeedbacksList (int index) |
| Lets you specify at what index this feedback is in the list - use carefully (or don't use at all) | |
| virtual void | AutomaticShakerSetup () |
| Call this method (either directly or via the inspector button) to try and automatically setup this feedback's corresponding shaker in the scene. | |
| virtual void | ForceAutomateTargetAcquisition () |
| Lets you force target acquisition, outside of initialization where it usually occurs. | |
| virtual void | Play (Vector3 position, float feedbacksIntensity=1.0f) |
| Plays the feedback. | |
| virtual void | SetSequence (MMSequence newSequence) |
| Use this method to change this feedback's sequence at runtime. | |
| virtual void | Stop (Vector3 position, float feedbacksIntensity=1.0f) |
| Stops all feedbacks from playing. Will stop repeating feedbacks, and call custom stop implementations. | |
| virtual void | SkipToTheEnd (Vector3 position, float feedbacksIntensity=1.0f) |
| Called when skipping to the end of MMF_Player, calls custom Skip on all feedbacks. | |
| virtual void | ForceInitialValue (Vector3 position, float feedbacksIntensity=1.0f) |
| Forces the feedback to set its initial value (behavior will change from feedback to feedback, but for example, a Position feedback that moves a Transform from point A to B would automatically move the Transform to point A when ForceInitialState is called. | |
| virtual void | RestoreInitialValues () |
| Called when restoring the initial state of a player, calls custom Restore on all feedbacks. | |
| virtual void | ResetFeedback () |
| Calls this feedback's custom reset. | |
| virtual void | ResetCooldown () |
| Resets the cooldown for this feedback, allowing it to be played again instantly. | |
| virtual void | PlayerComplete () |
| This gets called by the MMF Player when all feedbacks have completed playing. | |
| virtual void | SetDelayBetweenRepeats (float delay) |
| Use this method to specify a new delay between repeats at runtime. | |
| virtual void | SetInitialDelay (float delay) |
| Use this method to specify a new initial delay at runtime. | |
| virtual void | ComputeNewRandomDurationMultiplier () |
| Computes a new random duration multiplier. | |
| virtual void | ResetPlayCount () |
| Resets the play count of this feedback. | |
| virtual void | ComputeTotalDuration () |
| Computes the total duration of this feedback. | |
| virtual void | InitializeCustomAttributes () |
| Use this method to initialize any custom attributes you may have. | |
| virtual void | OnValidate () |
| Triggered when a change happens in the inspector. | |
| virtual void | OnAddFeedback () |
| Triggered when the feedback gets added to the player. | |
| virtual void | OnDestroy () |
| Triggered when that feedback gets destroyed. | |
| virtual void | OnDisable () |
| Triggered when the host MMF Player gets disabled. | |
| virtual void | OnDrawGizmosSelectedHandler () |
| Triggered when the host MMF Player gets selected, can be used to draw gizmos. | |
Public Attributes | |
| bool | Active = true |
| whether or not this feedback is active | |
| int | UniqueID |
| string | Label = "MMFeedback" |
| the name of this feedback to display in the inspector | |
| string | OriginalLabel = "" |
| the original label of this feedback, used to display next to the custom label in case we set one | |
| MMChannelModes | ChannelMode = MMChannelModes.Int |
| int | Channel = 0 |
| the ID of the channel on which this feedback will communicate | |
| MMChannel | MMChannelDefinition = null |
| float | Chance = 100f |
| the chance of this feedback happening (in percent : 100 : happens all the time, 0 : never happens, 50 : happens once every two calls, etc) | |
| MMFeedbackTiming | Timing |
| a number of timing-related values (delay, repeat, etc) | |
| MMFeedbackTargetAcquisition | AutomatedTargetAcquisition |
| a set of settings letting you define automated target acquisition for this feedback, to (for example) automatically grab the target on this game object, or a parent, a child, or on a reference holder | |
| bool | RandomizeOutput = false |
| if this is true, intensity will be multiplied by a random value on play, picked between RandomMultiplier.x and RandomMultiplier.y | |
| Vector2 | RandomMultiplier = new Vector2(0.8f, 1f) |
| a random value (randomized between its x and y) by which to multiply the output of this feedback, if RandomizeOutput is true | |
| bool | RandomizeDuration = false |
| if this is true, this feedback's duration will be multiplied by a random value on play, picked between RandomDurationMultiplier.x and RandomDurationMultiplier.y | |
| Vector2 | RandomDurationMultiplier = new Vector2(0.5f, 2f) |
| a random value (randomized between its x and y) by which to multiply the duration of this feedback, if RandomizeDuration is true | |
| bool | UseRange = false |
| if this is true, only shakers within the specified range will respond to this feedback | |
| float | RangeDistance = 5f |
| when in UseRange mode, only shakers within that distance will respond to this feedback | |
| bool | UseRangeFalloff = false |
| when in UseRange mode, whether or not to modify the shake intensity based on the RangeFallOff curve | |
| AnimationCurve | RangeFalloff = new AnimationCurve(new Keyframe(0f, 1f), new Keyframe(1f, 0f)) |
| the animation curve to use to define falloff (on the x 0 represents the range center, 1 represents the max distance to it) | |
| Vector2 | RemapRangeFalloff = new Vector2(0f, 1f) |
| the values to remap the falloff curve's y axis' 0 and 1 | |
| MMF_Button | AutomaticShakerSetupButton |
| a button used to attempt an auto shaker setup for this feedback, adding whatever shaker it requires to function to the scene | |
| MMF_Player | Owner |
| the Owner of the feedback, as defined when calling the Initialization method | |
| bool | DebugActive = false |
| whether or not this feedback is in debug mode | |
Static Public Attributes | |
| const string | _randomnessGroupName = "Feedback Randomness" |
| const string | _rangeGroupName = "Feedback Range" |
| const string | _automaticSetupGroupName = "Automatic Setup" |
Protected Member Functions | |
| virtual void | AutomateTargetAcquisitionInternal () |
| Performs automated target acquisition, if needed. | |
| virtual void | AutomateTargetAcquisition () |
| A method meant to be implemented per feedback letting you specify what happens (usually setting a target) | |
| virtual GameObject | FindAutomatedTargetGameObject () |
| virtual T | FindAutomatedTarget< T > () |
| virtual IEnumerator | PlayCoroutine (Vector3 position, float feedbacksIntensity=1.0f) |
| An internal coroutine delaying the initial play of the feedback. | |
| virtual void | RegularPlay (Vector3 position, float feedbacksIntensity=1.0f) |
| Triggers delaying coroutines if needed. | |
| virtual void | TriggerCustomPlay (Vector3 position, float intensity) |
| Triggers a custom play. | |
| virtual IEnumerator | InfinitePlay (Vector3 position, float feedbacksIntensity=1.0f) |
| Internal coroutine used for repeated play without end. | |
| virtual IEnumerator | RepeatedPlay (Vector3 position, float feedbacksIntensity=1.0f) |
| Internal coroutine used for repeated play. | |
| virtual IEnumerator | TriggerRepeatedPlay (Vector3 position, float feedbacksIntensity=1.0f) |
| virtual IEnumerator | SequenceCoroutine (Vector3 position, float feedbacksIntensity=1.0f) |
| A coroutine used to play this feedback on a sequence. | |
| virtual IEnumerator | ForceInitialValueDelayedCo (Vector3 position, float feedbacksIntensity=1.0f) |
| A coroutine used to delay the Stop when forcing initial values (used mostly with shaker based feedbacks) | |
| virtual float | ApplyTimeMultiplier (float duration) |
| Applies the host MMFeedbacks' time multiplier to this feedback. | |
| virtual IEnumerator | WaitFor (float delay) |
| Internal method used to wait for a duration, on scaled or unscaled time. | |
| virtual float | ApplyDirection (float normalizedTime) |
| Returns a new value of the normalized time based on the current play direction of this feedback. | |
| virtual void | CustomInitialization (MMF_Player owner) |
| This method describes all custom initialization processes the feedback requires, in addition to the main Initialization method. | |
| void | CustomPlayFeedback (Vector3 position, float feedbacksIntensity=1.0f) |
| This method describes what happens when the feedback gets played. | |
| virtual void | CustomStopFeedback (Vector3 position, float feedbacksIntensity=1.0f) |
| This method describes what happens when the feedback gets stopped. | |
| virtual void | CustomSkipToTheEnd (Vector3 position, float feedbacksIntensity=1.0f) |
| This method describes what happens when the feedback gets skipped to the end. | |
| virtual void | CustomRestoreInitialValues () |
| This method describes what happens when the feedback gets restored. | |
| virtual void | CustomPlayerComplete () |
| This method describes what happens when the player this feedback belongs to completes playing. | |
| virtual void | CustomReset () |
| This method describes what happens when the feedback gets reset. | |
Protected Attributes | |
| float | _lastPlayTimestamp = -float.MaxValue |
| int | _playsLeft |
| bool | _initialized = false |
| Coroutine | _playCoroutine |
| Coroutine | _infinitePlayCoroutine |
| Coroutine | _sequenceCoroutine |
| Coroutine | _repeatedPlayCoroutine |
| bool | _requiresSetup = false |
| string | _requiredTarget = "" |
| float | _randomDurationMultiplier = 1f |
| int | _sequenceTrackID = 0 |
| float | _beatInterval |
| bool | BeatThisFrame = false |
| int | LastBeatIndex = 0 |
| int | CurrentSequenceIndex = 0 |
| float | LastBeatTimestamp = 0f |
| MMChannelData | _channelData |
| float | _totalDuration = 0f |
| int | _indexInOwnerFeedbackList = 0 |
| string | _requiredTargetTextCached = "." |
| string | _requiredTargetTextCachedExtra = "" |
| float | _repeatOffset = 0f |
Properties | |
| virtual Color | DisplayColor [get] |
| use this color to customize the background color of the feedback in the MMF_Player's list | |
| virtual IEnumerator | Pause [get] |
| set this to true if your feedback should pause the execution of the feedback sequence | |
| virtual bool | HoldingPause [get] |
| if this is true, this feedback will wait until all previous feedbacks have run | |
| virtual bool | LooperPause [get] |
| if this is true, this feedback will wait until all previous feedbacks have run, then run all previous feedbacks again | |
| virtual bool | ScriptDrivenPause [get, set] |
| if this is true, this feedback will pause and wait until ResumeFeedbacks() is called on its parent MMF_Player to resume execution | |
| virtual float | ScriptDrivenPauseAutoResume [get, set] |
| if this is a positive value, the feedback will auto resume after that duration if it hasn't been resumed via script already | |
| virtual bool | LooperStart [get] |
| if this is true, this feedback will wait until all previous feedbacks have run, then run all previous feedbacks again | |
| virtual bool | HasChannel [get] |
| if this is true, the Channel property will be displayed, otherwise it'll be hidden | |
| virtual bool | HasAutomaticShakerSetup [get] |
| if this is true, this feedback will display an automatic shaker setup button | |
| virtual bool | HasRandomness [get] |
| if this is true, the Randomness group will be displayed, otherwise it'll be hidden | |
| virtual bool | CanForceInitialValue [get] |
| if this is true, this feedback implements ForceInitialState, otherwise calling that method will have no effect | |
| virtual bool | ForceInitialValueDelayed [get] |
| if this is true, force initial value will happen over two frames | |
| virtual bool | HasAutomatedTargetAcquisition [get] |
| whether or not this feedback can automatically grab the target on this game object, or a parent, a child, or on a reference holder | |
| virtual MMF_ReferenceHolder | ForcedReferenceHolder [get, set] |
| when in forced reference mode, this will contain the forced reference holder that will be used (usually set by itself) | |
| virtual bool | HasRange [get] |
| if this is true, the Range group will be displayed, otherwise it'll be hidden | |
| virtual int | PlaysLeft [get] |
| the total amount of plays this feedback has left | |
| virtual bool | HasCustomInspectors [get] |
| virtual bool | InCooldown [get] |
| returns true if this feedback is in cooldown at this time (and thus can't play), false otherwise | |
| virtual bool | IsPlaying [get, set] |
| if this is true, this feedback is currently playing | |
| virtual float | ComputedRandomMultiplier [get] |
| Returns the random multiplier to apply to this feedback's output. | |
| virtual TimescaleModes | ComputedTimescaleMode [get] |
| Returns the timescale mode to use in logic, taking into account the one set at the feedback level and the player level. | |
| virtual bool | InScaledTimescaleMode [get] |
| returns true if this feedback is in Scaled timescale mode, false otherwise | |
| virtual float | FeedbackTime [get] |
| the time (or unscaled time) based on the selected Timing settings | |
| virtual float | FeedbackDeltaTime [get] |
| the delta time (or unscaled delta time) based on the selected Timing settings | |
| virtual float | TotalDuration [get] |
| The total duration of this feedback : total = initial delay + duration * (number of repeats + delay between repeats) | |
| virtual bool | IsExpanded [get, set] |
| virtual bool | RequiresSetup [get] |
| A flag used to determine if a feedback has all it needs, or if it requires some extra setup. This flag will be used to display a warning icon in the inspector if the feedback is not ready to be played. | |
| virtual string | RequiredTarget [get] |
| virtual bool | DrawGroupInspectors [get] |
| if this is true, group inspectors will be displayed within this feedback | |
| virtual bool | DisplayFullHeaderColor [get] |
| if this is true, the feedback will be displayed in the MMF Player's list with a full color background, as opposed to just a small line on the left | |
| virtual string | RequiresSetupText [get] |
| defines the setup text that will be displayed on the feedback, should setup be required | |
| virtual string | RequiredTargetText [get] |
| the text used to describe the required target | |
| virtual string | RequiredTargetTextExtra [get] |
| the text used to describe the required target, if more info is needed | |
| virtual string | RequiredChannelText [get] |
| virtual float | FeedbackStartedAt [get] |
| virtual float | FeedbackDuration [get, set] |
| virtual bool | FeedbackPlaying [get] |
| whether or not this feedback is playing right now | |
| virtual MMChannelData | ChannelData [get] |
| a ChannelData object, ready to pass to an event | |
| virtual bool | InInitialDelay [get, set] |
| virtual float | FinalNormalizedTime [get] |
| Returns the t value at which to evaluate a curve at the end of this feedback's play time. | |
| virtual bool | NormalPlayDirection [get] |
| Returns true if this feedback should play normally, or false if it should play in rewind. | |
| virtual bool | ShouldPlayInThisSequenceDirection [get] |
| Returns true if this feedback should play in the current parent MMFeedbacks direction, according to its MMFeedbacksDirectionCondition setting. | |
|
protectedvirtual |
Returns a new value of the normalized time based on the current play direction of this feedback.
| normalizedTime |
|
protectedvirtual |
|
protectedvirtual |
A method meant to be implemented per feedback letting you specify what happens (usually setting a target)
Reimplemented in MoreMountains.Feedbacks.MMF_Animation, MoreMountains.Feedbacks.MMF_AnimationCrossfade, MoreMountains.Feedbacks.MMF_AnimatorPlayState, MoreMountains.Feedbacks.MMF_AnimatorSpeed, MoreMountains.Feedbacks.MMF_AudioSource, MoreMountains.Feedbacks.MMF_Blink, MoreMountains.Feedbacks.MMF_CanvasGroup, MoreMountains.Feedbacks.MMF_CanvasGroupBlocksRaycasts, MoreMountains.Feedbacks.MMF_Collider, MoreMountains.Feedbacks.MMF_DestinationTransform, MoreMountains.Feedbacks.MMF_Destroy, MoreMountains.Feedbacks.MMF_Flicker, MoreMountains.Feedbacks.MMF_FloatController, MoreMountains.Feedbacks.MMF_Light, MoreMountains.Feedbacks.MMF_Material, MoreMountains.Feedbacks.MMF_MaterialSetProperty, MoreMountains.Feedbacks.MMF_Particles, MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_PositionShake, MoreMountains.Feedbacks.MMF_PositionSpring, MoreMountains.Feedbacks.MMF_RadioSignal, MoreMountains.Feedbacks.MMF_RectTransformAnchor, MoreMountains.Feedbacks.MMF_RectTransformOffset, MoreMountains.Feedbacks.MMF_RectTransformPivot, MoreMountains.Feedbacks.MMF_RectTransformSizeDelta, MoreMountains.Feedbacks.MMF_Rigidbody, MoreMountains.Feedbacks.MMF_RotatePositionAround, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_RotationShake, MoreMountains.Feedbacks.MMF_RotationSpring, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_ScaleShake, MoreMountains.Feedbacks.MMF_ScaleSpring, MoreMountains.Feedbacks.MMF_SetActive, MoreMountains.Feedbacks.MMF_SetParent, MoreMountains.Feedbacks.MMF_Sprite, MoreMountains.Feedbacks.MMF_SpriteRenderer, MoreMountains.Feedbacks.MMF_SpriteRendererAlpha, MoreMountains.Feedbacks.MMF_SquashAndStretch, MoreMountains.Feedbacks.MMF_SquashAndStretchSpring, MoreMountains.Feedbacks.MMF_TextureOffset, MoreMountains.Feedbacks.MMF_TextureScale, MoreMountains.Feedbacks.MMF_VideoPlayer, MoreMountains.Feedbacks.MMF_Wiggle, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend_URP, and MoreMountains.FeedbacksForThirdParty.MMF_UIToolkit.
|
protectedvirtual |
Performs automated target acquisition, if needed.
|
virtual |
Call this method (either directly or via the inspector button) to try and automatically setup this feedback's corresponding shaker in the scene.
Reimplemented in MoreMountains.Feedbacks.MMF_CameraFieldOfView, MoreMountains.Feedbacks.MMF_CameraOrthographicSize, MoreMountains.Feedbacks.MMF_CameraShake, MoreMountains.Feedbacks.MMF_CameraZoom, MoreMountains.Feedbacks.MMF_FreezeFrame, MoreMountains.Feedbacks.MMF_MMSoundManagerSound, MoreMountains.Feedbacks.MMF_Sound, MoreMountains.Feedbacks.MMF_TimescaleModifier, MoreMountains.FeedbacksForThirdParty.MMF_Bloom, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_URP, MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulse, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_URP, MoreMountains.FeedbacksForThirdParty.MMF_ColorGrading, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_URP, MoreMountains.FeedbacksForThirdParty.MMF_Exposure_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_URP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_URP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_URP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_URP, MoreMountains.FeedbacksForThirdParty.MMF_Vignette, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_URP, MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_HDRP, and MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_URP.
|
virtual |
|
virtual |
Computes the new intensity, taking into account constant intensity and potential randomness.
| intensity |
|
virtual |
Computes a new random duration multiplier.
|
virtual |
Computes the total duration of this feedback.
|
protectedvirtual |
This method describes all custom initialization processes the feedback requires, in addition to the main Initialization method.
| owner |
Reimplemented in MoreMountains.Feedbacks.MMF_Animation, MoreMountains.Feedbacks.MMF_AnimationCrossfade, MoreMountains.Feedbacks.MMF_AnimatorPlayState, MoreMountains.Feedbacks.MMF_AudioSource, MoreMountains.Feedbacks.MMF_Broadcast, MoreMountains.Feedbacks.MMF_Enable, MoreMountains.Feedbacks.MMF_Events, MoreMountains.Feedbacks.MMF_FeedbackBase, MoreMountains.Feedbacks.MMF_Feedbacks, MoreMountains.Feedbacks.MMF_Flicker, MoreMountains.Feedbacks.MMF_FloatController, MoreMountains.Feedbacks.MMF_Fog, MoreMountains.Feedbacks.MMF_InstantiateObject, MoreMountains.Feedbacks.MMF_Light, MoreMountains.Feedbacks.MMF_LineRenderer, MoreMountains.Feedbacks.MMF_LookAt, MoreMountains.Feedbacks.MMF_Looper, MoreMountains.Feedbacks.MMF_Material, MoreMountains.Feedbacks.MMF_MaterialSetProperty, MoreMountains.Feedbacks.MMF_MMSoundManagerSound, MoreMountains.Feedbacks.MMF_Particles, MoreMountains.Feedbacks.MMF_ParticlesInstantiation, MoreMountains.Feedbacks.MMF_Pause, MoreMountains.Feedbacks.MMF_PlayerControl, MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_PositionSpring, MoreMountains.Feedbacks.MMF_Property, MoreMountains.Feedbacks.MMF_RandomEvents, MoreMountains.Feedbacks.MMF_ReferenceHolder, MoreMountains.Feedbacks.MMF_RotatePositionAround, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_RotationSpring, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_ScaleSpring, MoreMountains.Feedbacks.MMF_SetActive, MoreMountains.Feedbacks.MMF_Sound, MoreMountains.Feedbacks.MMF_Sprite, MoreMountains.Feedbacks.MMF_SpriteRenderer, MoreMountains.Feedbacks.MMF_SpriteRendererAlpha, MoreMountains.Feedbacks.MMF_SpriteSheetAnimation, MoreMountains.Feedbacks.MMF_SquashAndStretch, MoreMountains.Feedbacks.MMF_SquashAndStretchSpring, MoreMountains.Feedbacks.MMF_TextureOffset, MoreMountains.Feedbacks.MMF_TextureScale, MoreMountains.Feedbacks.MMF_TMPAlpha, MoreMountains.Feedbacks.MMF_TMPColor, MoreMountains.Feedbacks.MMF_TMPDilate, MoreMountains.Feedbacks.MMF_TMPOutlineColor, MoreMountains.Feedbacks.MMF_TMPSoftness, MoreMountains.Feedbacks.MMF_TMPTextReveal, MoreMountains.Feedbacks.MMF_TrailRenderer, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkit, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitBoolBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitColorBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitFloatBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitText, and MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitVector2Base.
|
protectedvirtual |
This method describes what happens when the player this feedback belongs to completes playing.
Reimplemented in MoreMountains.Feedbacks.MMF_SetActive.
|
abstractprotected |
This method describes what happens when the feedback gets played.
| position | |
| feedbacksIntensity |
|
protectedvirtual |
This method describes what happens when the feedback gets reset.
Reimplemented in MoreMountains.Feedbacks.MMF_Enable, MoreMountains.Feedbacks.MMF_Events, MoreMountains.Feedbacks.MMF_Flicker, MoreMountains.Feedbacks.MMF_FloatController, MoreMountains.Feedbacks.MMF_Looper, MoreMountains.Feedbacks.MMF_Particles, MoreMountains.Feedbacks.MMF_ParticlesInstantiation, and MoreMountains.Feedbacks.MMF_SetActive.
|
protectedvirtual |
This method describes what happens when the feedback gets restored.
Reimplemented in MoreMountains.Feedbacks.MMF_AnimatorSpeed, MoreMountains.Feedbacks.MMF_AudioFilterDistortion, MoreMountains.Feedbacks.MMF_AudioFilterEcho, MoreMountains.Feedbacks.MMF_AudioFilterHighPass, MoreMountains.Feedbacks.MMF_AudioFilterLowPass, MoreMountains.Feedbacks.MMF_AudioFilterReverb, MoreMountains.Feedbacks.MMF_AudioSourcePitch, MoreMountains.Feedbacks.MMF_AudioSourceStereoPan, MoreMountains.Feedbacks.MMF_AudioSourceVolume, MoreMountains.Feedbacks.MMF_Blink, MoreMountains.Feedbacks.MMF_CameraClippingPlanes, MoreMountains.Feedbacks.MMF_CameraFieldOfView, MoreMountains.Feedbacks.MMF_CameraOrthographicSize, MoreMountains.Feedbacks.MMF_CameraZoom, MoreMountains.Feedbacks.MMF_CanvasGroupBlocksRaycasts, MoreMountains.Feedbacks.MMF_Collider, MoreMountains.Feedbacks.MMF_DestinationTransform, MoreMountains.Feedbacks.MMF_Destroy, MoreMountains.Feedbacks.MMF_Enable, MoreMountains.Feedbacks.MMF_FeedbackBase, MoreMountains.Feedbacks.MMF_Flicker, MoreMountains.Feedbacks.MMF_FloatController, MoreMountains.Feedbacks.MMF_Fog, MoreMountains.Feedbacks.MMF_Light, MoreMountains.Feedbacks.MMF_LineRenderer, MoreMountains.Feedbacks.MMF_LookAt, MoreMountains.Feedbacks.MMF_Material, MoreMountains.Feedbacks.MMF_MaterialSetProperty, MoreMountains.Feedbacks.MMF_PlayerChain, MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_PositionShake, MoreMountains.Feedbacks.MMF_PositionSpring, MoreMountains.Feedbacks.MMF_PPMovingFilter, MoreMountains.Feedbacks.MMF_Property, MoreMountains.Feedbacks.MMF_RadioSignal, MoreMountains.Feedbacks.MMF_RotatePositionAround, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_RotationShake, MoreMountains.Feedbacks.MMF_RotationSpring, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_ScaleShake, MoreMountains.Feedbacks.MMF_ScaleSpring, MoreMountains.Feedbacks.MMF_SetActive, MoreMountains.Feedbacks.MMF_ShaderGlobal, MoreMountains.Feedbacks.MMF_Skybox, MoreMountains.Feedbacks.MMF_SpringColor, MoreMountains.Feedbacks.MMF_SpringFloat, MoreMountains.Feedbacks.MMF_SpringVector2, MoreMountains.Feedbacks.MMF_SpringVector3, MoreMountains.Feedbacks.MMF_SpringVector4, MoreMountains.Feedbacks.MMF_Sprite, MoreMountains.Feedbacks.MMF_SpriteRenderer, MoreMountains.Feedbacks.MMF_SpriteRendererAlpha, MoreMountains.Feedbacks.MMF_SpriteSheetAnimation, MoreMountains.Feedbacks.MMF_SquashAndStretch, MoreMountains.Feedbacks.MMF_SquashAndStretchSpring, MoreMountains.Feedbacks.MMF_TextureOffset, MoreMountains.Feedbacks.MMF_TextureScale, MoreMountains.Feedbacks.MMF_TimescaleModifier, MoreMountains.Feedbacks.MMF_TMPAlpha, MoreMountains.Feedbacks.MMF_TMPColor, MoreMountains.Feedbacks.MMF_TMPCountTo, MoreMountains.Feedbacks.MMF_TMPCountToLong, MoreMountains.Feedbacks.MMF_TMPDilate, MoreMountains.Feedbacks.MMF_TMPOutlineColor, MoreMountains.Feedbacks.MMF_TMPSoftness, MoreMountains.Feedbacks.MMF_TMPText, MoreMountains.Feedbacks.MMF_TMPTextReveal, MoreMountains.Feedbacks.MMF_TrailRenderer, MoreMountains.Feedbacks.MMF_Wiggle, MoreMountains.FeedbacksForThirdParty.MMF_Bloom, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_URP, MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulseSource, MoreMountains.FeedbacksForThirdParty.MMF_CinemachineTransition, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_URP, MoreMountains.FeedbacksForThirdParty.MMF_ColorGrading, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_URP, MoreMountains.FeedbacksForThirdParty.MMF_Exposure_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_URP, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend_URP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_URP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_URP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_URP, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitBoolBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitColorBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitFloatBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitText, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitVector2Base, MoreMountains.FeedbacksForThirdParty.MMF_Vignette, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_URP, MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_HDRP, and MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_URP.
|
protectedvirtual |
This method describes what happens when the feedback gets skipped to the end.
| position | |
| feedbacksIntensity |
Reimplemented in MoreMountains.Feedbacks.MMF_PlayerChain, MoreMountains.Feedbacks.MMF_PositionSpring, MoreMountains.Feedbacks.MMF_RotationSpring, MoreMountains.Feedbacks.MMF_ScaleSpring, MoreMountains.Feedbacks.MMF_SetActive, and MoreMountains.Feedbacks.MMF_SquashAndStretchSpring.
|
protectedvirtual |
This method describes what happens when the feedback gets stopped.
| position | |
| feedbacksIntensity |
Reimplemented in MoreMountains.Feedbacks.MMF_Animation, MoreMountains.Feedbacks.MMF_AnimatorPlayState, MoreMountains.Feedbacks.MMF_AnimatorSpeed, MoreMountains.Feedbacks.MMF_AudioFilterDistortion, MoreMountains.Feedbacks.MMF_AudioFilterEcho, MoreMountains.Feedbacks.MMF_AudioFilterHighPass, MoreMountains.Feedbacks.MMF_AudioFilterLowPass, MoreMountains.Feedbacks.MMF_AudioFilterReverb, MoreMountains.Feedbacks.MMF_AudioSourcePitch, MoreMountains.Feedbacks.MMF_AudioSourceStereoPan, MoreMountains.Feedbacks.MMF_AudioSourceVolume, MoreMountains.Feedbacks.MMF_CameraClippingPlanes, MoreMountains.Feedbacks.MMF_CameraFieldOfView, MoreMountains.Feedbacks.MMF_CameraOrthographicSize, MoreMountains.Feedbacks.MMF_CameraShake, MoreMountains.Feedbacks.MMF_CameraZoom, MoreMountains.Feedbacks.MMF_DestinationTransform, MoreMountains.Feedbacks.MMF_Enable, MoreMountains.Feedbacks.MMF_Events, MoreMountains.Feedbacks.MMF_FeedbackBase, MoreMountains.Feedbacks.MMF_Flicker, MoreMountains.Feedbacks.MMF_FloatController, MoreMountains.Feedbacks.MMF_Fog, MoreMountains.Feedbacks.MMF_HoldingPause, MoreMountains.Feedbacks.MMF_Light, MoreMountains.Feedbacks.MMF_LineRenderer, MoreMountains.Feedbacks.MMF_LookAt, MoreMountains.Feedbacks.MMF_Looper, MoreMountains.Feedbacks.MMF_Material, MoreMountains.Feedbacks.MMF_MaterialSetProperty, MoreMountains.Feedbacks.MMF_MMSoundManagerSound, MoreMountains.Feedbacks.MMF_MMSoundManagerSoundFade, MoreMountains.Feedbacks.MMF_MMSoundManagerTrackFade, MoreMountains.Feedbacks.MMF_Particles, MoreMountains.Feedbacks.MMF_ParticlesInstantiation, MoreMountains.Feedbacks.MMF_Pause, MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_PositionShake, MoreMountains.Feedbacks.MMF_PositionSpring, MoreMountains.Feedbacks.MMF_PPMovingFilter, MoreMountains.Feedbacks.MMF_Property, MoreMountains.Feedbacks.MMF_RadioSignal, MoreMountains.Feedbacks.MMF_RotatePositionAround, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_RotationShake, MoreMountains.Feedbacks.MMF_RotationSpring, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_ScaleShake, MoreMountains.Feedbacks.MMF_ScaleSpring, MoreMountains.Feedbacks.MMF_SetActive, MoreMountains.Feedbacks.MMF_Sound, MoreMountains.Feedbacks.MMF_SpringColor, MoreMountains.Feedbacks.MMF_SpringFloat, MoreMountains.Feedbacks.MMF_SpringVector2, MoreMountains.Feedbacks.MMF_SpringVector3, MoreMountains.Feedbacks.MMF_SpringVector4, MoreMountains.Feedbacks.MMF_Sprite, MoreMountains.Feedbacks.MMF_SpriteRenderer, MoreMountains.Feedbacks.MMF_SpriteRendererAlpha, MoreMountains.Feedbacks.MMF_SpriteSheetAnimation, MoreMountains.Feedbacks.MMF_SquashAndStretch, MoreMountains.Feedbacks.MMF_SquashAndStretchSpring, MoreMountains.Feedbacks.MMF_TextureOffset, MoreMountains.Feedbacks.MMF_TextureScale, MoreMountains.Feedbacks.MMF_TimescaleModifier, MoreMountains.Feedbacks.MMF_TMPAlpha, MoreMountains.Feedbacks.MMF_TMPColor, MoreMountains.Feedbacks.MMF_TMPCountTo, MoreMountains.Feedbacks.MMF_TMPCountToLong, MoreMountains.Feedbacks.MMF_TMPDilate, MoreMountains.Feedbacks.MMF_TMPOutlineColor, MoreMountains.Feedbacks.MMF_TMPSoftness, MoreMountains.Feedbacks.MMF_TrailRenderer, MoreMountains.Feedbacks.MMF_Wiggle, MoreMountains.FeedbacksForThirdParty.MMF_Bloom, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Bloom_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChannelMixer_URP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ChromaticAberration_URP, MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulse, MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulseSource, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_ColorAdjustments_URP, MoreMountains.FeedbacksForThirdParty.MMF_ColorGrading, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_DepthOfField_URP, MoreMountains.FeedbacksForThirdParty.MMF_Exposure_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_FilmGrain_URP, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend, MoreMountains.FeedbacksForThirdParty.MMF_GlobalPPVolumeAutoBlend_URP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_LensDistortion_URP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_MotionBlur_URP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_PaniniProjection_URP, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitBoolBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitColorBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitFloatBase, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitVector2Base, MoreMountains.FeedbacksForThirdParty.MMF_Vignette, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_HDRP, MoreMountains.FeedbacksForThirdParty.MMF_Vignette_URP, MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_HDRP, and MoreMountains.FeedbacksForThirdParty.MMF_WhiteBalance_URP.
|
virtual |
Override this method to determine if a feedback requires setup.
|
protectedvirtual |
| T |
|
protectedvirtual |
|
virtual |
Lets you force target acquisition, outside of initialization where it usually occurs.
|
virtual |
Forces the feedback to set its initial value (behavior will change from feedback to feedback, but for example, a Position feedback that moves a Transform from point A to B would automatically move the Transform to point A when ForceInitialState is called.
|
protectedvirtual |
A coroutine used to delay the Stop when forcing initial values (used mostly with shaker based feedbacks)
| position | |
| feedbacksIntensity |
|
virtual |
you can override this when creating a custom feedback to have it behave differently and display a different label
|
protectedvirtual |
Internal coroutine used for repeated play without end.
| position | |
| feedbacksIntensity |
|
virtual |
Typically runs on Start, Initializes the feedback and its timing related variables.
| owner |
|
virtual |
Use this method to initialize any custom attributes you may have.
Reimplemented in MoreMountains.Feedbacks.MMF_Blink, MoreMountains.Feedbacks.MMF_MMSoundManagerSound, and MoreMountains.Feedbacks.MMF_Sound.
|
virtual |
Triggered when the feedback gets added to the player.
Reimplemented in MoreMountains.Feedbacks.MMF_CanvasGroup, and MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulse.
|
virtual |
Triggered when that feedback gets destroyed.
|
virtual |
Triggered when the host MMF Player gets disabled.
Reimplemented in MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_RotatePositionAround, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_SpriteRenderer, MoreMountains.Feedbacks.MMF_SpriteRendererAlpha, and MoreMountains.Feedbacks.MMF_SquashAndStretch.
|
virtual |
Triggered when the host MMF Player gets selected, can be used to draw gizmos.
Reimplemented in MoreMountains.Feedbacks.MMF_MMSoundManagerSound, and MoreMountains.FeedbacksForThirdParty.MMF_CinemachineImpulse.
|
virtual |
Triggered when a change happens in the inspector.
Reimplemented in MoreMountains.Feedbacks.MMF_DestinationTransform, MoreMountains.Feedbacks.MMF_FeedbackBase, MoreMountains.Feedbacks.MMF_MaterialSetProperty, MoreMountains.Feedbacks.MMF_MMSoundManagerSound, MoreMountains.Feedbacks.MMF_Position, MoreMountains.Feedbacks.MMF_Property, MoreMountains.Feedbacks.MMF_Rotation, MoreMountains.Feedbacks.MMF_Scale, MoreMountains.Feedbacks.MMF_TimescaleModifier, MoreMountains.Feedbacks.MMF_TMPAlpha, MoreMountains.Feedbacks.MMF_TMPDilate, MoreMountains.Feedbacks.MMF_TMPSoftness, MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitFloatBase, and MoreMountains.FeedbacksForThirdParty.MMF_UIToolkitVector2Base.
|
virtual |
Plays the feedback.
| position | |
| feedbacksIntensity |
|
protectedvirtual |
An internal coroutine delaying the initial play of the feedback.
| position | |
| feedbacksIntensity |
|
virtual |
This gets called by the MMF Player when all feedbacks have completed playing.
|
virtual |
Runs at Awake, lets you preinitialize your custom feedback before Initialization.
| owner | |
| index |
|
protectedvirtual |
Triggers delaying coroutines if needed.
| position | |
| feedbacksIntensity |
|
protectedvirtual |
Internal coroutine used for repeated play.
| position | |
| feedbacksIntensity |
|
virtual |
Resets the cooldown for this feedback, allowing it to be played again instantly.
|
virtual |
Calls this feedback's custom reset.
|
virtual |
Resets the play count of this feedback.
|
virtual |
Called when restoring the initial state of a player, calls custom Restore on all feedbacks.
| position | |
| feedbacksIntensity |
|
protectedvirtual |
A coroutine used to play this feedback on a sequence.
| position | |
| feedbacksIntensity |
|
virtual |
Use this method to specify a new delay between repeats at runtime.
| delay |
|
virtual |
Use this method to change the duration of this feedback.
| newDuration |
|
virtual |
Lets you specify at what index this feedback is in the list - use carefully (or don't use at all)
| index |
|
virtual |
Use this method to specify a new initial delay at runtime.
| delay |
|
virtual |
Use this method to change this feedback's sequence at runtime.
| newSequence |
|
virtual |
Called when skipping to the end of MMF_Player, calls custom Skip on all feedbacks.
| position | |
| feedbacksIntensity |
|
virtual |
Stops all feedbacks from playing. Will stop repeating feedbacks, and call custom stop implementations.
| position | |
| feedbacksIntensity |
Reimplemented in MoreMountains.Feedbacks.MMF_AudioSource.
|
protectedvirtual |
Triggers a custom play.
| position | |
| intensity |
|
protectedvirtual |
|
protectedvirtual |
Internal method used to wait for a duration, on scaled or unscaled time.
| delay |
|
static |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
static |
|
static |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
| bool MoreMountains.Feedbacks.MMF_Feedback.Active = true |
whether or not this feedback is active
| MMFeedbackTargetAcquisition MoreMountains.Feedbacks.MMF_Feedback.AutomatedTargetAcquisition |
a set of settings letting you define automated target acquisition for this feedback, to (for example) automatically grab the target on this game object, or a parent, a child, or on a reference holder
| MMF_Button MoreMountains.Feedbacks.MMF_Feedback.AutomaticShakerSetupButton |
a button used to attempt an auto shaker setup for this feedback, adding whatever shaker it requires to function to the scene
|
protected |
| float MoreMountains.Feedbacks.MMF_Feedback.Chance = 100f |
the chance of this feedback happening (in percent : 100 : happens all the time, 0 : never happens, 50 : happens once every two calls, etc)
| int MoreMountains.Feedbacks.MMF_Feedback.Channel = 0 |
the ID of the channel on which this feedback will communicate
| MMChannelModes MoreMountains.Feedbacks.MMF_Feedback.ChannelMode = MMChannelModes.Int |
whether to broadcast this feedback's message using an int or a scriptable object. Ints are simple to setup but can get messy and make it harder to remember what int corresponds to what. MMChannel scriptable objects require you to create them in advance, but come with a readable name and are more scalable
|
protected |
| bool MoreMountains.Feedbacks.MMF_Feedback.DebugActive = false |
whether or not this feedback is in debug mode
| string MoreMountains.Feedbacks.MMF_Feedback.Label = "MMFeedback" |
the name of this feedback to display in the inspector
|
protected |
|
protected |
| MMChannel MoreMountains.Feedbacks.MMF_Feedback.MMChannelDefinition = null |
the MMChannel definition asset to use to broadcast this feedback. The shaker will have to reference that same MMChannel definition to receive events - to create a MMChannel, right click anywhere in your project (usually in a Data folder) and go MoreMountains > MMChannel, then name it with some unique name
| string MoreMountains.Feedbacks.MMF_Feedback.OriginalLabel = "" |
the original label of this feedback, used to display next to the custom label in case we set one
| MMF_Player MoreMountains.Feedbacks.MMF_Feedback.Owner |
the Owner of the feedback, as defined when calling the Initialization method
| Vector2 MoreMountains.Feedbacks.MMF_Feedback.RandomDurationMultiplier = new Vector2(0.5f, 2f) |
a random value (randomized between its x and y) by which to multiply the duration of this feedback, if RandomizeDuration is true
| bool MoreMountains.Feedbacks.MMF_Feedback.RandomizeDuration = false |
if this is true, this feedback's duration will be multiplied by a random value on play, picked between RandomDurationMultiplier.x and RandomDurationMultiplier.y
| bool MoreMountains.Feedbacks.MMF_Feedback.RandomizeOutput = false |
if this is true, intensity will be multiplied by a random value on play, picked between RandomMultiplier.x and RandomMultiplier.y
| Vector2 MoreMountains.Feedbacks.MMF_Feedback.RandomMultiplier = new Vector2(0.8f, 1f) |
a random value (randomized between its x and y) by which to multiply the output of this feedback, if RandomizeOutput is true
| float MoreMountains.Feedbacks.MMF_Feedback.RangeDistance = 5f |
when in UseRange mode, only shakers within that distance will respond to this feedback
| AnimationCurve MoreMountains.Feedbacks.MMF_Feedback.RangeFalloff = new AnimationCurve(new Keyframe(0f, 1f), new Keyframe(1f, 0f)) |
the animation curve to use to define falloff (on the x 0 represents the range center, 1 represents the max distance to it)
| Vector2 MoreMountains.Feedbacks.MMF_Feedback.RemapRangeFalloff = new Vector2(0f, 1f) |
the values to remap the falloff curve's y axis' 0 and 1
| MMFeedbackTiming MoreMountains.Feedbacks.MMF_Feedback.Timing |
a number of timing-related values (delay, repeat, etc)
| int MoreMountains.Feedbacks.MMF_Feedback.UniqueID |
| bool MoreMountains.Feedbacks.MMF_Feedback.UseRange = false |
if this is true, only shakers within the specified range will respond to this feedback
| bool MoreMountains.Feedbacks.MMF_Feedback.UseRangeFalloff = false |
when in UseRange mode, whether or not to modify the shake intensity based on the RangeFallOff curve
|
get |
if this is true, this feedback implements ForceInitialState, otherwise calling that method will have no effect
|
get |
a ChannelData object, ready to pass to an event
|
get |
Returns the random multiplier to apply to this feedback's output.
|
get |
Returns the timescale mode to use in logic, taking into account the one set at the feedback level and the player level.
|
get |
use this color to customize the background color of the feedback in the MMF_Player's list
|
get |
if this is true, the feedback will be displayed in the MMF Player's list with a full color background, as opposed to just a small line on the left
|
get |
if this is true, group inspectors will be displayed within this feedback
|
get |
the delta time (or unscaled delta time) based on the selected Timing settings
|
getset |
|
get |
whether or not this feedback is playing right now
|
get |
|
get |
the time (or unscaled time) based on the selected Timing settings
|
getprotected |
Returns the t value at which to evaluate a curve at the end of this feedback's play time.
|
getset |
when in forced reference mode, this will contain the forced reference holder that will be used (usually set by itself)
|
get |
if this is true, force initial value will happen over two frames
|
get |
whether or not this feedback can automatically grab the target on this game object, or a parent, a child, or on a reference holder
|
get |
if this is true, this feedback will display an automatic shaker setup button
|
get |
if this is true, the Channel property will be displayed, otherwise it'll be hidden
|
get |
|
get |
if this is true, the Randomness group will be displayed, otherwise it'll be hidden
|
get |
if this is true, the Range group will be displayed, otherwise it'll be hidden
|
get |
if this is true, this feedback will wait until all previous feedbacks have run
|
get |
returns true if this feedback is in cooldown at this time (and thus can't play), false otherwise
an overridable color for your feedback, that can be redefined per feedback. White is the only reserved color, and the feedback will revert to normal (light or dark skin) when left to White
|
getset |
|
get |
returns true if this feedback is in Scaled timescale mode, false otherwise
|
getset |
|
getset |
if this is true, this feedback is currently playing
|
get |
if this is true, this feedback will wait until all previous feedbacks have run, then run all previous feedbacks again
|
get |
if this is true, this feedback will wait until all previous feedbacks have run, then run all previous feedbacks again
|
get |
Returns true if this feedback should play normally, or false if it should play in rewind.
|
get |
set this to true if your feedback should pause the execution of the feedback sequence
|
get |
the total amount of plays this feedback has left
|
get |
|
get |
|
get |
the text used to describe the required target
|
get |
the text used to describe the required target, if more info is needed
|
get |
A flag used to determine if a feedback has all it needs, or if it requires some extra setup. This flag will be used to display a warning icon in the inspector if the feedback is not ready to be played.
|
get |
defines the setup text that will be displayed on the feedback, should setup be required
|
getset |
if this is true, this feedback will pause and wait until ResumeFeedbacks() is called on its parent MMF_Player to resume execution
|
getset |
if this is a positive value, the feedback will auto resume after that duration if it hasn't been resumed via script already
|
get |
Returns true if this feedback should play in the current parent MMFeedbacks direction, according to its MMFeedbacksDirectionCondition setting.
|
get |
The total duration of this feedback : total = initial delay + duration * (number of repeats + delay between repeats)