From ec7b481170dcd6a7b4cf0e6c1221e204ff7945f3 Mon Sep 17 00:00:00 2001 From: Marcus Elg Date: Sun, 10 May 2020 09:00:10 +0200 Subject: Renamed plane's d to distance --- core/io/resource_format_binary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/io/resource_format_binary.cpp') diff --git a/core/io/resource_format_binary.cpp b/core/io/resource_format_binary.cpp index 8c7559479b..5907143810 100644 --- a/core/io/resource_format_binary.cpp +++ b/core/io/resource_format_binary.cpp @@ -214,7 +214,7 @@ Error ResourceLoaderBinary::parse_variant(Variant &r_v) { v.normal.x = f->get_real(); v.normal.y = f->get_real(); v.normal.z = f->get_real(); - v.d = f->get_real(); + v.distance = f->get_real(); r_v = v; } break; case VARIANT_QUAT: { @@ -1458,7 +1458,7 @@ void ResourceFormatSaverBinaryInstance::write_variant(FileAccess *f, const Varia f->store_real(val.normal.x); f->store_real(val.normal.y); f->store_real(val.normal.z); - f->store_real(val.d); + f->store_real(val.distance); } break; case Variant::QUAT: { -- cgit v1.2.3