Search found 20 matches

by pat-rizio
Fri Mar 10, 2006 10:40 am
Forum: Beginners Help
Topic: How to Create programmatically a Mesh
Replies: 3
Views: 355

I think you could take a look even here and create a mesh by yourself following CreateCube() method example.
by pat-rizio
Thu Mar 09, 2006 11:09 am
Forum: Beginners Help
Topic: how to model a tree and export to irrlicht??
Replies: 7
Views: 386

@T_Aubuchon: why don't you post your step by step solution? It could be usefull to someone else... :wink:
by pat-rizio
Thu Mar 09, 2006 10:55 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

Yes I think we have the same problem.

Maybe is it a bug inside IEventReceiver class?
by pat-rizio
Wed Mar 08, 2006 12:15 pm
Forum: Beginners Help
Topic: collision does not work with complicated mesh. Please help!
Replies: 0
Views: 145

collision does not work with complicated mesh. Please help!

Hi, I'm tring to do collision response in a room. It works perfectly importing some cube's models I made, but importing this palm model of a human hand it has a strange behaviour: when I try to collide with it I can't go trought it (and this it's good) but I can't go away from the node! Just to unde...
by pat-rizio
Mon Mar 06, 2006 10:27 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

you win your bet... :wink:
If nobody has any idea to solve my problem then I will have a look at the code in CTestSceneNode.cpp... :?
by pat-rizio
Thu Mar 02, 2006 11:18 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

ok thanks for your explanation, but nothing change :(
which matrix should "mat" be?
it doesn't matter which matrix is, I have only to call it and set to identity or is it a particular transformation matrix of my virtual word?
by pat-rizio
Thu Mar 02, 2006 11:05 am
Forum: Beginners Help
Topic: newbie question: problem loading texture
Replies: 0
Views: 124

newbie question: problem loading texture

Hi everybody, I'm trying to create a human and model by my own. I created it in 3ds format and now I'm trying to texture it but I have some problems: At first I tried to texture only hand's palm as test, and when I applied texture to my model I saw a texture that was not the original taxture, but a ...
by pat-rizio
Wed Mar 01, 2006 11:16 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

first of all sorry for my late reply.

@vitek: on this topic, what is

Code: Select all

matrix()
as the second argument of setTransform method you suggest to use? At what i have to set it?
by pat-rizio
Tue Feb 21, 2006 10:51 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

well, parent relationships are managed in another part of my code, and it works if I ignore the problem I post here...

My problem should be a bug problem?
by pat-rizio
Tue Feb 21, 2006 9:38 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

sorry, I forgot to write that smgr is a global variable, so myEventReceiver can access to it and pass it to Hand's constructor as shown in my code: miamano = new Hand(smgr,"F:/GCT/Progetto/HandModel",false); My complete main is: int main(int argc, int argv[]) { device = createDevice(video:...
by pat-rizio
Tue Feb 21, 2006 9:21 am
Forum: Beginners Help
Topic: scene node created in class MyEventReceiver not displayed!
Replies: 13
Views: 584

scene node created in class MyEventReceiver not displayed!

Hi everybody, this is my problem: I inizialize scenemanager, driver and device in main method as follow: device = createDevice(video::EDT_OPENGL, core::dimension2d<s32>(800, 600),16, false, false, false); driver = device->getVideoDriver(); smgr = device->getSceneManager(); MyEventReceiver receiver; ...
by pat-rizio
Wed Feb 15, 2006 10:02 am
Forum: Beginners Help
Topic: how to copy a scenenode?
Replies: 16
Views: 738

previous post was mine I was not logged in sorry
by pat-rizio
Tue Feb 14, 2006 3:18 pm
Forum: Beginners Help
Topic: how to copy a scenenode?
Replies: 16
Views: 738

well I did this job because at first I had the model I need in VRML format, not supported in irrlicht. So I converted it in 3ds format using 3dstudiomax and then I imported each part of it in order to preserve its articulated feature... I didn't try to export VRML model in X format, I haven't 3dsstu...
by pat-rizio
Tue Feb 14, 2006 2:54 pm
Forum: Beginners Help
Topic: how to copy a scenenode?
Replies: 16
Views: 738

Ok I try to explain better what I have to realize: I have to create an articulated human hand model and i have to move each part of it (each finger bone I mean). I've created the model I need importing a 3ds model. In particular I've imported each finger bone of the hand and then I've created the ha...
by pat-rizio
Tue Feb 14, 2006 2:09 pm
Forum: Beginners Help
Topic: how to copy a scenenode?
Replies: 16
Views: 738

And this one does not work too ?

*Dest = *Origin;
no it doesn't work. Memory exception given.