Search found 9 matches
- Sun Apr 04, 2010 12:16 pm
- Forum: Beginners Help
- Topic: setting transparency billboard scenenode
- Replies: 5
- Views: 783
Still can't make smooth disappearance of billboardscenenode. I am using OpetGL render type and have a such scenenode: ISceneNode* slidenode; ITexture** slide; ... ... slidenode = smgr->addBillboardSceneNode(0, core::dimension2d<f32>(1650, 900),core::vector3df(0,5,950)); slidenode->setMaterialTexture...
- Tue Mar 23, 2010 11:24 pm
- Forum: Beginners Help
- Topic: program's crash =(
- Replies: 5
- Views: 385
not understand what it's mean.Sudi wrote:wtf
The resolve of my problem is making even string starts from L" ".
code:
Code: Select all
...
tmpstring = pressure[tourindex];
...
updated code:
Code: Select all
...
tmpstring = L" ";
tmpstring += pressure[tourindex];
...
- Tue Mar 23, 2010 3:25 pm
- Forum: Beginners Help
- Topic: program's crash =(
- Replies: 5
- Views: 385
Все массивы уже тыщу раз проверил. Если бы были вылеты в массивах, то программа бы вылетала например при установке 8 направлений, т.е. сцена менялась бы 8 раз. Но тогда она работает отлично, как только количество превышает 9(например устанавливаю 16 направлений)....сразу вылет. Кроме того, если пуск...
- Tue Mar 23, 2010 2:51 pm
- Forum: Beginners Help
- Topic: program's crash =(
- Replies: 5
- Views: 385
program's crash =(
When i runing my project from IDE(VS2008 C++) everything fine and it works well, but when i run it separately it's crash on ten step of changing scene. here is function that's changing my scene: int tourinfo::ChangeScene() { stringw tmpstring; stringw tmpstring1; if (weathershow) { //tmpstring = lan...
- Sun Mar 21, 2010 4:26 pm
- Forum: Beginners Help
- Topic: EventReceiver trouble.
- Replies: 2
- Views: 273
This is a problem with external window usage.
I solve it with simple modification of tutorial code.
Just needs tp add to CustomWndProc this code
I solve it with simple modification of tutorial code.
Just needs tp add to CustomWndProc this code
Code: Select all
case WM_SETFOCUS:
{
SetFocus(hIrrlichtWindow);
}
- Wed Mar 17, 2010 2:26 pm
- Forum: Beginners Help
- Topic: EventReceiver trouble.
- Replies: 2
- Views: 273
EventReceiver trouble.
Sorry for language, English is not my native. I use irrlicht in win32 window and get problems with EventReceiver. All my code is like tutorials and everything works, but if my program lost focus and then focused back, EventReceiver not works, and program not response thats any key pressed. my code: ...
- Mon Mar 15, 2010 10:26 am
- Forum: Beginners Help
- Topic: Link problem
- Replies: 1
- Views: 238
Link problem
Warning 1 warning C4394: 'irr::core::IdentityMatrix' : per-appdomain symbol should not be marked with __declspec(dllimport) d:\vs\vc\include\matrix4.h 2105 Warning 2 warning C4394: 'irr::video::IdentityMaterial' : per-appdomain symbol should not be marked with __declspec(dllimport) d:\vs\vc\include...
- Wed Mar 10, 2010 4:40 pm
- Forum: Beginners Help
- Topic: setting transparency billboard scenenode
- Replies: 5
- Views: 783
- Wed Mar 10, 2010 8:20 am
- Forum: Beginners Help
- Topic: setting transparency billboard scenenode
- Replies: 5
- Views: 783
setting transparency billboard scenenode
Sorry for my english, I speak it so so. :oops: I can't understand, how make billboard dynamic "disappearance" through setting transparency. This is my code: slidenode = smgr->addBillboardSceneNode(0, core::dimension2d<f32>(1920, 1371),core::vector3df(0,70,950)); slidenode->setMaterialFlag(...