Hello,
I did never worked with irrNet (first time I heard from it), so I can be wrong.
But maybe you could try to remove the netManager->update(100) in this code.
if(netManager->getConnectionStatus() != net::EICS_FAILED)
{
net::SOutPacket outpacket;
outpacket << str.c_str();
outpacket ...
Search found 11 matches
- Fri Dec 25, 2009 1:55 pm
- Forum: Beginners Help
- Topic: Irrnetlite beta chat client server communication timing
- Replies: 4
- Views: 859
- Tue Sep 08, 2009 6:51 pm
- Forum: Beginners Help
- Topic: Pointing the camera
- Replies: 2
- Views: 397
- Tue Sep 08, 2009 6:44 pm
- Forum: Advanced Help
- Topic: 3D rotation using 2 3D points.
- Replies: 5
- Views: 1988
It's easy:
(!) only 3 numbers can define a rotation, so Y-axis -> always up
Jeroen
Code: Select all
core::vector3df Point1 = core::vector3df(X1,Y1,Z1);
core::vector3df Point2 = core::vector3df(X2,Y2,Z2);
core::vector3df vect = Point2-Point1;
node->setRotation(vect.getHorizontalAngle());
Jeroen
- Mon Sep 07, 2009 12:37 pm
- Forum: Beginners Help
- Topic: about objects made in blender...
- Replies: 3
- Views: 321
- Sun Sep 06, 2009 8:37 am
- Forum: Off-topic
- Topic: Closest point to an ellipsoid
- Replies: 39
- Views: 14682
- Wed Sep 02, 2009 6:00 pm
- Forum: Off-topic
- Topic: Closest point to an ellipsoid
- Replies: 39
- Views: 14682
- Wed Sep 02, 2009 2:11 pm
- Forum: Off-topic
- Topic: Closest point to an ellipsoid
- Replies: 39
- Views: 14682
- Wed Sep 02, 2009 8:07 am
- Forum: Beginners Help
- Topic: Demo crashes after succesfully compiled
- Replies: 4
- Views: 318
Re: Demo crashes after succesfully compiled
Maybe the program is just exiting because it can not find a resource, or it's not able to initialize the device.Trynox wrote:the program just closes without any error
Code: Select all
if (!device)
return;- Mon Aug 31, 2009 11:43 am
- Forum: Off-topic
- Topic: Closest point to an ellipsoid
- Replies: 39
- Views: 14682
- Tue Aug 25, 2009 3:22 pm
- Forum: Beginners Help
- Topic: Rotating Camera
- Replies: 4
- Views: 462
- Tue Jul 21, 2009 1:18 pm
- Forum: Advanced Help
- Topic: Setting the application icons ...
- Replies: 1
- Views: 486
See the irrlicht source code:
source: CIrrDeviceWin32.cpp line 327-328
Jeroen (first post
)
Code: Select all
// if there is an icon, load it
wcex.hIcon = (HICON)LoadImage(hInstance, "irrlicht.ico", IMAGE_ICON, 0,0, LR_LOADFROMFILE); Jeroen (first post