mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 02:35:06 +08:00
d297cf1cad
* chore(i18n): initial integration with NDMF localization system * feat(error): integrate with NDMF error reporting framework Note that as part of this, the pre-build validation system has been disabled for now. It didn't work very well with other NDMF plugins in the first place, so it's probably for the best... * chore: fix u2019 build errors
26 lines
671 B
C#
26 lines
671 B
C#
using System;
|
|
using nadena.dev.ndmf;
|
|
using nadena.dev.modular_avatar.editor.ErrorReporting;
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor
|
|
{
|
|
internal class ModularAvatarContext : IExtensionContext
|
|
{
|
|
private IDisposable toDispose;
|
|
internal BuildContext BuildContext { get; private set; }
|
|
|
|
public void OnActivate(ndmf.BuildContext context)
|
|
{
|
|
if (BuildContext == null)
|
|
{
|
|
BuildContext = new BuildContext(context);
|
|
}
|
|
}
|
|
|
|
public void OnDeactivate(ndmf.BuildContext context)
|
|
{
|
|
toDispose?.Dispose();
|
|
toDispose = null;
|
|
}
|
|
}
|
|
} |