Quote:
| Originally Posted by L7Sqr This is not a factory; we do not churn out solutions to compensate for your lack of effort. Should you insist on treating this like a factory you will have to offer up compensation to the employees. |
Hi I am not treating you as a factory.Askling for direction help, toughts way of approach.I ve uploaded the files.There are the script and methodts I ve already done.I did not postet code samples because it has some specifics.You need to see the script file to understand that.
I ve managed to make a turning movement with the combination of a movemetnt forward and rotation but it looks very ugly

I ve combined 3 movement(move forward) sequentions with changet parameters + rotatation and the whle turning action consumed 3 steps and looks pretty ugly I would send the code but to see the result you need to paste into the script and start up my scene. IF you really need to see a bit of code as equivalence of effort here it is.
Code:
if ($scene_id==0) then
if(MoveObject1($auto1,0,-1,0,6)) then $scene_count=0; $scene_id=1;
end
end
if ($scene_id==1) then if(CameraDirection($auto1,1,1,-25,30))||(MoveObject2($auto1,-0.4,-0.35,0,6)) then $scene_count=0; $scene_id=2;
end
end
i
f ($scene_id==2) then
if(CameraDirection($auto1,1,1,0,1))||(MoveObject2($auto1,-1,0,0,2)) then $scene_count=0; $scene_id=3;
end
end
MoveObject = moves object in given direction
CameraDirection = is for camera orientation but it can be aplied on any object (model) in the engine.
and scene Id is self explanatory if scene 1 is done skip to scene 2 etc....
But as I ve mantioned IT is not the best solution

SO I am asking for help.