mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 14:16:32 +02:00
22 lines
482 B
JavaScript
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
|