VisualShaderNodeTransformMult

Inherits: VisualShaderNode < Resource < Reference < Object

Multiplies Transform by Transform within the visual shader graph.

Description

A multiplication operation on two transforms (4x4 matrices), with support for different multiplication operators.

Properties

Operator

operator

0


Enumerations

enum Operator:

Operator OP_AxB = 0

Multiplies transform a by the transform b.

Operator OP_BxA = 1

Multiplies transform b by the transform a.

Operator OP_AxB_COMP = 2

Performs a component-wise multiplication of transform a by the transform b.

Operator OP_BxA_COMP = 3

Performs a component-wise multiplication of transform b by the transform a.


Property Descriptions

Operator operator = 0

The multiplication type to be performed on the transforms. See Operator for options.