Different Fonts At The Same Time?


Quiest

I like turtles!
Joined
Sep 2, 2004
Messages
3,411
Age
40
Location
Dteuschland ;)
Okay, this first:

Code:
process uglyfontcode();
 private
  font1;
  font2; 

 begin
  font1=load_fnt("font1.fnt");
  font2=load_fnt("font2.fnt");

  write(font1,100,100,0, "BLABLABLA");
  write(font2,100,110,0, "Another BLA");

  loop
    frame;
   end;
  end;

Its just an example of how I basically use 2 diff. fonts at the same time.
No, font1 is, lets say, yellow with red shadow, and font2 is white with black shadow.
But font2 is not displayed, correct, it just uses the same colors as font1.

(16bit mode, btw)

Is this normal, or am I doing something wrong?
 
Quiest posted on May 12 2005 at 11:33 AM said:
Okay at this first:

Code:
process uglyfontcode();
 private
  font1;
  font2; 

 begin
  font1=load_fnt("font1.fnt");
  font2=load_fnt("font2.fnt");

  write(font1,100,100,0, "BLABLABLA");
  write(font2,100,110,0, "Another BLA");

  loop
    frame;
   end;
  end;

Its just an example of how I basically use 2 diff. fonts at the same time.
No, font1 is, lets say, yellow with red shadow, and font2 is white with black shadow.
But font2 is not displayed, correct, it just uses the same colors as font1.

(16bit mode, btw)

Is this normal, or am I doing something wrong?
I forgot to reply that in the PM, sorry! It happens the same to me in 16 bit, but dunno what happens in 8 bit (I didn't needed different font colors :D)
 
Last edited by a moderator:
Back
Top