You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the system only allows to have one entry for each param in the config, but it could be the case where there are several entries of one type. For example:
We need some method to iterate over the list, such as:
for( auto entry : getEntry("agent"))
{
Point2D pos;
pos._x = getParamInt(entry, "x");
pos._y = getParamInt(entry, "y");
}
The text was updated successfully, but these errors were encountered:
Currently the system only allows to have one entry for each param in the config, but it could be the case where there are several entries of one type. For example:
We need some method to iterate over the list, such as:
for( auto entry : getEntry("agent"))
{
Point2D pos;
pos._x = getParamInt(entry, "x");
pos._y = getParamInt(entry, "y");
}
The text was updated successfully, but these errors were encountered: