Преглед на файлове

Merge pull request #77198 from paulloz/dotnet-fix-real-t-is-double

Link the right build property to REAL_T_IS_DOUBLE
Yuri Sizov преди 2 години
родител
ревизия
dca343aabb
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs

+ 2 - 2
modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs

@@ -270,7 +270,7 @@ namespace GodotTools.Build
                 buildInfo.CustomProperties.Add($"GodotTargetPlatform={platform}");
 
             if (Internal.GodotIsRealTDouble())
-                buildInfo.CustomProperties.Add("GodotRealTIsDouble=true");
+                buildInfo.CustomProperties.Add("GodotFloat64=true");
 
             return buildInfo;
         }
@@ -288,7 +288,7 @@ namespace GodotTools.Build
             buildInfo.CustomProperties.Add($"GodotTargetPlatform={platform}");
 
             if (Internal.GodotIsRealTDouble())
-                buildInfo.CustomProperties.Add("GodotRealTIsDouble=true");
+                buildInfo.CustomProperties.Add("GodotFloat64=true");
 
             return buildInfo;
         }