mirror of
https://github.com/godotengine/godot.git
synced 2026-03-03 20:55:48 +00:00
Variant: Rename Type::_RID to Type::RID
The underscore prefix was used to avoid the conflict between the `RID` class name and the matching enum value in `Variant::Type`. This can be fixed differently by prefixing uses of the `RID` class in `Variant` with the scope resolution operator, as done already for `AABB`.
This commit is contained in:
@@ -1467,7 +1467,7 @@ void ResourceFormatSaverBinaryInstance::write_variant(FileAccess *f, const Varia
|
||||
}
|
||||
|
||||
} break;
|
||||
case Variant::_RID: {
|
||||
case Variant::RID: {
|
||||
f->store_32(VARIANT_RID);
|
||||
WARN_PRINT("Can't save RIDs.");
|
||||
RID val = p_property;
|
||||
|
||||
Reference in New Issue
Block a user