Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.65 KB

File metadata and controls

59 lines (39 loc) · 1.65 KB

Keyboard Shortcuts


Window

Action Menu path Shortcut
Open Runtime Atlas Tools Studio → Runtime Atlas → Open Ctrl+Alt+R

Tab Navigation

Each entry opens Runtime Atlas and navigates directly to the specified tab.

Tab Menu path
Inspector Tools Studio → Runtime Atlas → Tabs → Inspector
Audio Tools Studio → Runtime Atlas → Tabs → Audio
Animator Tools Studio → Runtime Atlas → Tabs → Animator
Mixer Tools Studio → Runtime Atlas → Tabs → Mixer
Console Tools Studio → Runtime Atlas → Tabs → Console

Utilities

Action Menu path
Build Demo Scene Tools Studio → Runtime Atlas → Build Demo Scene
Auto-Config Audio Mixer Tools Studio → Runtime Atlas → Auto-Config Audio Mixer

Demo Scene Runtime Keys

Active only when the demo scene is running in Play Mode. The Game view must have focus.

Key Action
H Toggle the on-screen HUD
T Toggle stress mode on RADemoStressTester

The stress toggle key is configurable via the stressToggleKey field on RADemoStressTester in the Inspector.


Programmatic Tab Selection

using RuntimeAtlas.Editor;
using UnityEditor;

AtlasWindow win = EditorWindow.GetWindow<AtlasWindow>();
win.SelectTab("Inspector"); // returns false if name not found

Valid tab names: Camera, Audio, Graph, Timeline, Alerts, Profiler, Physics, Scanner, Optimizer, Scripts, Inspector, Animator, Mixer, Scene, Report, Console, Materials, About.