javascript - Tileset for HTML5 canvas game - Stack Overflow

I'm trying to make a game in HTML5 canvas, but instead of uploading a ton of images I want to just

I'm trying to make a game in HTML5 canvas, but instead of uploading a ton of images I want to just upload one image that has all of the tiles on it. The problem is, I don't know how to make only one part of the image show up. Basically I want to do what Google does with this image: .png except with fixed height/width tiles. Can someone explain to me how to do this? Also, if it's different in canvas than in a regular html page without canvas, how would I do it in canvas?

I'm trying to make a game in HTML5 canvas, but instead of uploading a ton of images I want to just upload one image that has all of the tiles on it. The problem is, I don't know how to make only one part of the image show up. Basically I want to do what Google does with this image: http://www.google./images/srpr/nav_logo27.png except with fixed height/width tiles. Can someone explain to me how to do this? Also, if it's different in canvas than in a regular html page without canvas, how would I do it in canvas?

Share Improve this question edited Jan 15, 2014 at 23:23 SamB 9,2385 gold badges51 silver badges57 bronze badges asked Dec 11, 2010 at 23:16 AnonymousAnonymous 1,8937 gold badges23 silver badges29 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 13

You can use the slicing parameters of drawImage

drawImage(image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight)

  • sx, sy: left and top offset of the part to be sliced
  • sWidth, sHeight: dimensions of the part to be sliced
  • dx, dy: left and top offset for the image on the canvas to be rendered at
  • dWidth, dHeight: image dimensions on the canvas

More info at: Using images - Slicing (MDC)

Take a look at SpriteJS https://github./batiste/sprite.js/blob/master/sprite.js there the work is based on offset at the moment of drawing the sprite from a single picture.

This is how I do it with GWT: http://code.google./p/gwt-examples/wiki/gwt_hmtl5

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743698862a4492224.html

相关推荐

  • javascript - Tileset for HTML5 canvas game - Stack Overflow

    I'm trying to make a game in HTML5 canvas, but instead of uploading a ton of images I want to just

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信