Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/doc/classes/AnimationNodeAdd3.xml
10277 views
1
<?xml version="1.0" encoding="UTF-8" ?>
2
<class name="AnimationNodeAdd3" inherits="AnimationNodeSync" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
3
<brief_description>
4
Blends two of three animations additively inside of an [AnimationNodeBlendTree].
5
</brief_description>
6
<description>
7
A resource to add to an [AnimationNodeBlendTree]. Blends two animations out of three additively out of three based on the amount value.
8
This animation node has three inputs:
9
- The base animation to add to
10
- A "-add" animation to blend with when the blend amount is negative
11
- A "+add" animation to blend with when the blend amount is positive
12
If the absolute value of the amount is greater than [code]1.0[/code], the animation connected to "in" port is blended with the amplified animation connected to "-add"/"+add" port.
13
</description>
14
<tutorials>
15
<link title="Using AnimationTree">$DOCS_URL/tutorials/animation/animation_tree.html</link>
16
<link title="Third Person Shooter (TPS) Demo">https://godotengine.org/asset-library/asset/2710</link>
17
</tutorials>
18
</class>
19
20