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 } )); }
public async ValueTask <decimal> getValue(AdvancedDynamicTexture host) { return(await EventHorizonBlazorInterop.Func <decimal>( new object[] { new string[] { this.___guid, "getValue" }, host } )); }
public decimal getValueInPixel(AdvancedDynamicTexture host, decimal refValue) { return(EventHorizonBlazorInterop.Func <decimal>( new object[] { new string[] { this.___guid, "getValueInPixel" }, host, refValue } )); }
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; }