Camera movement like handholded

mtrain

New member
Is it possible to make a script that will provide a camera movement like it holding in hands, in other words, camera will be slightly moving up, left, down, right and so on..
 
It's doable with script by changing screen position directly with these scripts
Code:
    changeopenborvariant("xpos", X);
    changeopenborvariant("ypos", Y);

you have to set X and Y manually to get desired effect
However, you must disable camera scrolling by player (to avoid conflict) with this:
Code:
    changelevelproperty("scrollspeed", 0);
 
I think it wouldnt look like you want it to look, it would be like random screen jumps to left/right and up/down, maybe if you had something like invisible bouncing ball which would lead the camera then it would smoothout effect a bit but I think It wouldnt look right because screen cant tilt/rotate like real handheld ,it will always be straight moving straight without any rotations.
 
without any rotations

Yes, of course! I forget about rotations. Without it i`ll cant achieve a right result. But it will be grate to make something possible, like a handholding camera views in modern 3d person shooters (just watched something like on youtube)
 
Back
Top Bottom