Пример #1
0
 public async ValueTask <string> toString(AdvancedDynamicTexture host, System.Nullable <decimal> decimals = null)
 {
     return(await EventHorizonBlazorInterop.Func <string>(
                new object[]
     {
         new string[] { this.___guid, "toString" }, host, decimals
     }
                ));
 }
Пример #2
0
 public async ValueTask <decimal> getValue(AdvancedDynamicTexture host)
 {
     return(await EventHorizonBlazorInterop.Func <decimal>(
                new object[]
     {
         new string[] { this.___guid, "getValue" }, host
     }
                ));
 }
Пример #3
0
 public decimal getValueInPixel(AdvancedDynamicTexture host, decimal refValue)
 {
     return(EventHorizonBlazorInterop.Func <decimal>(
                new object[]
     {
         new string[] { this.___guid, "getValueInPixel" }, host, refValue
     }
                ));
 }
Пример #4
0
        public static async ValueTask <Style> NewStyle(
            AdvancedDynamicTexture host
            )
        {
            var entity = await EventHorizonBlazorInterop.New(
                new string[] { "BABYLON", "GUI", "Style" },
                host
                );

            return(new Style(entity));
        }
        public Style(
            AdvancedDynamicTexture host
            ) : base()
        {
            var entity = EventHorizonBlazorInterop.New(
                new string[] { "BABYLON", "GUI", "Style" },
                host
                );

            ___guid = entity.___guid;
        }