No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ColourPicker.gd 315B

12345678910111213141516
  1. tool
  2. extends HBoxContainer
  3. var colour : Color
  4. var title : String setget set_title
  5. var index : int
  6. onready var colour_picker := $TODOColourPickerButton
  7. func _ready() -> void:
  8. $TODOColourPickerButton.color = colour
  9. $Label.text = title
  10. func set_title(value: String) -> void:
  11. title = value
  12. $Label.text = value