fromRobot static method

AudioOut fromRobot(
  1. RobotClient robot,
  2. String name
)

Get the AudioOut named name from the provided robot.

Implementation

static AudioOut fromRobot(RobotClient robot, String name) {
  return robot.getResource(AudioOut.getResourceName(name));
}