OurSonic.SonicManager.drawLoading C# (CSharp) Method

drawLoading() private static method

private static drawLoading ( CanvasRenderingContext2D canvas ) : void
canvas System.Html.Media.Graphics.CanvasRenderingContext2D
return void
        private static void drawLoading(CanvasRenderingContext2D canvas)
        {
            canvas.FillStyle = "white";
            canvas.FillText("Loading...   " /*+ (this.inds.tc + this.inds.tp + this.inds.t) + " / " + (this.inds.total)*/, 95, 95);
            canvas.Restore();
            return;
        }