overte/scripts/system/+android_interface/touchscreenvirtualpad.js
2019-02-06 11:37:52 -08:00

22 lines
482 B
JavaScript

"use strict";
//
// touchscreenvirtualpad.js
// scripts/system/
//
// Created by Gabriel Calero & Cristian Duarte on Jan 16, 2018
// Copyright 2018 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function() { // BEGIN LOCAL_SCOPE
function init() {
Controller.setVPadEnabled(true);
Controller.setVPadHidden(false);
}
init();
}()); // END LOCAL_SCOPE