0 votes

Hi,

How can I able to add a limit on a 3d camera? Just like the limit on the 2d camera.

Thanks!

in Engine by (21 points)

1 Answer

+1 vote

Hi,
you have to implement that on your own by scripting, like so ...

var my_upper_x_limit = 100
var my_lower_x_limit = -100

func _process(delta):
    if global_transform.origin.x > my_upper_x_limit:
        global_translate( Vector3(0,0,my_upper_x_limit - global_transform.origin.x) )
    elif global_transform.origin.x < my_lower_x_limit:
        global_translate( Vector3(0,0,my_upper_x_limit - global_transform.origin.x) )

    # do this for any restricted axis
by (4,088 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.