Truelegend
Member
|
Camera - move to left?
Hello, can i move camera left in EE?
I tried to find function but i cant :(
I want like gow camera. put 2f to left.
Thanks for any help
[Topic to close] Sorry for problem but i know how to do it now
(This post was last modified: 04-10-2011 08:41 AM by Truelegend.)
|
|
04-10-2011 08:40 AM |
|
xzessmedia
Member
|
RE: Camera - move to left?
the advanced user should always tell the solution for his problem.. otherwise the topic shouldn't get closed instead, it should get removed..
in my opinion its a general board rule!
for those who don't know the answer, you can find it in tutorial
14 - Camera Modes
03 - Camera
03 - Matrix
there are many ways to do it
here are just some ways:
Reposition:
Cam.at = Vec(0,0,5);
or
Cam.at.set(0,0,5);
or
Cam.setFromAt(Vec(0, 0, 0), Vec(0, 0, 5), 0);
if you want to move the camera instead to reposition it, a good way is to use the matrix like this
Cam.matrix.move(0, 0, 5);
|
|
04-11-2013 03:48 PM |
|
candam
Member
|
RE: Camera - move to left?
(04-11-2013 03:48 PM)xzessmedia Wrote: the advanced user should always tell the solution for his problem.. otherwise the topic shouldn't get closed instead, it should get removed..
in my opinion its a general board rule!
for those who don't know the answer, you can find it in tutorial
14 - Camera Modes
03 - Camera
03 - Matrix
there are many ways to do it
here are just some ways:
Reposition:
Cam.at = Vec(0,0,5);
or
Cam.at.set(0,0,5);
or
Cam.setFromAt(Vec(0, 0, 0), Vec(0, 0, 5), 0);
if you want to move the camera instead to reposition it, a good way is to use the matrix like this
Cam.matrix.move(0, 0, 5);
Hello Pal
do you have any idea how old is this topic
it was dead and you just got it back alive anyway you're right about your point
|
|
04-11-2013 03:59 PM |
|
SamNainocard
Member
|
RE: Camera - move to left?
Isn't he mean offset camera like third personal shooter game?
|
|
04-21-2013 05:19 PM |
|