From the course: Unity: Building VR User Interfaces

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Input masking

Input masking - Unity Tutorial

From the course: Unity: Building VR User Interfaces

Start my 1-month free trial

Input masking

- [Instructor] Now that you've seen our MVP of our dialog system working in VR, you would have noticed that there's nothing that you can do once you've launched the dialog to get out of the dialog, but click on the OK button. And this is absolutely on purpose. It's a technique called Input Filtering or Input Masking. And it's something that dialogs require in order to focus users attentions on the actions available to them. Now, we haven't gone Overcode in this course, and programming is not a prerequisite. But we definitely need to dig in to what we're doing for our project in order to filter our inputs. So let's go over to the Dialogue Manager Script, and open it up, Double Click. And here we are in Visual Studio, which usually ships with Unity. I'm going to go through some of the stuff we've got here. But I want to focus specifically on the Input Filtering methods. Now at the top, we've got the class for the…

Contents