mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 12:55:27 +02:00
Made web entities not grabbable by default
This commit is contained in:
parent
d30f30191f
commit
4173cc46e2
1 changed files with 2 additions and 1 deletions
|
@ -561,7 +561,8 @@ var toolBar = (function () {
|
|||
if (!properties.grab) {
|
||||
properties.grab = {};
|
||||
if (Menu.isOptionChecked(MENU_CREATE_ENTITIES_GRABBABLE) &&
|
||||
!(properties.type === "Zone" || properties.type === "Light" || properties.type === "ParticleEffect")) {
|
||||
!(properties.type === "Zone" || properties.type === "Light"
|
||||
|| properties.type === "ParticleEffect" || properties.type === "Web")) {
|
||||
properties.grab.grabbable = true;
|
||||
} else {
|
||||
properties.grab.grabbable = false;
|
||||
|
|
Loading…
Reference in a new issue