overte/scripts/system/+android/touchscreenvirtualpad.js
2018-01-30 14:48:37 -03:00

21 lines
448 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);
}
init();
}()); // END LOCAL_SCOPE