diff options
| author | mrawlingst <mrawlingst@gmail.com> | 2017-09-07 16:19:44 -0400 |
|---|---|---|
| committer | mrawlingst <mrawlingst@gmail.com> | 2017-09-07 16:19:44 -0400 |
| commit | 6aa5bc23470fbf82492a825663f3c13cde0d1323 (patch) | |
| tree | 469d754e26301e17bd3c6cdab52090c01b82561a /modules/gdnative/include | |
| parent | 0b8fa1e01068af9924742ade2625e021ccd2c5a8 (diff) | |
| download | redot-engine-6aa5bc23470fbf82492a825663f3c13cde0d1323.tar.gz | |
Change Color.to_32() to to_rgba32() and format as RGBA
Diffstat (limited to 'modules/gdnative/include')
| -rw-r--r-- | modules/gdnative/include/gdnative/color.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/include/gdnative/color.h b/modules/gdnative/include/gdnative/color.h index 90dccf75aa..14265466b9 100644 --- a/modules/gdnative/include/gdnative/color.h +++ b/modules/gdnative/include/gdnative/color.h @@ -69,9 +69,9 @@ godot_real godot_color_get_v(const godot_color *p_self); godot_string GDAPI godot_color_as_string(const godot_color *p_self); -godot_int GDAPI godot_color_to_32(const godot_color *p_self); +godot_int GDAPI godot_color_to_rgba32(const godot_color *p_self); -godot_int GDAPI godot_color_to_ARGB32(const godot_color *p_self); +godot_int GDAPI godot_color_to_argb32(const godot_color *p_self); godot_real GDAPI godot_color_gray(const godot_color *p_self); |
