From e27c5acedd4fee6016e365d41896b6820f9217bb Mon Sep 17 00:00:00 2001 From: Samuele Zolfanelli Date: Sat, 9 Jul 2022 19:29:49 +0200 Subject: [PATCH] Make Image.get_size() return a Vector2i instead of a Vector2 --- core/io/image.cpp | 4 ++-- core/io/image.h | 2 +- doc/classes/Image.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/io/image.cpp b/core/io/image.cpp index 473d70bd7c4..fa9a8ce81da 100644 --- a/core/io/image.cpp +++ b/core/io/image.cpp @@ -416,8 +416,8 @@ int Image::get_height() const { return height; } -Vector2 Image::get_size() const { - return Vector2(width, height); +Vector2i Image::get_size() const { + return Vector2i(width, height); } bool Image::has_mipmaps() const { diff --git a/core/io/image.h b/core/io/image.h index 6b323e5eb3f..53c867fe084 100644 --- a/core/io/image.h +++ b/core/io/image.h @@ -209,7 +209,7 @@ private: public: int get_width() const; ///< Get image width int get_height() const; ///< Get image height - Vector2 get_size() const; + Vector2i get_size() const; bool has_mipmaps() const; int get_mipmap_count() const; diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index 31bd938c403..458f18372ed 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -250,7 +250,7 @@ - + Returns the image's size (width and height).