Skip to content

Commit

Permalink
Minor Fix/Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-phazer committed Dec 10, 2024
1 parent 2aae08c commit c254e16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ public void Import(GltfImporterSettings settings)

var packFileImported = new PackFile(importedFileName, new MemorySource(bytesRmv2));

var newFile = new NewPackFileEntry(settings.destinationPackNode.GetFullPath(), packFileImported);
_packFileService.AddFilesToPack(settings.destinationPackNode.FileOwner, [newFile]);
var newFile = new NewPackFileEntry(settings.DestinationPackPath, packFileImported);
_packFileService.AddFilesToPack(settings.DestinationPackFileContainer, [newFile]);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Editors.ImportExport.Importing.Importers.GltfToRmv.Helper;
using System.IO;
using Shared.Core.PackFiles;
using Shared.Ui.BaseDialogs.PackFileTree;
using Shared.Ui.BaseDialogs.PackFileBrowser;
using static Shared.Core.PackFiles.IPackFileService;
using Shared.Core.ErrorHandling.Exceptions;
using Shared.Core.Services;
Expand Down

0 comments on commit c254e16

Please sign in to comment.