Display control tutorial

This section describes how to control display with the Unity app.

  1. Create a Unity project and import the package

    Refer to Create a Unity project for how to create

  2. Drag and drop MoverioDisplay into the hierarchy window

  3. Create a script

  4. Add using

    Open the script created in 3 and describe as using MoverioBasicFunctionUnityPlugin;

    using MoverioBasicFunctionUnityPlugin;
  5. Call a function

    Describe the API you want to use like MoverioDisplay.GetBrightness

    Refer to the following script for the description method of each function

    label

    script

    Brightness

    GetBrighnessController.cs
    SetBrightnessController.cs

    Brightness Mode

    GetBrighnessModeController.cs
    SetBrightnessModeController.cs

    Display Mode

    GetDisplayModeController.cs
    SetDisplayModeController.cs

    Display State

    GetDisplayStateController.cs
    SetDisplayStateController.cs

    Screen Horizontal Shift Step

    GetScreenHorizontalShiftStepController.cs
    SetScreenHorizontalShiftStepController.cs

    Screen Horizontal Shift Step Max

    GetScreenHorizontalShiftStepMaxController.cs

    Screen Horizontal Shift Step Min

    GetScreenHorizontalShiftStepMinController.cs

  6. Attach script to GameObject

Please refer to API Reference for API specifications.