2019-10-21 23:58:14 +02:00
|
|
|
tool
|
|
|
|
extends GraphNode
|
|
|
|
class_name MMGraphNodeBase
|
|
|
|
|
|
|
|
var generator : MMGenBase = null setget set_generator
|
|
|
|
|
|
|
|
func _ready() -> void:
|
|
|
|
connect("offset_changed", self, "_on_offset_changed")
|
|
|
|
|
2019-11-06 23:49:26 +01:00
|
|
|
func _draw() -> void:
|
2019-11-04 07:58:17 +01:00
|
|
|
if generator != null and generator.has_randomness():
|
|
|
|
var icon = preload("res://addons/material_maker/icons/randomness_locked.tres") if generator.is_seed_locked() else preload("res://addons/material_maker/icons/randomness_unlocked.tres")
|
2019-11-03 10:04:23 +01:00
|
|
|
draw_texture_rect(icon, Rect2(rect_size.x-48, 4, 16, 16), false)
|
2019-11-04 07:58:17 +01:00
|
|
|
if !is_connected("gui_input", self, "_on_gui_input"):
|
|
|
|
connect("gui_input", self, "_on_gui_input")
|
|
|
|
else:
|
|
|
|
if is_connected("gui_input", self, "_on_gui_input"):
|
|
|
|
disconnect("gui_input", self, "_on_gui_input")
|
2019-11-03 10:04:23 +01:00
|
|
|
|
2019-10-21 23:58:14 +02:00
|
|
|
func set_generator(g) -> void:
|
|
|
|
generator = g
|
|
|
|
|
|
|
|
func _on_offset_changed() -> void:
|
|
|
|
generator.set_position(offset)
|
2019-11-03 10:04:23 +01:00
|
|
|
|
2019-11-06 23:49:26 +01:00
|
|
|
func _on_gui_input(event) -> void:
|
2019-11-03 10:04:23 +01:00
|
|
|
if event is InputEventMouseButton and event.pressed and event.button_index == BUTTON_LEFT and Rect2(rect_size.x-48, 4, 16, 16).has_point(event.position):
|
2019-11-04 07:58:17 +01:00
|
|
|
generator.toggle_lock_seed()
|
2019-11-03 10:04:23 +01:00
|
|
|
update()
|