public async ValueTask <Effect> setColor4(string uniformName, IColor3Like color3, decimal alpha)
 {
     return(await EventHorizonBlazorInterop.FuncClass <Effect>(
                entity => new Effect()
     {
         ___guid = entity.___guid
     },
                new object[]
     {
         new string[] { this.___guid, "setColor4" }, uniformName, color3, alpha
     }
                ));
 }
 public Effect setColor3(string uniformName, IColor3Like color3)
 {
     return(EventHorizonBlazorInterop.FuncClass <Effect>(
                entity => new Effect()
     {
         ___guid = entity.___guid
     },
                new object[]
     {
         new string[] { this.___guid, "setColor3" }, uniformName, color3
     }
                ));
 }