mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
changing branches
This commit is contained in:
parent
b59b8db5c9
commit
56d654987c
1 changed files with 13 additions and 2 deletions
|
@ -8,7 +8,9 @@
|
|||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
//
|
||||
|
||||
// todo: text labels for property names, panel plane for visibility
|
||||
|
||||
//some experimental options
|
||||
var ONLY_I_CAN_EDIT = false;
|
||||
|
@ -16,7 +18,7 @@ var SLIDERS_SHOULD_STAY_WITH_AVATAR = false;
|
|||
var VERTICAL_SLIDERS = false;
|
||||
var SHOW_OVERLAYS = true;
|
||||
var SHOW_LIGHT_VOLUME = true;
|
||||
var USE_PARENTED_PANEL = false;
|
||||
var USE_PARENTED_PANEL = true;
|
||||
|
||||
//variables for managing overlays
|
||||
var selectionDisplay;
|
||||
|
@ -225,6 +227,9 @@ entitySlider.prototype = {
|
|||
};
|
||||
|
||||
this.axis = Entities.addEntity(properties);
|
||||
},
|
||||
createLabel:function(){
|
||||
|
||||
},
|
||||
createSliderIndicator: function() {
|
||||
var extensionVector;
|
||||
|
@ -652,6 +657,12 @@ function handleCleanupMessages(channel, message, sender) {
|
|||
}
|
||||
}
|
||||
|
||||
function updateSliderAxis(){
|
||||
sliders.forEach(function(slider){
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
function cleanup(fromMessage) {
|
||||
var i;
|
||||
for (i = 0; i < sliders.length; i++) {
|
||||
|
|
Loading…
Reference in a new issue