Jump to content

Sprite From Bitmapdata giving error


iceherosubzero
 Share

Recommended Posts

Hello All,

 

I tried to create this sample code for my game but its giving me error 

 

http://examples.phaser.io/_site/view_full.html?d=sprites&f=sprite+from+bitmapdata.js&t=sprite%20from%20bitmapdata

 

on the line beginPath();

 

with error Uncaught TypeError: Cannot read property 'beginPath' of undefined

 

 

var bmd = game.add.bitmapData(128,128);

// draw to the canvas context like normal
bmd.ctx.beginPath();
bmd.ctx.rect(0,0,128,128);
bmd.ctx.fillStyle = '#ff0000';
bmd.ctx.fill();

// use the bitmap data as the texture for the sprite
var sprite = game.add.sprite(200, 200, bmd);

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...