mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 04:40:07 +08:00
c9c9701e1d
This API is still a bit unstable; it'll probably be added in a future release.
17 lines
517 B
C#
17 lines
517 B
C#
#region
|
|
|
|
using nadena.dev.ndmf;
|
|
|
|
#endregion
|
|
|
|
namespace nadena.dev.modular_avatar.animation
|
|
{
|
|
/// <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>
|
|
internal interface IOnCommitObjectRenames
|
|
{
|
|
void OnCommitObjectRenames(BuildContext buildContext, TrackObjectRenamesContext renameContext);
|
|
}
|
|
} |