diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-10-22 10:28:02 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-10-22 10:28:02 +0700 |
commit | bbab451dde5634db184dcef2d378973ae274429a (patch) | |
tree | dd79900e0be4fd42af2f0ad079df1ead20f8ce6e /scene/resources | |
parent | 50306041e5be9859bd448fe80a52be45694b6688 (diff) |
CubeMap: fix duplicate flags property
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/texture.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scene/resources/texture.cpp b/scene/resources/texture.cpp index 4b78950e9f..467f059fd3 100644 --- a/scene/resources/texture.cpp +++ b/scene/resources/texture.cpp @@ -1333,7 +1333,6 @@ void CubeMap::_bind_methods() { ClassDB::bind_method(D_METHOD("set_lossy_storage_quality", "quality"), &CubeMap::set_lossy_storage_quality); ClassDB::bind_method(D_METHOD("get_lossy_storage_quality"), &CubeMap::get_lossy_storage_quality); - ADD_PROPERTY(PropertyInfo(Variant::INT, "flags", PROPERTY_HINT_ENUM, "Mipmaps,Repeat,Filter,Default"), "set_flags", "get_flags"); ADD_PROPERTY(PropertyInfo(Variant::INT, "storage_mode", PROPERTY_HINT_ENUM, "Raw,Lossy Compressed,Lossless Compressed"), "set_storage", "get_storage"); ADD_PROPERTY(PropertyInfo(Variant::REAL, "lossy_storage_quality"), "set_lossy_storage_quality", "get_lossy_storage_quality"); |