KrysleQuinsen
Member
|
RE: D.motionMode(MOTION_CAMERA_OBJECT) give me this
I have this once but can't remember. I think you didn't update the skelanim or camera velocity right.
Code:
Camera.updateBegin();
....
Camera.updateEnd();
Code:
Chr.skel.updateBegin().clear();
....
Chr.skel.updateEnd();
For manual mesh draw (not sure if you manually draw your gun) I used something like.
Code:
current_gun_matrix=gun.matrix;
Gun.draw(current_gun_matrix, last_gun_matrix);
last_gun_matrix=current_gun_matrix;
|
|
10-03-2021 05:04 AM |
|
Esenthel
Administrator
|
RE: D.motionMode(MOTION_CAMERA_OBJECT) give me this
That's right, order of calling functions is important.
They should be called in the same order as they're listed in the headers.
|
|
10-03-2021 07:10 AM |
|