From 2494224f968a964c68583bb787efc4a7269eaaa7 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 30 Jul 2020 12:18:00 +0200 Subject: [PATCH] Link to Thread-safe APIs in the Thread class documentation This closes https://github.com/godotengine/godot-docs/issues/2276. (cherry picked from commit f50a4b8a3b30ed49757e7a8b180ef6a14ff0260a) --- doc/classes/Thread.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 69e7b500b7d..5b9c115524c 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -7,7 +7,8 @@ A unit of execution in a process. Can run methods on [Object]s simultaneously. The use of synchronization via [Mutex] or [Semaphore] is advised if working with shared objects. - https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html + https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html + https://docs.godotengine.org/en/latest/tutorials/threads/thread_safe_apis.html