mirror of
https://github.com/4sval/FModel.git
synced 2026-09-26 19:17:46 -05:00
fuck you bones position
that's a problem for future me
This commit is contained in:
@@ -72,6 +72,13 @@ public class CUE4ParseViewModel : ViewModel
|
||||
set => SetProperty(ref _modelIsOverwritingMaterial, value);
|
||||
}
|
||||
|
||||
private bool _modelIsWaitingAnimation;
|
||||
public bool ModelIsWaitingAnimation
|
||||
{
|
||||
get => _modelIsWaitingAnimation;
|
||||
set => SetProperty(ref _modelIsWaitingAnimation, value);
|
||||
}
|
||||
|
||||
private Snooper _snooper;
|
||||
public Snooper SnooperViewer
|
||||
{
|
||||
@@ -790,6 +797,12 @@ public class CUE4ParseViewModel : ViewModel
|
||||
SnooperViewer.Run();
|
||||
return true;
|
||||
}
|
||||
case UAnimSequence a when ModelIsWaitingAnimation:
|
||||
{
|
||||
SnooperViewer.Renderer.Animate(a);
|
||||
SnooperViewer.Run();
|
||||
return true;
|
||||
}
|
||||
case UStaticMesh when UserSettings.Default.SaveStaticMeshes:
|
||||
case USkeletalMesh when UserSettings.Default.SaveSkeletalMeshes:
|
||||
case UMaterialInstance when UserSettings.Default.SaveMaterials:
|
||||
|
||||
Reference in New Issue
Block a user