Sync classref with current source

This commit is contained in:
Rémi Verschelde
2018-12-27 11:16:05 +01:00
parent a0e9bb8b81
commit 4fde11be6b
173 changed files with 1539 additions and 667 deletions

View File

@@ -141,7 +141,9 @@ Constants
Description
-----------
Base class for all non built-in types. Everything not a built-in type starts the inheritance chain from this class.
Base class for all non built-in types. Everything which is not a built-in type starts the inheritance chain from this class.
Objects can be constructed from scripting languages, using ``Object.new()`` in GDScript, ``new Object`` in C#, or the "Construct Object" node in VisualScript.
Objects do not manage memory, if inheriting from one the object will most likely have to be deleted manually (call the :ref:`free<class_Object_free>` function from the script or delete from C++).