diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-24 22:09:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 22:09:15 +0200 |
commit | 8c483886d2facd2801d76332c0437f408dcec605 (patch) | |
tree | f988a01886e60b402bdab9d4f810531cd04822cf /doc | |
parent | f1e189704fb26afaa6b65ca4b2c595096f0a845f (diff) | |
parent | 6843ad87a4b07899a813bf35a85afb611566820c (diff) |
Merge pull request #30016 from randall-fulton/docs/object-set-deferred
Add docstring for Object.set_deferred
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Object.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml index c9910360ed..548a0c18bb 100644 --- a/doc/classes/Object.xml +++ b/doc/classes/Object.xml @@ -374,6 +374,7 @@ <argument index="1" name="value" type="Variant"> </argument> <description> + Set property into the object, after the current frame's physics step. This is equivalent to calling [method set] via [method call_deferred], i.e. [code]call_deferred("set", [property, value])[/code]. </description> </method> <method name="set_indexed"> |