OVRTouchpad.Create C# (CSharp) Метод

Create() статический публичный Метод

Add the Touchpad game object into the scene.
static public Create ( ) : void
Результат void
	static public void Create()
	{
		// Does nothing but call constructor to add game object into scene
	}
		

Usage Example

Пример #1
0
    // Use this for initialization
    void Start()
    {
        OVRTouchpad.Create();
        OVRTouchpad.TouchHandler += UpdateInput;
        _playerActions            = GetComponent <PlayerActions>();

        Cursor.visible = false;

        Debug.Log("InputManagerStarted");
    }
All Usage Examples Of OVRTouchpad::Create