2023-09-24 13:37:10 +08:00
|
|
|
|
#region
|
|
|
|
|
|
|
|
|
|
using nadena.dev.ndmf;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
namespace nadena.dev.modular_avatar.animation
|
2023-09-17 17:16:27 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This interface tags components which supply additional animation controllers for merging. They will be given
|
|
|
|
|
/// an opportunity to apply animation path updates when the TrackObjectRenamesContext is committed.
|
|
|
|
|
/// </summary>
|
2023-09-24 13:37:10 +08:00
|
|
|
|
internal interface IOnCommitObjectRenames
|
2023-09-17 17:16:27 +08:00
|
|
|
|
{
|
2023-09-30 23:09:43 +08:00
|
|
|
|
void OnCommitObjectRenames(BuildContext buildContext, PathMappings renameContext);
|
2023-09-17 17:16:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|