Search found 8 matches

by chronos1981
Thu Sep 02, 2010 11:48 am
Forum: Everything 2d/3d Graphics
Topic: Why is blender so poorly designed and hard to use?
Replies: 34
Views: 20805

Amazing I have been using blender since it went open source in 2002. I agree it was a hell of a learning curve. It took me along time to get accustomed to using the space bar to access the menu. Over the years it has gotten alot better. and like one post said 2.5 is looking great, they have changed ...
by chronos1981
Thu Apr 08, 2010 4:37 am
Forum: Beginners Help
Topic: weird behavior of window children
Replies: 0
Views: 510

weird behavior of window children

I have added a window to my program and added a few textures as children to the window. The textures in the window can be scrolled up or down by left clicking within the window and dragging the mouse up or down. I want to right click on one of the textures and change the position of it to signify th...
by chronos1981
Tue Dec 29, 2009 5:54 pm
Forum: Beginners Help
Topic: Irrnetlite beta chat client server communication timing
Replies: 4
Views: 635

I removed #include <irrlicht.h> from the server code and now it works.
by chronos1981
Thu Dec 24, 2009 6:54 pm
Forum: Beginners Help
Topic: Irrnetlite beta chat client server communication timing
Replies: 4
Views: 635

ok I have stripped the server code down to the bare bones just console. #include <irrlicht.h> #include <irrNet.h> #include <iostream> using namespace irr; using namespace core; #pragma comment(lib, "irrNetLite.lib") #pragma comment(lib, "ws2_32.lib") net::INetManager* netManager;...
by chronos1981
Thu Dec 24, 2009 1:40 am
Forum: Beginners Help
Topic: Irrnetlite beta chat client server communication timing
Replies: 4
Views: 635

Irrnetlite beta chat client server communication timing

I am working on an online game. The game engine will be easy so I'm starting on the network communication side first. I have the client talking to the server. I can type into the edit box and hit enter, selecting the text from the edit box and sending a packet containing the string to the server. Th...
by chronos1981
Wed Dec 23, 2009 12:46 pm
Forum: Beginners Help
Topic: How to convert stringc to stringw ?
Replies: 5
Views: 426

it finally makes sense thanks!

I'm working on a game, taking baby steps of course right now just working on the chat box. I could not get the text to show from the client to the server and when I finally got the irrnetbeta stuff working, it would crash the server when i sent the wrong kind of string.
by chronos1981
Thu Mar 20, 2008 2:35 am
Forum: Beginners Help
Topic: rotating camera help
Replies: 4
Views: 306

Thanks for the quick replys JP and randomMesh Using spherical coordinates should do the trick. http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=17033 That's what I thought. I was just hoping for an already existing command, but I figured it out today. while(device->run()) { if (fw) //forward {...
by chronos1981
Wed Mar 19, 2008 12:08 pm
Forum: Beginners Help
Topic: rotating camera help
Replies: 4
Views: 306

rotating camera help

Hi im new to IRRLICHT and im working on a rpg style game. So I need a camera that works like a rpg camera. I have read alot of stuff and searched the api (hard to read the api used to msdn) but just don't get it yet. I don't want someone to give me the code just point me in the right direction. How ...