godot/doc/classes/VisualShaderNodeColorOp.xml
Rémi Verschelde ba177ccaec doc: Misc updates for AnimationNode* and others
- Add some missing descriptions.
- Add links to tutorials for ARVR and AnimationTree.
- Style fixes.
- Engine changes:
  * Make `AnimationNodeTransition.input_<number>` properties internal
    so that they don't appear in the docs. They still appear in the
    inspector based on the actual number of inputs requested.
  * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D
    particles in `ParticlesMaterial`, and thus only relevant for
    `CPUParticles3D`.
2020-01-23 12:37:33 +01:00

36 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="VisualShaderNodeColorOp" inherits="VisualShaderNode" category="Core" version="3.2">
<brief_description>
</brief_description>
<description>
</description>
<tutorials>
</tutorials>
<methods>
</methods>
<members>
<member name="operator" type="int" setter="set_operator" getter="get_operator" enum="VisualShaderNodeColorOp.Operator" default="0">
</member>
</members>
<constants>
<constant name="OP_SCREEN" value="0" enum="Operator">
</constant>
<constant name="OP_DIFFERENCE" value="1" enum="Operator">
</constant>
<constant name="OP_DARKEN" value="2" enum="Operator">
</constant>
<constant name="OP_LIGHTEN" value="3" enum="Operator">
</constant>
<constant name="OP_OVERLAY" value="4" enum="Operator">
</constant>
<constant name="OP_DODGE" value="5" enum="Operator">
</constant>
<constant name="OP_BURN" value="6" enum="Operator">
</constant>
<constant name="OP_SOFT_LIGHT" value="7" enum="Operator">
</constant>
<constant name="OP_HARD_LIGHT" value="8" enum="Operator">
</constant>
</constants>
</class>