I know that Phaser is a 2D engine but I'm wondering if there might be some way to render 3D into a Sprite or DisplayObject? Our game would benefit from having a simple 3D element (a texture mapped wheel). It wouldn't work to do canned spritesheet animations for this case. Are the popular engines threejs and Babylon flexible enough to render into a Bitmap - or some other object that I can use as a texture for a Phaser sprite? Or perhaps some other way? Does Phaser offer a way to do a bitmap fil
You could use three.js, which can render to a canvas. It could render to a 'hidden' (i.e. not on the dom) canvas which you use as a Phaser sprite texture. Kinda overkill, but would certainly work I reckon.