Browse Source

Merge pull request #55974 from skyace65/ScriptDoc

Clarify that the script class should not be used directly
Max Hilbrunner 3 years ago
parent
commit
edd3ca4501
1 changed files with 1 additions and 0 deletions
  1. 1 0
      doc/classes/Script.xml

+ 1 - 0
doc/classes/Script.xml

@@ -5,6 +5,7 @@
 	</brief_description>
 	<description>
 		A class stored as a resource. A script extends the functionality of all objects that instance it.
+		This is the base class for all scripts and should not be used directly. Trying to create a new script with this class will result in an error.
 		The [code]new[/code] method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
 	</description>
 	<tutorials>