2019-12-20 20:22:52 +00:00
|
|
|
extends Reference
|
|
|
|
class_name PaletteColor
|
2019-12-24 02:08:16 +00:00
|
|
|
|
|
|
|
func get_class():
|
|
|
|
return "PaletteColor"
|
|
|
|
func is_class(_name):
|
|
|
|
return _name == "PaletteColor" or .is_class(_name)
|
2019-12-20 20:22:52 +00:00
|
|
|
|
|
|
|
var color : Color = Color.black setget _set_color
|
|
|
|
var data : String = "" setget _set_data
|
|
|
|
var name : String = "no name"
|
|
|
|
|
|
|
|
func _init(new_color : Color = Color.black, new_name : String = "no name"):
|
|
|
|
self.color = new_color
|
|
|
|
self.name = new_name
|
|
|
|
|
|
|
|
func _set_color(new_value : Color) -> void:
|
|
|
|
color = new_value
|
|
|
|
data = color.to_html(true)
|
|
|
|
|
|
|
|
func _set_data(new_value : String) -> void:
|
|
|
|
data = new_value
|
|
|
|
color = Color(data)
|
|
|
|
|
|
|
|
func toDict() -> Dictionary:
|
|
|
|
var result = {
|
|
|
|
"data" : data,
|
|
|
|
"name" : name
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
|
2020-02-04 15:33:34 +00:00
|
|
|
func fromDict(input_dict : Dictionary): # -> PaletteColor
|
2019-12-20 20:22:52 +00:00
|
|
|
var result = get_script().new()
|
2019-12-24 02:08:16 +00:00
|
|
|
|
2019-12-20 20:22:52 +00:00
|
|
|
result.data = input_dict.data
|
|
|
|
result.name = input_dict.name
|
2019-12-24 02:08:16 +00:00
|
|
|
|
2019-12-20 20:22:52 +00:00
|
|
|
return result
|
|
|
|
|
2020-02-04 15:33:34 +00:00
|
|
|
func duplicate(): # -> PaletteColor
|
|
|
|
var copy = get_script().new() # : PaletteColor
|
2019-12-20 20:22:52 +00:00
|
|
|
copy.data = data
|
|
|
|
copy.name = name
|
2020-02-04 15:33:34 +00:00
|
|
|
return copy
|