Jump to content

GUI glitch while adding multiple rectangles


foumfo
 Share

Recommended Posts

I've got a question: will the uriblob be scalable?

Meaning, when the window is resized will the image also be resized but without any quality degradation.

Plus I've been googling around for a way to convert my dynamic texture to URI and the only thing I've found is this by Deltakosh:

http://www.babylonjs-playground.com/#XZ1FP

I haven't a way yet to implement this code into mine, if its even possible

Link to comment
Share on other sites

  • 2 weeks later...

I ended up using this in order to create a svg istead of using canvas:

        var svg = document.querySelector('svg');
        var w = map.cells[0].length, h = map.cells.length;
        
        svg.setAttribute('viewbox', '0 0 ' + w * guiGen.cellSize + ' ' + h * guiGen.cellSize);
        for (var y = 0; y < h; y++) {
            for (var x = 0; x < w; x++) {
                if (map.cells[y][x] === 1) {
                    var fill = 'fill:rgb(0,0,0);'
                } 
                else {
                    var fill = 'fill:rgb(255,255,255);'
                }
                var svgns = "http://www.w3.org/2000/svg";
                var rectangle = document.createElementNS(svgns, 'rect');
                $(rectangle).attr({
                    x: x * guiGen.cellSize,
                    y: (h - y) * guiGen.cellSize,
                    width: guiGen.cellSize,
                    height: guiGen.cellSize,
                    style: fill
                });
                svg.appendChild(rectangle);
            }
        }

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...