mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 04:40:07 +08:00
11 lines
460 B
C#
11 lines
460 B
C#
namespace nadena.dev.ndmf.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>
|
|
public interface IOnCommitObjectRenames
|
|
{
|
|
void OnCommitObjectRenames(BuildContext buildContext, TrackObjectRenamesContext renameContext);
|
|
}
|
|
} |