c75 Posted November 12, 2015 Share Posted November 12, 2015 Guys, is there any option to fix altitude (Y-axis position) of FreeCamera when I move it? I wanna change Y position only manualy by another keys. Quote Link to comment Share on other sites More sharing options...
Temechon Posted November 12, 2015 Share Posted November 12, 2015 Hello, scene.registerBeforeRender(function() { camera.position.y = MY_POSITION_Y;});Or you can extends the freecamera class and tweak its move function. c75 1 Quote Link to comment Share on other sites More sharing options...
c75 Posted November 12, 2015 Author Share Posted November 12, 2015 scene.registerBeforeRender(function() { camera.position.y = MY_POSITION_Y;}); This simple solution is great! Thanks a lot! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.