Status: -7 days left until Inspire08 Back to the system code
I didn't have much time this week to work on this. But today I managed to do some work. Mainly on the font, and a font system which is now, more or less, ready. This is an R.
charData = new float[][]{{ -1, -1, -1, 1 },{ -1, 1, 1, 1 },{ 1, 1, 0, 0 },{ 0, 0, 1, -1 }};
Yes.. it took a bit to define all of them by hand... And this is how the Font system works so far:
Font.position.x = 1.85f;
Font.position.y = -0.1f;
Font.colour = new Colour(1,1,1);
Font.scale = 0.07f;
Font.writeSentence("ORBIT . XPLSV 2008");
Still need to add width, align and stuff like that. |