mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 00:33:13 +02:00
Remove onFirstRun.js
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
a651b6b978
commit
ffe6e3a323
2 changed files with 0 additions and 36 deletions
|
@ -37,7 +37,6 @@ var DEFAULT_SCRIPTS_COMBINED = [
|
||||||
"system/inspect.js",
|
"system/inspect.js",
|
||||||
"system/keyboardShortcuts/keyboardShortcuts.js",
|
"system/keyboardShortcuts/keyboardShortcuts.js",
|
||||||
"system/onEscape.js",
|
"system/onEscape.js",
|
||||||
"system/onFirstRun.js",
|
|
||||||
"system/places/places.js"
|
"system/places/places.js"
|
||||||
//"developer/debugging/scriptMemoryReport.js"
|
//"developer/debugging/scriptMemoryReport.js"
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
'use strict';
|
|
||||||
|
|
||||||
//
|
|
||||||
// onFirstRun.js
|
|
||||||
//
|
|
||||||
// Created by Kalila L. on Oct 5 2020.
|
|
||||||
// Copyright 2020 Vircadia contributors.
|
|
||||||
//
|
|
||||||
// This script triggers on first run to perform bootstrapping actions.
|
|
||||||
//
|
|
||||||
// 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
|
|
||||||
// Check to see if we should run this script or bail...
|
|
||||||
var SETTING_TO_CHECK = 'firstRun';
|
|
||||||
var DEFAULT_DISPLAY_NAME = '';
|
|
||||||
|
|
||||||
if (!Settings.getValue(SETTING_TO_CHECK, false)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If this is our first run, then proceed...
|
|
||||||
|
|
||||||
if (MyAvatar.displayName === '') {
|
|
||||||
var selectedDisplayName = Window.prompt('Enter a display name.', MyAvatar.displayName);
|
|
||||||
|
|
||||||
if (selectedDisplayName === '') {
|
|
||||||
MyAvatar.displayName = DEFAULT_DISPLAY_NAME;
|
|
||||||
} else {
|
|
||||||
MyAvatar.displayName = selectedDisplayName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}());
|
|
Loading…
Reference in a new issue