diff options
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/EditorFileSystem.xml | 2 | ||||
-rw-r--r-- | doc/classes/EditorFileSystemDirectory.xml | 2 | ||||
-rw-r--r-- | doc/classes/TextEdit.xml | 5 |
3 files changed, 7 insertions, 2 deletions
diff --git a/doc/classes/EditorFileSystem.xml b/doc/classes/EditorFileSystem.xml index 6b4a2b03a3..6befe32e7a 100644 --- a/doc/classes/EditorFileSystem.xml +++ b/doc/classes/EditorFileSystem.xml @@ -14,7 +14,7 @@ <return type="String" /> <argument index="0" name="path" type="String" /> <description> - Gets the type of the file, given the full path. + Returns the resource type of the file, given the full path. This returns a string such as [code]"Resource"[/code] or [code]"GDScript"[/code], [i]not[/i] a file extension such as [code]".gd"[/code]. </description> </method> <method name="get_filesystem"> diff --git a/doc/classes/EditorFileSystemDirectory.xml b/doc/classes/EditorFileSystemDirectory.xml index 28793cb8af..a8f94101a7 100644 --- a/doc/classes/EditorFileSystemDirectory.xml +++ b/doc/classes/EditorFileSystemDirectory.xml @@ -68,7 +68,7 @@ <return type="StringName" /> <argument index="0" name="idx" type="int" /> <description> - Returns the file extension of the file at index [code]idx[/code]. + Returns the resource type of the file at index [code]idx[/code]. This returns a string such as [code]"Resource"[/code] or [code]"GDScript"[/code], [i]not[/i] a file extension such as [code]".gd"[/code]. </description> </method> <method name="get_name"> diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml index c31b7b953e..68d20e41d0 100644 --- a/doc/classes/TextEdit.xml +++ b/doc/classes/TextEdit.xml @@ -1014,6 +1014,11 @@ Emitted when the text changes. </description> </signal> + <signal name="text_set"> + <description> + Emitted when [method clear] is called or [member text] is set. + </description> + </signal> </signals> <constants> <constant name="MENU_CUT" value="0" enum="MenuItems"> |