diff options
| author | Juan Linietsky | 2015-05-27 10:56:57 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-05-27 10:56:57 -0300 |
| commit | 57a78ec06bccbb55a85c73891d88b983b4f01c94 (patch) | |
| tree | d58a965b25cf92971a8a59c8991b48d76ec68bde | |
| parent | 70edfcdc8d2b6fa6cd541cb3afb0f4ddd030b4bf (diff) | |
| download | godot-57a78ec06bccbb55a85c73891d88b983b4f01c94.tar.gz godot-57a78ec06bccbb55a85c73891d88b983b4f01c94.tar.zst godot-57a78ec06bccbb55a85c73891d88b983b4f01c94.zip | |
| -rw-r--r-- | core/variant.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/variant.cpp b/core/variant.cpp index d7817ac26..034dc2b4f 100644 --- a/core/variant.cpp +++ b/core/variant.cpp @@ -302,8 +302,8 @@ bool Variant::can_convert(Variant::Type p_type_from,Variant::Type p_type_to) { case COLOR: { static const Type valid[] = { - //STRING, - //INT, + STRING, + INT, NIL, }; @@ -1653,6 +1653,10 @@ Variant::operator Color() const { if (type==COLOR) return *reinterpret_cast<const Color*>(_data._mem); + else if (type==STRING) + return Color::html( operator String() ); + else if (type==INT) + return Color::hex( operator int() ); else return Color(); } |
