Sync classref with 3.2 branch

This commit is contained in:
Rémi Verschelde
2020-06-22 13:24:53 +02:00
parent 80957b8581
commit bbc324a125
42 changed files with 545 additions and 299 deletions

View File

@@ -34,6 +34,8 @@ Property membership can be tested directly in GDScript using ``in``:
print("position" in n) # Prints "True".
print("other_property" in n) # Prints "False".
The ``in`` operator will evaluate to ``true`` as long as the key exists, even if the value is ``null``.
Objects also receive notifications. Notifications are a simple way to notify the object about different events, so they can all be handled together. See :ref:`_notification<class_Object_method__notification>`.
Methods