Merge pull request #61591 from fire-forge/gt2d_get_data

[3.x] Fix `get_data()` for GradientTexture2D
This commit is contained in:
Rémi Verschelde 2022-06-01 08:59:49 +02:00 committed by GitHub
commit e9d3748e93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -2021,7 +2021,7 @@ RID GradientTexture2D::get_rid() const {
return texture; return texture;
} }
Ref<Image> GradientTexture2D::get_image() const { Ref<Image> GradientTexture2D::get_data() const {
if (!texture.is_valid()) { if (!texture.is_valid()) {
return Ref<Image>(); return Ref<Image>();
} }

View file

@ -716,7 +716,7 @@ public:
virtual RID get_rid() const; virtual RID get_rid() const;
virtual bool has_alpha() const { return true; } virtual bool has_alpha() const { return true; }
virtual Ref<Image> get_image() const; virtual Ref<Image> get_data() const;
GradientTexture2D(); GradientTexture2D();
virtual ~GradientTexture2D(); virtual ~GradientTexture2D();