mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-21 13:03:13 +00:00
Fix guides not working properly when the UI is scaled
This commit is contained in:
parent
a3e11701b2
commit
3b7ac1eddf
1 changed files with 4 additions and 1 deletions
|
@ -16,7 +16,10 @@ func _ready() -> void:
|
||||||
|
|
||||||
|
|
||||||
func _input(_event : InputEvent):
|
func _input(_event : InputEvent):
|
||||||
mouse_pos = get_local_mouse_position()
|
var tmp_transform = get_canvas_transform().affine_inverse()
|
||||||
|
var tmp_position = Global.main_viewport.get_local_mouse_position()
|
||||||
|
mouse_pos = tmp_transform.basis_xform(tmp_position) + tmp_transform.origin
|
||||||
|
|
||||||
if points.size() < 2:
|
if points.size() < 2:
|
||||||
return
|
return
|
||||||
var point0 := points[0]
|
var point0 := points[0]
|
||||||
|
|
Loading…
Add table
Reference in a new issue