mirror of
https://github.com/Relintai/pandemonium_engine_docs.git
synced 2025-01-23 15:17:21 +01:00
72 lines
2.9 KiB
ReStructuredText
72 lines
2.9 KiB
ReStructuredText
:github_url: hide
|
|
|
|
.. DO NOT EDIT THIS FILE!!!
|
|
.. Generated automatically from Godot engine sources.
|
|
.. Generator: https://github.com/godotengine/godot/tree/3.5/doc/tools/make_rst.py.
|
|
.. XML source: https://github.com/godotengine/godot/tree/3.5/doc/classes/VisualShaderNodeTransformMult.xml.
|
|
|
|
.. _class_VisualShaderNodeTransformMult:
|
|
|
|
VisualShaderNodeTransformMult
|
|
=============================
|
|
|
|
**Inherits:** :ref:`VisualShaderNode<class_VisualShaderNode>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
|
|
|
|
Multiplies :ref:`Transform<class_Transform>` by :ref:`Transform<class_Transform>` within the visual shader graph.
|
|
|
|
Description
|
|
-----------
|
|
|
|
A multiplication operation on two transforms (4x4 matrices), with support for different multiplication operators.
|
|
|
|
Properties
|
|
----------
|
|
|
|
+--------------------------------------------------------------+------------------------------------------------------------------------+-------+
|
|
| :ref:`Operator<enum_VisualShaderNodeTransformMult_Operator>` | :ref:`operator<class_VisualShaderNodeTransformMult_property_operator>` | ``0`` |
|
|
+--------------------------------------------------------------+------------------------------------------------------------------------+-------+
|
|
|
|
Enumerations
|
|
------------
|
|
|
|
.. _enum_VisualShaderNodeTransformMult_Operator:
|
|
|
|
.. _class_VisualShaderNodeTransformMult_constant_OP_AxB:
|
|
|
|
.. _class_VisualShaderNodeTransformMult_constant_OP_BxA:
|
|
|
|
.. _class_VisualShaderNodeTransformMult_constant_OP_AxB_COMP:
|
|
|
|
.. _class_VisualShaderNodeTransformMult_constant_OP_BxA_COMP:
|
|
|
|
enum **Operator**:
|
|
|
|
- **OP_AxB** = **0** --- Multiplies transform ``a`` by the transform ``b``.
|
|
|
|
- **OP_BxA** = **1** --- Multiplies transform ``b`` by the transform ``a``.
|
|
|
|
- **OP_AxB_COMP** = **2** --- Performs a component-wise multiplication of transform ``a`` by the transform ``b``.
|
|
|
|
- **OP_BxA_COMP** = **3** --- Performs a component-wise multiplication of transform ``b`` by the transform ``a``.
|
|
|
|
Property Descriptions
|
|
---------------------
|
|
|
|
.. _class_VisualShaderNodeTransformMult_property_operator:
|
|
|
|
- :ref:`Operator<enum_VisualShaderNodeTransformMult_Operator>` **operator**
|
|
|
|
+-----------+---------------------+
|
|
| *Default* | ``0`` |
|
|
+-----------+---------------------+
|
|
| *Setter* | set_operator(value) |
|
|
+-----------+---------------------+
|
|
| *Getter* | get_operator() |
|
|
+-----------+---------------------+
|
|
|
|
The multiplication type to be performed on the transforms. See :ref:`Operator<enum_VisualShaderNodeTransformMult_Operator>` for options.
|
|
|
|
.. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
|
|
.. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
|
|
.. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
|