mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 18:19:26 +02:00
23 lines
548 B
JavaScript
23 lines
548 B
JavaScript
"use strict";
|
|
|
|
//
|
|
// firstPersonHMD.js
|
|
// system
|
|
//
|
|
// Created by Zander Otavka on 6/24/16
|
|
// Copyright 2016 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
|
|
|
|
// Automatically enter first person mode when entering HMD mode
|
|
HMD.displayModeChanged.connect(function(isHMDMode) {
|
|
if (isHMDMode) {
|
|
Camera.setModeString("first person look at");
|
|
}
|
|
});
|
|
|
|
}()); // END LOCAL_SCOPE
|