diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-31 10:12:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 10:12:37 +0200 |
commit | 7770f8cb7e9bfaf3a76e73441681e708108bfc82 (patch) | |
tree | c04018b611d22a1ee81f6fab19485ba6bb91525a /doc/classes | |
parent | b9802149bbe7796e174b8d6bbec9f96b44c39c59 (diff) | |
parent | adcbcf87dd285343b86b755f287748c3cd205801 (diff) |
Merge pull request #29331 from KoBeWi/animation_time_machine
Add track_set_key_time() to Animation
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Animation.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/classes/Animation.xml b/doc/classes/Animation.xml index 9885f30883..53d3663d4f 100644 --- a/doc/classes/Animation.xml +++ b/doc/classes/Animation.xml @@ -562,6 +562,19 @@ Set the value of an existing key. </description> </method> + <method name="track_set_key_time"> + <return type="void"> + </return> + <argument index="0" name="idx" type="int"> + </argument> + <argument index="1" name="key_idx" type="int"> + </argument> + <argument index="2" name="time" type="float"> + </argument> + <description> + Set the time of an existing key. + </description> + </method> <method name="track_set_path"> <return type="void"> </return> |