Posts by André Luiz • 1 point
2 posts
-
0
votes3
answers334
viewsA: Problem in image rendering
This happens when resizing the image. I suggest to edit your image and save at the resolution that will use it. If it still doesn’t look the right way, the best thing to do is to draw it again in…
-
-1
votes2
answers1709
viewsA: There is an "Else while"
The way you wrote the code doesn’t exist Else javascript. I suggest rewriting your code another way, for example: while(i < 5){ //faça alguma coisa } if(i >= 5){ //faça outra couisa } I don’t…