minor comments
This commit is contained in:
parent
1e4841dc52
commit
8c91dadff7
2 changed files with 7 additions and 10 deletions
Binary file not shown.
|
@ -1,12 +1,11 @@
|
|||
|
||||
extends ColorPickerButton
|
||||
|
||||
# member variables here, example:
|
||||
# var a=2
|
||||
# var b="textvar"
|
||||
|
||||
#virtual function
|
||||
func get_drag_data(pos):
|
||||
|
||||
#use another control as drag preview
|
||||
#use another colorpicker as drag preview
|
||||
var cpb = ColorPickerButton.new()
|
||||
cpb.set_color( get_color() )
|
||||
cpb.set_size(Vector2(50,50))
|
||||
|
@ -14,14 +13,12 @@ func get_drag_data(pos):
|
|||
#return color as drag data
|
||||
return get_color()
|
||||
|
||||
#virtual function
|
||||
func can_drop_data(pos, data):
|
||||
return typeof(data)==TYPE_COLOR
|
||||
|
||||
#virtual function
|
||||
func drop_data(pos, data):
|
||||
set_color(data)
|
||||
|
||||
func _ready():
|
||||
# Initialization here
|
||||
pass
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue