mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Add "Rotate As Next Clicked Surface"
Add "Rotate As Next Clicked Surface" Add also "Rotate 90 degree on X axis", "Rotate 90 degree on Z axis" and "Rotate 90 degree on Z axis"
This commit is contained in:
parent
eeecf4861c
commit
c8a0ebdcd6
1 changed files with 8 additions and 0 deletions
|
@ -383,6 +383,14 @@ EntityListTool = function(shouldUseEditTabletApp) {
|
|||
SelectionManager.selectTopFamily();
|
||||
} else if (data.type === 'teleportToEntity') {
|
||||
SelectionManager.teleportToEntity();
|
||||
} else if (data.type === 'rotateAsTheNextClickedSurface') {
|
||||
rotateAsNextClickedSurface();
|
||||
} else if (data.type === 'quickRotate90x') {
|
||||
selectionDisplay.rotate90degreeSelection("X");
|
||||
} else if (data.type === 'quickRotate90y') {
|
||||
selectionDisplay.rotate90degreeSelection("Y");
|
||||
} else if (data.type === 'quickRotate90z') {
|
||||
selectionDisplay.rotate90degreeSelection("Z");
|
||||
} else if (data.type === 'moveEntitySelectionToAvatar') {
|
||||
SelectionManager.moveEntitiesSelectionToAvatar();
|
||||
} else if (data.type === 'loadConfigSetting') {
|
||||
|
|
Loading…
Reference in a new issue