ProtoFlux:RotateRight: Difference between revisions

From Resonite Wiki
Fixed input description.
m YoshBot moved page ProtoFlux:Rotate Right to ProtoFlux:RotateRight: Automated: removing spaces from ProtoFlux namespace
 
(No difference)

Latest revision as of 00:33, 21 August 2025

ROR
A
*
Rotate
Boolean

The Rotate Right node takes in a value we want to rotate (using a bitwise operation, called a circular shift) and the amount we want to rotate by to the right, and returns the new rotated value. Rotating is the act of moving the bits in a byte in a direction, and when rotating, the bits that fall outside the bounds will cycle around to the other side of the byte.

Inputs

A (Pseudo-Generic)

The value we want to rotate.

Rotate (int)

The amount to rotate this value by to the right.

Outputs

* (Pseudo-Generic)

The new rotated value.

Further Reading

See Also