mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
spaceMode / desiredSpaceMode explanation
This commit is contained in:
parent
e483b1342c
commit
99fcef105f
1 changed files with 11 additions and 0 deletions
|
@ -639,7 +639,18 @@ SelectionDisplay = (function() {
|
|||
ROLL: 2
|
||||
};
|
||||
|
||||
/**
|
||||
* The current space mode, this could have been a forced space mode since we do not support multi selection while in
|
||||
* local space mode.
|
||||
* @type {string} - should only be set to SPACE_LOCAL or SPACE_WORLD
|
||||
*/
|
||||
var spaceMode = SPACE_LOCAL;
|
||||
|
||||
/**
|
||||
* The desired space mode, this is the user set space mode, which should be respected whenever it is possible. In the case
|
||||
* of multi entity selection this space mode may differ from the actual spaceMode.
|
||||
* @type {string} - should only be set to SPACE_LOCAL or SPACE_WORLD
|
||||
*/
|
||||
var desiredSpaceMode = SPACE_LOCAL;
|
||||
|
||||
var overlayNames = [];
|
||||
|
|
Loading…
Reference in a new issue