05-03-2019, 06:38 PM
Code:
// Visibility
public void HideVisuals() => _robot.SetVisible(false);
public void ShowVisuals() => _robot.SetVisible(true);
Using the C# code above, I can hide a robot (IItem) by setting its visibility to false, but when I set the visibility to true only the tool frame reappears. I tried to call RoboDK.Render(true), as well, but that had not effect.
When I toggle visibility in the RoboDK window, it acts as expected. Has anybody else seen this error before?