GDExtensionInterfacePrintScriptError typedef

GDExtensionInterfacePrintScriptError = Pointer<NativeFunction<GDExtensionInterfacePrintScriptErrorFunction>>

@name print_script_error @since 4.1

Logs a script error to Godot's built-in debugger and to the OS terminal.

@param p_description The code triggering the error. @param p_function The function name where the error occurred. @param p_file The file where the error occurred. @param p_line The line where the error occurred. @param p_editor_notify Whether or not to notify the editor.

Implementation

typedef GDExtensionInterfacePrintScriptError =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfacePrintScriptErrorFunction>
    >;