Merge pull request #41590 from Calinou/doc-thread-no-debugging

Document the GDScript debugger not supporting Thread yet
This commit is contained in:
Rémi Verschelde 2020-08-29 12:52:02 +02:00 committed by GitHub
commit d7fffbc2a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
</brief_description>
<description>
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.
[b]Note:[/b] Breakpoints won't break on code if it's running in a thread. This is a current limitation of the GDScript debugger.
</description>
<tutorials>
<link title="Using multiple threads">https://docs.godotengine.org/en/latest/tutorials/threads/using_multiple_threads.html</link>