iceherosubzero Posted December 18, 2014 Share Posted December 18, 2014 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 normalbmd.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 spritevar sprite = game.add.sprite(200, 200, bmd); Quote Link to comment Share on other sites More sharing options...
iceherosubzero Posted December 23, 2014 Author Share Posted December 23, 2014 Problem Solved. Was using an older version of Phaser api. Updating to the latest version solved the error. Thanks. tidelake 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.