public async ValueTask updateCount(decimal count, IMultiRenderTargetOptions options = null)
 {
     await EventHorizonBlazorInterop.Func <CachedEntity>(
         new object[]
     {
         new string[] { this.___guid, "updateCount" }, count, options
     }
         );
 }
        public static async ValueTask <MultiRenderTarget> NewMultiRenderTarget(
            string name, object size, decimal count, Scene scene, IMultiRenderTargetOptions options = null
            )
        {
            var entity = await EventHorizonBlazorInterop.New(
                new string[] { "BABYLON", "MultiRenderTarget" },
                name, size, count, scene, options
                );

            return(new MultiRenderTarget(entity));
        }
        public MultiRenderTarget(
            string name, object size, decimal count, Scene scene, IMultiRenderTargetOptions options = null
            ) : base()
        {
            var entity = EventHorizonBlazorInterop.New(
                new string[] { "BABYLON", "MultiRenderTarget" },
                name, size, count, scene, options
                );

            ___guid = entity.___guid;
        }