diff --git a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+Animation.swift b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+Animation.swift index ba888c07f1..6d62fd9a4f 100644 --- a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+Animation.swift +++ b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+Animation.swift @@ -48,13 +48,13 @@ extension PairingView { case .reinforcer: let reinforcers: [Robot.Reinforcer] = [.fire, .rainbow, .sprinkles] return [ - (0.0, { Robot.shared.run(reinforcers.randomElement()!) }), + (5.0, { Robot.shared.run(reinforcers.randomElement()!) }), ] case .light: let color: [Robot.Color] = [.blue, .green, .orange, .pink, .purple, .red, .yellow] return [ - (1.0, { Robot.shared.shine(.all(in: color.randomElement()!)) }), - (0.0, { Robot.shared.stopLights() }), + (3.0, { Robot.shared.shine(.all(in: color.randomElement()!)) }), + (0.1, { Robot.shared.stopLights() }), ] } } diff --git a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+RobotManager.swift b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+RobotManager.swift index f9f8ac26e2..1287eaa4b2 100644 --- a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+RobotManager.swift +++ b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView+RobotManager.swift @@ -40,7 +40,7 @@ extension PairingView { private func runRandomAnimation() { guard self.isAnimationRunning else { return } - let randomInterval = Double.random(in: 5.0...10.0) + let randomInterval = Double.random(in: 10.0...15.0) self.isBreathing = true self.breathe() diff --git a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView.swift b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView.swift index d2480a5d5d..aa0df6db14 100644 --- a/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView.swift +++ b/Modules/GameEngineKit/Sources/_NewSystem/Exercises/Specialized/Pairing/PairingView.swift @@ -43,13 +43,11 @@ struct PairingView: View { HStack(spacing: 180) { if self.isPlaying { ActionButton(.pause, text: self.instructions.textButtonPause) { - print("Pairing behavior is pausing") self.robotManager.pausePairing() self.isPlaying = false } } else { ActionButton(.start, text: self.instructions.textButtonPlay) { - print("Pairing behavior is running") self.robotManager.startPairing() self.isPlaying = true self.hasStarted = true @@ -57,7 +55,6 @@ struct PairingView: View { } ActionButton(.stop, text: self.instructions.textButtonStop, hasStarted: self.hasStarted) { - print("Pairing behavior stopped") self.robotManager.stopPairing() self.isPlaying = false