I'm using the twopointfive plugin and I'm having problems figuring out how to draw text above an entity enemy. I'm currently calling font.draw() within `draw()` of my entity class:

	draw: function() {
		this.parent();
		this.font.draw("hello world", this.pos.x, this.pos.y, ig.Font.ALIGN.LEFT );
	},

This draws the text but it shows up upside down, back to front, and outside of the map (I have to turn on wireframe rendering to see the text).

Any help on how to do this properly?