mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:27:04 +02:00
support toggling locked and visible properties
This commit is contained in:
parent
39a1b9e75d
commit
6e28538063
1 changed files with 0 additions and 6 deletions
|
@ -59,8 +59,6 @@ EntityListTool = function(opts) {
|
||||||
name: properties.name,
|
name: properties.name,
|
||||||
type: properties.type,
|
type: properties.type,
|
||||||
url: properties.type == "Model" ? properties.modelURL : "",
|
url: properties.type == "Model" ? properties.modelURL : "",
|
||||||
locked: properties.locked,
|
|
||||||
visible: properties.visible
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,10 +99,6 @@ EntityListTool = function(opts) {
|
||||||
}
|
}
|
||||||
} else if (data.type == "delete") {
|
} else if (data.type == "delete") {
|
||||||
deleteSelectedEntities();
|
deleteSelectedEntities();
|
||||||
} else if (data.type == "toggleLocked") {
|
|
||||||
toggleSelectedEntitiesLocked();
|
|
||||||
} else if (data.type == "toggleVisible") {
|
|
||||||
toggleSelectedEntitiesVisible();
|
|
||||||
} else if (data.type === "radius") {
|
} else if (data.type === "radius") {
|
||||||
searchRadius = data.radius;
|
searchRadius = data.radius;
|
||||||
that.sendUpdate();
|
that.sendUpdate();
|
||||||
|
|
Loading…
Reference in a new issue