예제 #1
0
 public async ValueTask <AnimationGroup> syncAllAnimationsWith(Animatable root)
 {
     return(await EventHorizonBlazorInterop.FuncClass <AnimationGroup>(
                entity => new AnimationGroup()
     {
         ___guid = entity.___guid
     },
                new object[]
     {
         new string[] { this.___guid, "syncAllAnimationsWith" }, root
     }
                ));
 }
 public Animatable syncWith(Animatable root)
 {
     return(EventHorizonBlazorInterop.FuncClass <Animatable>(
                entity => new Animatable()
     {
         ___guid = entity.___guid
     },
                new object[]
     {
         new string[] { this.___guid, "syncWith" }, root
     }
                ));
 }
 public async ValueTask <Animatable> get_syncRoot()
 {
     if (__syncRoot == null)
     {
         __syncRoot = await EventHorizonBlazorInterop.GetClass <Animatable>(
             this.___guid,
             "syncRoot",
             (entity) =>
         {
             return(new Animatable()
             {
                 ___guid = entity.___guid
             });
         }
             );
     }
     return(__syncRoot);
 }