Search found 2 matches

by LaVerne
Sun Dec 05, 2004 10:57 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: TrueType font Support by FreeType Library
Replies: 183
Views: 126425

Hi,

great work, zgock! I only have one significant problem: AntiAlias only works fine with DirectX8, using DirectX9 or OpenGL results in fuzzy font which is a bit thicker than it's original, but doesn't look AA'd (using irrlicht 0.7.1). Anybody who had the same problems or anybody who figured this ...
by LaVerne
Sat Sep 11, 2004 7:05 am
Forum: Beginners Help
Topic: fade in/out
Replies: 3
Views: 660

I am a bloody beginner with C++ and Irrlicht, but I think your problem sounds familiar:


// Create a fader
gui::IGUIInOutFader* fader = device->getGUIEnvironment()->addInOutFader();

// Set the initial color to fade from to black
fader->setColor(video::SColor(0,0,0,0));

// Fade
fader->fadeOut ...