mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-23 02:44:37 -05:00
81 lines
2.6 KiB
C#
81 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using UniGLTF;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
using VRMShaders;
|
|
|
|
|
|
namespace VRM
|
|
{
|
|
#if !VRM_STOP_ASSETPOSTPROCESSOR
|
|
public class vrmAssetPostprocessor : AssetPostprocessor
|
|
{
|
|
static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
|
|
{
|
|
foreach (string path in importedAssets)
|
|
{
|
|
if (UnityPath.FromUnityPath(path).IsStreamingAsset)
|
|
{
|
|
Debug.LogFormat("Skip StreamingAssets: {0}", path);
|
|
continue;
|
|
}
|
|
|
|
var ext = Path.GetExtension(path).ToLower();
|
|
if (ext == ".vrm")
|
|
{
|
|
try
|
|
{
|
|
ImportVrm(UnityPath.FromUnityPath(path));
|
|
}
|
|
catch (NotVrm0Exception)
|
|
{
|
|
// is not vrm0
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void ImportVrm(UnityPath vrmPath)
|
|
{
|
|
if (!vrmPath.IsUnderAssetsFolder)
|
|
{
|
|
throw new Exception();
|
|
}
|
|
|
|
var data = new GlbFileParser(vrmPath.FullPath).Parse();
|
|
var vrm = new VRMData(data);
|
|
|
|
var prefabPath = vrmPath.Parent.Child(vrmPath.FileNameWithoutExtension + ".prefab");
|
|
|
|
Action<IEnumerable<UnityPath>> onCompleted = texturePaths =>
|
|
{
|
|
var map = texturePaths
|
|
.Select(x => x.LoadAsset<Texture>())
|
|
.ToDictionary(x => new SubAssetKey(x), x => x as UnityEngine.Object);
|
|
|
|
using (var context = new VRMImporterContext(vrm, externalObjectMap: map))
|
|
{
|
|
var editor = new VRMEditorImporterContext(context, prefabPath);
|
|
foreach (var textureInfo in context.TextureDescriptorGenerator.Get().GetEnumerable())
|
|
{
|
|
VRMShaders.TextureImporterConfigurator.Configure(textureInfo, context.TextureFactory.ExternalTextures);
|
|
}
|
|
var loaded = context.Load();
|
|
editor.SaveAsAsset(loaded);
|
|
}
|
|
};
|
|
|
|
// extract texture images
|
|
using (var context = new VRMImporterContext(vrm))
|
|
{
|
|
var editor = new VRMEditorImporterContext(context, prefabPath);
|
|
editor.ConvertAndExtractImages(onCompleted);
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
}
|