Warehouse.cs
emulates the functionality of a pneumatic actuator within the Unity environment. It utilizes triggers and box colliders to simulate interactions with boxes, enabling the robot to effectively pick up and drop boxes as required. This script enhances realism by providing realistic actuator behavior, facilitating seamless integration of robotic operations within the warehouse simulation.
a straightforward script designed to manage the behavior of boxes within the warehouse simulation. It controls the effects of gravity on boxes and manages their position when they are interacted with by the pneumatic actuator. This script ensures that boxes behave realistically within the simulated environment, enhancing the overall fidelity of robotic operations and interactions with boxes in the warehouse setting.
a script responsible for simulating the movement of servo-motors and wheels within a robotic system in the Unity environment. It receives speed parameters from the associated robot script to control wheel movement. The script includes functionality to automatically stop servos and wheels when the robot is stationary, managed through a stop variable set by the robot script. Robot.cs coordinates with Robot_wheels.cs to manipulate the stop variable, ensuring that wheel movement is locked during specific robot states such as PickingUp, RampGoingDown, Unloading, and RampGoingUp. This integration ensures realistic wheel behavior and enhances safety and operational control within the simulated warehouse environment.