diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-06-10 17:54:18 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-06-10 18:04:34 +0800 |
commit | 5a011f599907901788f0e5381e548b0062a940ed (patch) | |
tree | 590fb69d3f7a4a1f1ee55a3ee1ac25dad3e63d5e | |
parent | efcf0d88e47f6c0dc18746da46bba70b3bfa1f2c (diff) |
Fix description about SceneTreeTimer auto free
-rw-r--r-- | doc/classes/SceneTreeTimer.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/SceneTreeTimer.xml b/doc/classes/SceneTreeTimer.xml index 2e9aeebceb..f28e65c5bf 100644 --- a/doc/classes/SceneTreeTimer.xml +++ b/doc/classes/SceneTreeTimer.xml @@ -22,7 +22,7 @@ } [/csharp] [/codeblocks] - The timer will be automatically freed after its time elapses, so be aware that any reference you might have kept to it will become invalid. + The timer will be dereferenced after its time elapses. To preserve the timer, you can keep a reference to it. See [RefCounted]. </description> <tutorials> </tutorials> |