@@ -85,10 +85,10 @@ await Task.WhenAll(
8585#if DEBUG
8686 // await _threadWorkerView.Begin(cancellationToken =>
8787 // _applicationView.CUE4Parse.Extract(cancellationToken,
88- // "FortniteGame /Content/Athena/Apollo/Maps/UI/Apollo_Terrain_Minimap .uasset"));
88+ // "MyProject /Content/FirstPerson/Meshes/FirstPersonProjectileMesh .uasset"));
8989 // await _threadWorkerView.Begin(cancellationToken =>
9090 // _applicationView.CUE4Parse.Extract(cancellationToken,
91- // "FortniteGame /Content/Environments/Helios/Props/GlacierHotel/GlacierHotel_Globe_A/Meshes/SM_GlacierHotel_Globe_A .uasset"));
91+ // "RED /Content/Chara/ABA/Costume01/Animation/Charaselect/body/stand_body01 .uasset"));
9292#endif
9393 }
9494
@@ -208,7 +208,7 @@ private async void OnFolderTextureClick(object sender, RoutedEventArgs e)
208208 await _threadWorkerView . Begin ( cancellationToken => { _applicationView . CUE4Parse . TextureFolder ( cancellationToken , folder ) ; } ) ;
209209 FLogger . Append ( ELog . Information , ( ) =>
210210 {
211- FLogger . Text ( "Successfully saved " , Constants . WHITE ) ;
211+ FLogger . Text ( "Successfully saved textures from " , Constants . WHITE ) ;
212212 FLogger . Link ( folder . PathAtThisPoint , UserSettings . Default . TextureDirectory , true ) ;
213213 } ) ;
214214 }
@@ -219,6 +219,11 @@ private async void OnFolderModelClick(object sender, RoutedEventArgs e)
219219 if ( AssetsFolderName . SelectedItem is TreeItem folder )
220220 {
221221 await _threadWorkerView . Begin ( cancellationToken => { _applicationView . CUE4Parse . ModelFolder ( cancellationToken , folder ) ; } ) ;
222+ FLogger . Append ( ELog . Information , ( ) =>
223+ {
224+ FLogger . Text ( "Successfully saved models from " , Constants . WHITE ) ;
225+ FLogger . Link ( folder . PathAtThisPoint , UserSettings . Default . ModelDirectory , true ) ;
226+ } ) ;
222227 }
223228 }
224229
@@ -227,6 +232,11 @@ private async void OnFolderAnimationClick(object sender, RoutedEventArgs e)
227232 if ( AssetsFolderName . SelectedItem is TreeItem folder )
228233 {
229234 await _threadWorkerView . Begin ( cancellationToken => { _applicationView . CUE4Parse . AnimationFolder ( cancellationToken , folder ) ; } ) ;
235+ FLogger . Append ( ELog . Information , ( ) =>
236+ {
237+ FLogger . Text ( "Successfully saved animations from " , Constants . WHITE ) ;
238+ FLogger . Link ( folder . PathAtThisPoint , UserSettings . Default . ModelDirectory , true ) ;
239+ } ) ;
230240 }
231241 }
232242
0 commit comments