haxegon / zeedonk

Haxegon + Puzzlescript = Zeedonk!
http://www.zeedonk.net
12 stars 2 forks source link

changing font forces position to 0,0? #237

Closed increpare closed 9 years ago

increpare commented 9 years ago
function update(){
  Text.setfont(Font.C64);
  Text.display(50,50,"cat");
}

if you coment out the font line 'cat' displays in the correct place

increpare commented 9 years ago

oh, it's because it's missing a scale parameter. I think it should be ok to set a new font without setting the scale (it should keep the previous scale). What do you think?