GDExtensionInterfacePrintWarningWithMessage typedef
GDExtensionInterfacePrintWarningWithMessage = Pointer<NativeFunction<GDExtensionInterfacePrintWarningWithMessageFunction> >
@name print_warning_with_message @since 4.1
Logs a warning with a message to Godot's built-in debugger and to the OS terminal.
@param p_description The code triggering 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_file The file where the warning occurred. @param p_line The line where the warning occurred. @param p_editor_notify Whether or not to notify the editor.
Implementation
typedef GDExtensionInterfacePrintWarningWithMessage =
ffi.Pointer<
ffi.NativeFunction<GDExtensionInterfacePrintWarningWithMessageFunction>
>;