@@ -289,7 +289,7 @@ pub fn profiled(meta: TokenStream, input: TokenStream) -> TokenStream {
289
289
/// <br><br>
290
290
///
291
291
/// ```ignore
292
- /// fn _get_configuration_warning(&self, owner: &Node);
292
+ /// fn _get_configuration_warning(&self, owner: &Node) -> GodotString ;
293
293
/// ```
294
294
/// The string returned from this method is displayed as a warning in the Scene Dock if the script that overrides it is a tool script.
295
295
/// _See [Godot docs](https://docs.godotengine.org/en/stable/classes/class_node.html#class-node-method-get-configuration-warning) for more information._
@@ -310,21 +310,21 @@ pub fn profiled(meta: TokenStream, input: TokenStream) -> TokenStream {
310
310
/// <br><br>
311
311
///
312
312
/// ```ignore
313
- /// fn _input(&self, owner: &Node, event: InputEvent);
313
+ /// fn _input(&self, owner: &Node, event: Ref< InputEvent> );
314
314
/// ```
315
315
/// Called when there is an input event.
316
316
/// _See [Godot docs](https://docs.godotengine.org/en/stable/classes/class_node.html#class-node-method-input) for more information._
317
317
/// <br><br>
318
318
///
319
319
/// ```ignore
320
- /// fn _unhandled_input(&self, owner: &Node, event: InputEvent);
320
+ /// fn _unhandled_input(&self, owner: &Node, event: Ref< InputEvent> );
321
321
/// ```
322
322
/// Called when an `InputEvent` hasn't been consumed by `_input()` or any GUI.
323
323
/// _See [Godot docs](https://docs.godotengine.org/en/stable/classes/class_node.html#class-node-method-unhandled-input) for more information._
324
324
/// <br><br>
325
325
///
326
326
/// ```ignore
327
- /// fn _unhandled_key_input (&self, owner: &Node, event: InputKeyEvent);
327
+ /// fn _unhandled_key_input (&self, owner: &Node, event: Ref< InputKeyEvent> );
328
328
/// ```
329
329
/// Called when an `InputEventKey` hasn't been consumed by `_input()` or any GUI.
330
330
/// _See [Godot docs](https://docs.godotengine.org/en/stable/classes/class_node.html#class-node-method-unhandled-key-input) for more information._
@@ -349,7 +349,7 @@ pub fn profiled(meta: TokenStream, input: TokenStream) -> TokenStream {
349
349
/// <br><br>
350
350
///
351
351
/// ```ignore
352
- /// fn _gui_input(&self, owner: &Control, event: InputEvent);
352
+ /// fn _gui_input(&self, owner: &Control, event: Ref< InputEvent> );
353
353
/// ```
354
354
/// Use this method to process and accept inputs on UI elements.
355
355
/// _See [Godot docs](https://docs.godotengine.org/en/stable/classes/class_control.html#class-control-method-gui-input) for more information._
0 commit comments