mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
Merge pull request #14475 from volzhs/mouse_position
Fix mouse position in viewport
This commit is contained in:
commit
f09e2cf094
@ -1269,12 +1269,9 @@ Transform2D Viewport::_get_input_pre_xform() const {
|
||||
|
||||
Vector2 Viewport::_get_window_offset() const {
|
||||
|
||||
/*
|
||||
if (parent_control) {
|
||||
return (parent_control->get_viewport()->get_final_transform() * parent_control->get_global_transform_with_canvas()).get_origin();
|
||||
if (get_parent() && get_parent()->has_method("get_global_position")) {
|
||||
return get_parent()->call("get_global_position");
|
||||
}
|
||||
*/
|
||||
|
||||
return Vector2();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user