Community ProtoFlux Library/AmasterAmaster/Media/Media Control

From Resonite Wiki
Revision as of 23:45, 23 August 2024 by AmasterAmaster (talk | contribs) (Created a page for the Media Control custom node.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This is a custom ProtoFlux node maintained by AmasterAmaster. Contact the creator of the node (not the Dev Team) with any bugs or issues.
This node was created using an in-game system and has no correlation to the Plugin system. Currently, these types of custom nodes are not officially supported by Resonite.
Media Control
Play
OnPlay
Pause
OnPause
Stop
OnStop
Resume
OnResume
SetLoop
OnSetLoop
SetPosition
OnSetPosition
SetNormalizedPosition
OnSetNormalizedPosition
SetSpeed
OnSetSpeed
Target
IsPlaying
SetLoop
Loop
SetPosition
Position
SetNormalizedPosition
NormalizedPosition
SetSpeed
ClipLength
Speed
Amaster's Media Library

The Media Control node takes in a variety of parameters and impulse calls specifically for controlling an IPlayable media. This node solves the problem of not needing to find one specific media node inside the Media Category to do a task.

Inputs

Play (Call)

Plays the target media.

Pause (Call)

Pauses the target media.

Stop (Call)

Stops the target media.

Resume (Call)

Resumes the target media.

SetLoop (Call)

Sets the loop for the target media.

SetPosition (Call)

Sets the position for the target media.

SetNormalizedPosition (Call)

Sets the normalized position for the target media.

SetSpeed (Call)

Sets the speed for the target media.

Target (IPlayable)

The target media that will be controlled by this node.

SetLoop (bool)

The loop value to set for this media.

SetPosition (float)

The position to set this media at (ranging from 0 to ClipLength)

SetNormalizedPosition(float)

The position to set this media at (ranging from 0 to 1)

SetSpeed (float)

The speed to set this media's playback.

Outputs

OnPlay (Continuation)

Fires when the media started playing.

OnPause (Continuation)

Fires when the media paused.

OnStop (Continuation)

Fires when the media stopped playing.

OnResume (Continuation)

Fires when the media resumed playing.

OnSetLoop (Continuation)

Fires when the media's loop setting has been set.

OnSetPosition (Continuation)

Fires when the media's position has been set.

OnSetNormalizedPosition (Continuation)

Fires when the media's normalized position has been set.

OnSetSpeed (Continuation)

Fires when the media's speed has been set.

IsPlaying (bool)

Returns if the media is currently playing something.

Loop (bool)

Returns if this media is looping.

Position (float)

Returns the media's current playback position.

NormalizedPosition (float)

Returns the media's current playback normalized position.

ClipLength (float)

Returns the media's clip length.

Speed (float)

Returns the media's current speed.