6f401439f8
* Instead of containing single animations, AnimationPlayer now contains libraries. * Libraries, in turn, contain the animations. This paves the way for implementing the possibility of importing scenes as animation libraries, finally allowing to import animations separate from the 3D models. Missing (will be done on separate PRs): * Make it possible to import scenes (dae/fbx/gltf) as animation libraries. * Make it possible for AnimationTree to import animation libraries on its own, so it does not rely on AnimationPlayer for everything.
70 lines
2 KiB
XML
70 lines
2 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="AnimationLibrary" inherits="Resource" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
|
|
<brief_description>
|
|
</brief_description>
|
|
<description>
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
<method name="add_animation">
|
|
<return type="int" enum="Error" />
|
|
<argument index="0" name="name" type="StringName" />
|
|
<argument index="1" name="animation" type="Animation" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_animation" qualifiers="const">
|
|
<return type="Animation" />
|
|
<argument index="0" name="name" type="StringName" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="get_animation_list" qualifiers="const">
|
|
<return type="StringName[]" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="has_animation" qualifiers="const">
|
|
<return type="bool" />
|
|
<argument index="0" name="name" type="StringName" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="remove_animation">
|
|
<return type="void" />
|
|
<argument index="0" name="name" type="StringName" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="rename_animation">
|
|
<return type="void" />
|
|
<argument index="0" name="name" type="StringName" />
|
|
<argument index="1" name="newname" type="StringName" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<members>
|
|
<member name="_data" type="Dictionary" setter="_set_data" getter="_get_data" default="{}">
|
|
</member>
|
|
</members>
|
|
<signals>
|
|
<signal name="animation_added">
|
|
<argument index="0" name="name" type="Animation" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="animation_removed">
|
|
<argument index="0" name="name" type="Animation" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="animation_renamed">
|
|
<argument index="0" name="name" type="Animation" />
|
|
<argument index="1" name="to_name" type="Animation" />
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
</signals>
|
|
</class>
|