sackforever Posted October 16, 2013 Share Posted October 16, 2013 Is it possible to make a movable cameraMatrix from ex. the coords 0 , 0 , 0 to 9,9,9 While on the login screen? If yes could you help me and my login screen is bugged too if you could help in that two i would appreciate that http://prntscr.com/1xp199 http://prntscr.com/1xp1eu Link to comment
cheez3d Posted October 16, 2013 Share Posted October 16, 2013 For the camera matrix you can do this: initialX,initialY,initialZ = yourXposHere,yourYposHere,yourZposHere setCameraMatrix(initialX,initialY,initialZ) function moveCamera() addX = initialX + 0.1 setCameraMatrix(addX,initialY,initialZ) if addX >= finalXposHere then removeEventHandler("onClientPreRender",root,moveCamera) end end addEventHandler("onClientPreRender",root,moveCamera) Link to comment
Dealman Posted October 16, 2013 Share Posted October 16, 2013 You can use the Camera Tool to help with moving camera. As for the login, how do you expect us to help you when you don't even tell us what is wrong with it? It's not like we will magically have the answer for you Edit: Also, it's spelt "Password" with a D instead of a T, just a heads-up on the typo Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now