BTS-147: Add view banner with Views/LiveView/IK/ProgrammedMovements

This commit is contained in:
Leo Qu
2026-02-04 22:33:17 -05:00
parent 1a33c89cf7
commit 50f3fe6f3a
7 changed files with 620 additions and 30 deletions

10
Assets/ViewMode.cs Normal file
View File

@@ -0,0 +1,10 @@
/// <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
}