Skip to content

Commit 9caf978

Browse files
committed
Fix C# export plugin
1 parent 862656a commit 9caf978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ bool IsSharedObject(string fileName)
406406
{
407407
if (platform == OS.Platforms.iOS && path.EndsWith(".dat", StringComparison.OrdinalIgnoreCase))
408408
{
409-
AddIosBundleFile(path);
409+
AddAppleEmbeddedPlatformBundleFile(path);
410410
}
411411
else
412412
{
@@ -453,7 +453,7 @@ bool IsSharedObject(string fileName)
453453
throw new InvalidOperationException("Failed to generate xcframework.");
454454
}
455455

456-
AddIosEmbeddedFramework(xcFrameworkPath);
456+
AddAppleEmbeddedPlatformEmbeddedFramework(xcFrameworkPath);
457457
}
458458
}
459459

0 commit comments

Comments
 (0)