Search found 9 matches

by Roman B.
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...
by Roman B.
Tue Mar 23, 2010 11:24 pm
Forum: Beginners Help
Topic: program's crash =(
Replies: 5
Views: 385

Sudi wrote:wtf
not understand what it's mean.

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]; 
...
by Roman B.
Tue Mar 23, 2010 3:25 pm
Forum: Beginners Help
Topic: program's crash =(
Replies: 5
Views: 385

Все массивы уже тыщу раз проверил. Если бы были вылеты в массивах, то программа бы вылетала например при установке 8 направлений, т.е. сцена менялась бы 8 раз. Но тогда она работает отлично, как только количество превышает 9(например устанавливаю 16 направлений)....сразу вылет. Кроме того, если пуск...
by Roman B.
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...
by Roman B.
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

Code: Select all

	case WM_SETFOCUS:
	{
		SetFocus(hIrrlichtWindow);
	}
by Roman B.
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: ...
by Roman B.
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...
by Roman B.
Wed Mar 10, 2010 4:40 pm
Forum: Beginners Help
Topic: setting transparency billboard scenenode
Replies: 5
Views: 783

hybrid, thank you for your answer. But i still can't understand how do this :oops:

If i try ONE_TEXTURE_BLEND, how i can set transparency of the billboard?

When I set material to ONE_TEXTURE_BLEND, there is only black screen instead of image.
by Roman B.
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(...