Search found 45 matches

by Watcher
Sat Dec 16, 2006 5:56 pm
Forum: Bug reports
Topic: irrlicht 1.2 - x model shows twice
Replies: 5
Views: 530

by Watcher
Tue Dec 12, 2006 6:53 pm
Forum: Bug reports
Topic: irrlicht 1.2 - x model shows twice
Replies: 5
Views: 530

irrlicht 1.2 - x model shows twice

Hi I loaded my animated x model created in 3ds max 8 and exported with Panda exporter into mesh viewer and model showed twice. One copy is correct and the second is shown without deformated bones. In irrlicht 1.1 this bug isn´t.
by Watcher
Sun Nov 19, 2006 7:14 pm
Forum: Off-topic
Topic: MView
Replies: 5
Views: 975

Link works thank you.
by Watcher
Sun Nov 19, 2006 3:02 pm
Forum: Off-topic
Topic: MView
Replies: 5
Views: 975

MView

Hi should somebody upload me a MView application? The last version of DirectX SDK with MView included was I think August 2005 and I haven´t found so old version on the net.
by Watcher
Sat Nov 11, 2006 6:23 pm
Forum: Beginners Help
Topic: Direction!?
Replies: 8
Views: 2096

I thing that a good way is to create a fps camera (it has function seTarget) and set set your node as a child.
by Watcher
Sat Nov 11, 2006 3:23 pm
Forum: Beginners Help
Topic: converting text from EditBox
Replies: 5
Views: 426

Well I think than my main problem is in sending wchar_t to server and back. Please, have a look at my code. client side if you press enter wchar_t temptext[256]; wcscpy(temptext, editbox->getText()); listbox->addItem(temptext); myConnection.SendZprava(temptext); sending text to server void SendZprav...
by Watcher
Sat Nov 11, 2006 8:42 am
Forum: Beginners Help
Topic: converting text from EditBox
Replies: 5
Views: 426

Oh thanks. But can you tell me please how to cenver const wchar_t* to wchar_t*?
by Watcher
Fri Nov 10, 2006 4:24 pm
Forum: Beginners Help
Topic: converting text from EditBox
Replies: 5
Views: 426

converting text from EditBox

Hi I have a problem with converting text from EditBox to const wchar_t* . It seems to me, that const wchar_t* text = editbox->getText() doesn´t work correctly. I´m trying to make a chat for my multiplayer game (using RakNet). I want to send text from EditBox to ListBox. If I set text like text = L&q...
by Watcher
Mon Nov 06, 2006 5:04 pm
Forum: Beginners Help
Topic: char to listbox
Replies: 11
Views: 459

It is just character

Code: Select all

char chattext;
And you were right it crashed. I had to use %c but it wrote to listbox only the last letter of my character.

I have char chattext = 'hello' and it wrote only o.
by Watcher
Mon Nov 06, 2006 3:55 pm
Forum: Beginners Help
Topic: char to listbox
Replies: 11
Views: 459

Could you send me please what header files do you have included and what is their sequence? I moved with irrlicht.h and suddenly your code works, but i still got only the last letter of my char.
swprintf(wStr,255,L"%c", chattext);
by Watcher
Mon Nov 06, 2006 3:31 pm
Forum: Beginners Help
Topic: char to listbox
Replies: 11
Views: 459

And when I tried this, it converts only the last word of the char. For exampe if char is abcd, in lisbox is shown only d.

swprintf(wStr,L"%c", chattext);
by Watcher
Mon Nov 06, 2006 2:59 pm
Forum: Beginners Help
Topic: char to listbox
Replies: 11
Views: 459

I´m afraid it doesn´t work

Code: Select all

invalid conversion from `int' to `const wchar_t*' 
initializing argument 2 of `int swprintf(wchar_t*, const wchar_t*, ...)' 
by Watcher
Mon Nov 06, 2006 2:09 pm
Forum: Beginners Help
Topic: char to listbox
Replies: 11
Views: 459

char to listbox

Hi I haven´t found a satisfying answer for question how to include char to listbox and back line from listbox to char. Thanks for answers.
by Watcher
Wed Nov 01, 2006 8:17 pm
Forum: Beginners Help
Topic: Smoke without particle system
Replies: 14
Views: 1213

Maybe you should use a billboard and texture animator.
by Watcher
Sat Oct 28, 2006 7:13 pm
Forum: Beginners Help
Topic: list of textures
Replies: 2
Views: 180

thank you