Can Unity do this?

I am attempting to build an application where the user can click command buttons on screen to make objects within my environment animate. Likewise, I would like to have the camera move from position to position when the user clicks on a command.

For example, if I have a side menu with buttons called “open” “close” and “move camera” is there a way to have an object react to “open” and “close” buttons when the buttons are clicked and have the camera move to a specified location when the user clicks on “move camera” ?

Your help is much appreciated!

Yes it can and there certainly is. :slight_smile:

(Use the tutorials available in the Resources page, and use the Scripting Reference to look for things like “button” and “camera” and “GUI”)

Thanks