Is it possible to change the interface settings during gameplay? I'm trying to make a game that for the most part is Direct control, relying solely on the keyboard, but when the player holds down shift (or if necessary, a toggle) it switches to a point and click style. For example, imagine Link w/ his ferry, where you can switch to controlling the ferry, which is the mouse cursor. Hope that makes sense (and that it can be done)...
Comments
AdvGame.GetReferences ().settingsManager.movementMethod = MovementMethod.Direct;
AdvGame.GetReferences ().settingsManager.movementMethod = MovementMethod.PointAndClick;
Try it and see if it works for you. Put each line into a separate function, attach the script to a GameObject, and you'll then be able to call each function using the Object: Send Message Action.