mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-12-25 01:17:10 +01:00
Also fixed the gradient editor popup thing.
This commit is contained in:
parent
48f5fbfcbb
commit
7157df772c
@ -199,7 +199,7 @@ func _gui_input(ev) -> void:
|
||||
var popup_size = popup.rect_size
|
||||
popup.popup(Rect2(ev.global_position, Vector2(0, 0)))
|
||||
popup.set_global_position(ev.global_position-Vector2(popup_size.x / 2, popup_size.y))
|
||||
popup.init(value)
|
||||
popup.init(value, graph_node, _undo_redo)
|
||||
popup.connect("updated", self, "set_value")
|
||||
popup.connect("popup_hide", popup, "queue_free")
|
||||
|
||||
|
@ -3,7 +3,9 @@ extends Popup
|
||||
|
||||
signal updated(value)
|
||||
|
||||
func init(value) -> void:
|
||||
func init(value, graph_node, undo_redo) -> void:
|
||||
$Panel/Control.set_undo_redo(undo_redo)
|
||||
$Panel/Control.graph_node = graph_node
|
||||
$Panel/Control.set_value(value)
|
||||
|
||||
func _on_Control_updated(value) -> void:
|
||||
|
Loading…
Reference in New Issue
Block a user