RobotInformation.cs 417 B

12345678910111213141516171819
  1. /* RobotInformation.cs
  2. * author: Yannic Seidler
  3. */
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. using UnityEngine;
  7. // Class for robot prop.
  8. // Attached to all robot models.
  9. // add robot type here if you are using a new robot.
  10. public enum robotType {drz_telemax, asterix_ugv, noRobot};
  11. public class RobotInformation : MonoBehaviour
  12. {
  13. public robotType robotType = robotType.drz_telemax;
  14. }