1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

fixed ColorArray constructor when taking array as parameter

This commit is contained in:
romulox_x
2015-04-27 14:45:54 -07:00
parent 0adca0a7c9
commit 79c36ea5f7

View File

@@ -1032,7 +1032,7 @@ Variant Variant::construct(const Variant::Type p_type,const Variant** p_args,int
case STRING_ARRAY: return (StringArray(*p_args[0]));
case VECTOR2_ARRAY: return (Vector2Array(*p_args[0])); // 25
case VECTOR3_ARRAY: return (Vector3Array(*p_args[0])); // 25
case COLOR_ARRAY: return (Color(*p_args[0]));
case COLOR_ARRAY: return (ColorArray(*p_args[0]));
default: return Variant();
}
}