Add "Actions" and "Selection" menu

Add "Actions" and "Selection" menu in the Create App. (HMD/Desktop compliant)
This commit is contained in:
Alezia Kurdis 2020-10-18 21:57:13 -04:00 committed by GitHub
parent 2837b648fe
commit 426df39e1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -323,6 +323,10 @@ EntityListTool = function(shouldUseEditTabletApp) {
unparentSelectedEntities();
} else if (data.type === 'hmdMultiSelectMode') {
hmdMultiSelectMode = data.value;
} else if (data.type === 'selectAllInBox') {
selectAllEntitiesInCurrentSelectionBox(false);
} else if (data.type === 'selectAllTouchingBox') {
selectAllEntitiesInCurrentSelectionBox(true);
}
};