You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
- Been using Jrrlicht for some time now, and was wondering if there is a way to mask text in an IGUIEditBox. I'm creating an online game that requires login/password and can't quite figure out how to mask the text so the user sees an echo character. I found a bunch of information on password masking in JFrame and in the Command line at:
"http://java.sun.com/developer/technical ... pwordmask/", but not sure if irrlicht has the capability.
- Also wondering about the ability to tab for formating issues. I've been trying to format a IGUIListBox with spaces and keep running into dead ends, because the letters are different sizes. If irrlicht supported tabs it would make formating a whole bunch easier... Any help or information would be greatly appreciated.
You could make a custom font with all characters just "*"
as each fonts just a bmp file just open it up in your editor and cut and paste the star over all the other characters.
Awsome! got the password masking working, created my own text bmp. Thanks a whole bunch ... now I just need to figure out how to format my lists correctly. Perhaps I'll have to use all lowercase letters, or all uppercase letters to get them to align up.. Thanks agian