Browse Source

gdextension: Sync with upstream commit d33da79d3f8fe84be2521d25b9ba8e440cf25a88 (4.4-beta1)

David Snopek 6 months ago
parent
commit
dfc51960f9
2 changed files with 654 additions and 48 deletions
  1. 648 42
      gdextension/extension_api.json
  2. 6 6
      gdextension/gdextension_interface.h

File diff suppressed because it is too large
+ 648 - 42
gdextension/extension_api.json


+ 6 - 6
gdextension/gdextension_interface.h

@@ -845,7 +845,7 @@ typedef void (*GDExtensionInterfaceMemFree)(void *p_ptr);
  *
  *
  * Logs an error to Godot's built-in debugger and to the OS terminal.
  * Logs an error to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the error.
+ * @param p_description The code triggering the error.
  * @param p_function The function name where the error occurred.
  * @param p_function The function name where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_line The line where the error occurred.
  * @param p_line The line where the error occurred.
@@ -859,7 +859,7 @@ typedef void (*GDExtensionInterfacePrintError)(const char *p_description, const
  *
  *
  * Logs an error with a message to Godot's built-in debugger and to the OS terminal.
  * Logs an error with a message to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the error.
+ * @param p_description The code triggering the error.
  * @param p_message The message to show along with the error.
  * @param p_message The message to show along with the error.
  * @param p_function The function name where the error occurred.
  * @param p_function The function name where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_file The file where the error occurred.
@@ -874,7 +874,7 @@ typedef void (*GDExtensionInterfacePrintErrorWithMessage)(const char *p_descript
  *
  *
  * Logs a warning to Godot's built-in debugger and to the OS terminal.
  * Logs a warning to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the warning.
+ * @param p_description The code triggering the warning.
  * @param p_function The function name where the warning occurred.
  * @param p_function The function name where the warning occurred.
  * @param p_file The file where the warning occurred.
  * @param p_file The file where the warning occurred.
  * @param p_line The line where the warning occurred.
  * @param p_line The line where the warning occurred.
@@ -888,7 +888,7 @@ typedef void (*GDExtensionInterfacePrintWarning)(const char *p_description, cons
  *
  *
  * Logs a warning with a message to Godot's built-in debugger and to the OS terminal.
  * Logs a warning with a message to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the warning.
+ * @param p_description The code triggering the warning.
  * @param p_message The message to show along with the warning.
  * @param p_message The message to show along with the warning.
  * @param p_function The function name where the warning occurred.
  * @param p_function The function name where the warning occurred.
  * @param p_file The file where the warning occurred.
  * @param p_file The file where the warning occurred.
@@ -903,7 +903,7 @@ typedef void (*GDExtensionInterfacePrintWarningWithMessage)(const char *p_descri
  *
  *
  * Logs a script error to Godot's built-in debugger and to the OS terminal.
  * Logs a script error to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the error.
+ * @param p_description The code triggering the error.
  * @param p_function The function name where the error occurred.
  * @param p_function The function name where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_line The line where the error occurred.
  * @param p_line The line where the error occurred.
@@ -917,7 +917,7 @@ typedef void (*GDExtensionInterfacePrintScriptError)(const char *p_description,
  *
  *
  * Logs a script error with a message to Godot's built-in debugger and to the OS terminal.
  * Logs a script error with a message to Godot's built-in debugger and to the OS terminal.
  *
  *
- * @param p_description The code trigging the error.
+ * @param p_description The code triggering the error.
  * @param p_message The message to show along with the error.
  * @param p_message The message to show along with the error.
  * @param p_function The function name where the error occurred.
  * @param p_function The function name where the error occurred.
  * @param p_file The file where the error occurred.
  * @param p_file The file where the error occurred.

Some files were not shown because too many files changed in this diff