public static Animator CreateAnimator
     (this ImmutableList <IAnimationSection> animationSections,
     IRenderable child,
     IObserver <AnimationData> renderObserver = null)
 {
     return(animationSections.CreateAnimator(ImmutableList.Create(child), renderObserver));
 }
예제 #2
0
 public static Animator CreateAnimator
     (this ImmutableList <IAnimationSection> animationSections,
     IRenderer child)
 {
     return(animationSections.CreateAnimator(ImmutableList.Create(child)));
 }