mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 03:42:27 +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;
|
||||
}
|
||||
|
||||
function getPropertiesForEntities(entityIDs, properties) {
|
||||
var props = [];
|
||||
function getPropertiesForEntities(entityIDs, desiredProperties) {
|
||||
var properties = [];
|
||||
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