Files
ui/Assets/ViewMode.cs

11 lines
285 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/// <summary>
/// Identifies the three main application views. Used only by the top banner
/// to map buttons 13 to the corresponding view GameObjects (enable/disable).
/// </summary>
public enum ViewMode
{
LiveView = 0,
InverseKinematics = 1,
ProgrammedMovements = 2
}