2020-05-21 17:13:19 +00:00
|
|
|
extends ViewportContainer
|
|
|
|
|
2021-11-22 16:43:06 +00:00
|
|
|
|
|
|
|
func _ready() -> void:
|
2021-02-02 15:29:19 +00:00
|
|
|
material = CanvasItemMaterial.new()
|
|
|
|
material.blend_mode = CanvasItemMaterial.BLEND_MODE_PREMULT_ALPHA
|
2020-05-21 17:13:19 +00:00
|
|
|
|
2021-11-22 16:43:06 +00:00
|
|
|
|
2020-05-21 17:13:19 +00:00
|
|
|
func _on_ViewportContainer_mouse_entered() -> void:
|
|
|
|
Global.has_focus = true
|
2021-11-23 00:36:22 +00:00
|
|
|
Global.left_cursor.visible = Global.show_left_tool_icon
|
|
|
|
Global.right_cursor.visible = Global.show_right_tool_icon
|
2020-05-21 17:13:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
func _on_ViewportContainer_mouse_exited() -> void:
|
|
|
|
Global.has_focus = false
|
2021-11-22 16:43:06 +00:00
|
|
|
Global.left_cursor.visible = false
|
|
|
|
Global.right_cursor.visible = false
|