ProtoFlux:TweenValue: Difference between revisions

From Resonite Wiki
Sudo-Generic -> Pseudo-generic
add a description for ProportionalDuration
 
(One intermediate revision by one other user not shown)
Line 49: Line 49:
=== ProportionalDuration ([[Type:Bool|Boolean]]) ===
=== ProportionalDuration ([[Type:Bool|Boolean]]) ===


{{Stub}}
If true, multiplies the duration of the tween by the distance between the two endpoints, making the average speed over the whole tween equal to 1.
TODO: What does this do?


=== Target ([[Type:IField`1|Numeric or Enum IField`1]]) ===
=== Target ([[Type:IField`1|Numeric or Enum IField`1]]) ===
Line 59: Line 58:
=== OnStarted ([[Impulses#Async|SyncResumption]] (Async)) ===  
=== OnStarted ([[Impulses#Async|SyncResumption]] (Async)) ===  


sends an [[Impulses#Async|Async Impulse]] once the node starts tweening the Target ([[Type:IField`1|Numeric or Enum IField`1]]).
Sends an [[Impulses#Async|Async Impulse]] once the node starts tweening the Target ([[Type:IField`1|Numeric or Enum IField`1]]).


=== OnDone ([[Impulses|Continuation]]) ===
=== OnDone ([[Impulses|Continuation]]) ===

Latest revision as of 04:29, 20 September 2025

Tween
*
OnStarted
To
OnDone
From
Duration
Curve
ProportionalDuration
Target
Actions

Tween Value is a node that allows you to change a Target (Numeric or Enum IField`1) over a Duration (float) from a starting point to an ending point. The different curve presets determine the interpolation used, and when applicable will smoothly change using non whole numbers.

Inputs

* (AsyncCall)

Tells the node to start tweening Target (Numeric or Enum IField`1).

To (Pseudo-generic (Any Numeric or Enum value))

The value to tween towards over Duration (float)

Examples: Key Enum, Float, Int, etc

From (Pseudo-generic (Any Numeric or Enum value))

The value to tween away from over Duration (float)

Examples: Key Enum, Float, Int, etc

Duration (float)

The duration in seconds that the value should tween for.

Curve (CurvePreset)

The interpolation type to use while tweening.

ProportionalDuration (Boolean)

If true, multiplies the duration of the tween by the distance between the two endpoints, making the average speed over the whole tween equal to 1.

Target (Numeric or Enum IField`1)

The value this node should Tween.

Outputs

OnStarted (SyncResumption (Async))

Sends an Async Impulse once the node starts tweening the Target (Numeric or Enum IField`1).

OnDone (Continuation)

Sends an Impulse once the node is done tweening Target (Numeric or Enum IField`1).

Examples