mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-23 12:04:16 -04:00
support export MovieTexture
This commit is contained in:
@ -1103,13 +1103,9 @@ namespace Unity_Studio
|
||||
#endregion
|
||||
#region VideoClip
|
||||
case 329:
|
||||
case 152: //MovieTexture
|
||||
{
|
||||
var str = asset.ViewStruct();
|
||||
if (str != null)
|
||||
{
|
||||
textPreviewBox.Text = str;
|
||||
textPreviewBox.Visible = true;
|
||||
}
|
||||
StatusStripUpdate("Only supported export.");
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
@ -1619,6 +1615,12 @@ namespace Unity_Studio
|
||||
exportedCount++;
|
||||
}
|
||||
break;
|
||||
case 152: //MovieTexture
|
||||
if (ExportMovieTexture(asset, exportpath))
|
||||
{
|
||||
exportedCount++;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if (ExportRawFile(asset, exportpath))
|
||||
{
|
||||
|
Reference in New Issue
Block a user