mirror of
https://github.com/BotChain-Robots/ui.git
synced 2026-07-08 15:07:22 +02:00
11 lines
285 B
C#
11 lines
285 B
C#
/// <summary>
|
||
/// Identifies the three main application views. Used only by the top banner
|
||
/// to map buttons 1–3 to the corresponding view GameObjects (enable/disable).
|
||
/// </summary>
|
||
public enum ViewMode
|
||
{
|
||
LiveView = 0,
|
||
InverseKinematics = 1,
|
||
ProgrammedMovements = 2
|
||
}
|