diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-13 17:18:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 17:18:42 +0100 |
commit | 972bca75a82c16f4f2f4c5f770632c9cb65c444d (patch) | |
tree | f1de1645da507b064ebc01b5c1bc1947fad39fd3 /doc/classes | |
parent | 0dc6dab28deb9fab467ea75197cae3a970de6f81 (diff) | |
parent | a0e720efb2fffd7869517f3d0348f54b09dc3385 (diff) |
Merge pull request #59107 from otonashixav/expose-add-animation-slice
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RenderingServer.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 50990b5320..213dafa074 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -149,6 +149,17 @@ Once finished with your RID, you will want to free the RID using the RenderingServer's [method free_rid] static method. </description> </method> + <method name="canvas_item_add_animation_slice"> + <return type="void" /> + <argument index="0" name="item" type="RID" /> + <argument index="1" name="animation_length" type="float" /> + <argument index="2" name="slice_begin" type="float" /> + <argument index="3" name="slice_end" type="float" /> + <argument index="4" name="offset" type="float" default="0.0" /> + <description> + Subsequent drawing commands will be ignored unless they fall within the specified animation slice. This is a faster way to implement animations that loop on background rather than redrawing constantly. + </description> + </method> <method name="canvas_item_add_circle"> <return type="void" /> <argument index="0" name="item" type="RID" /> |