mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 13:28:16 +02:00
Update parameter name in getPropertiesForEntities
This commit is contained in:
parent
0da9f72c42
commit
efd1a5c600
1 changed files with 4 additions and 4 deletions
|
@ -92,12 +92,12 @@ function findChildrenWithName(parentID, name) {
|
||||||
return matchingIDs;
|
return matchingIDs;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getPropertiesForEntities(entityIDs, properties) {
|
function getPropertiesForEntities(entityIDs, desiredProperties) {
|
||||||
var props = [];
|
var properties = [];
|
||||||
for (var i = 0; i < entityIDs.length; ++i) {
|
for (var i = 0; i < entityIDs.length; ++i) {
|
||||||
props.push(Entities.getEntityProperties(entityIDs[i], properties));
|
properties.push(Entities.getEntityProperties(entityIDs[i], desiredProperties));
|
||||||
}
|
}
|
||||||
return props;
|
return properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue