minor comments

This commit is contained in:
Juan Linietsky 2015-03-22 13:01:34 -03:00
parent 1e4841dc52
commit 8c91dadff7
2 changed files with 7 additions and 10 deletions

View File

@ -1,27 +1,24 @@
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))
set_drag_preview(cpb)
#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