Merge pull request #70808 from jamesmintram/james/bug/fix-placeholder-tex-size-binding

Fixes https://github.com/godotengine/godot/issues/70735
This commit is contained in:
Yuri Rubinsky 2023-01-01 20:51:32 +03:00 committed by GitHub
commit 57267709e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3386,7 +3386,7 @@ RID PlaceholderTexture2D::get_rid() const {
void PlaceholderTexture2D::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_size", "size"), &PlaceholderTexture2D::set_size);
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2I, "size", PROPERTY_HINT_NONE, "suffix:px"), "set_size", "get_size");
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "size", PROPERTY_HINT_NONE, "suffix:px"), "set_size", "get_size");
}
PlaceholderTexture2D::PlaceholderTexture2D() {