Hi All,
since updating to Rhino 8 SR19 earlier this week the GetGeometry component doesn´t work as previously.
Basically I´m not able to select multiple objects the same way it used to be.
Previously:
Selecting in multiple steps was possible. For each increment of selection the solution would recompute.
Confirming final selection with Enter.
Now:
Selecting multiple objects only possible in the first go.
After that selection is finished and confirmed. Jump to next input.
While writing this I think I found the issue:
Was the component adapted to match the GetMultiple method of RhinoCommon?
Excerpt:
- maximumNumber
- Type: int
- maximum number of objects to select. If 0, then the user must press enter to finish object selection. If -1, then object selection stops as soon as there are at least minimumNumber of object selected. If >0, then the picking stops when there are maximumNumber objects. If a window pick, crossing pick, or Sel* command attempts to add more than maximumNumber, then the attempt is ignored.
Previously I just omitted the maximum number, which worked.
Now I need to change the maximum number in every regarding component from “” to “0”?