ippa / jaws

Jaws - HTML5 canvas javascript 2D Game Framework
https://jawsjs.ippa.se
GNU Lesser General Public License v3.0
364 stars 75 forks source link

Text: Fixed position bug; added shadow effects #83

Closed videlais closed 11 years ago

videlais commented 11 years ago

I've been using Text a great deal more for descriptions of things in the adventure game I'm working on and noticed that the positioning kept being slightly off. After working with it some, I found out the initial translate to its x and y was then pushing the final fillText call off by the difference between the origin and the translate. (The problem is fixed by removing the translate.)

I've also added shadow effects to Text. While any canvas drawing call can use them, they work much better (and have a more general use case) for drawing text than for sprites or even lines.