re_viewer 0.13.0

The Rerun viewer
1
2
3
4
5
6
7
8
9
use super::PanelView;

impl PanelView {
    // TODO(jleibs): Would be nice if this could be a const EntityPath but making
    // the hash const is a bit of a pain.
    pub const BLUEPRINT_VIEW_PATH: &'static str = "blueprint_view";
    pub const SELECTION_VIEW_PATH: &'static str = "selection_view";
    pub const TIMELINE_VIEW_PATH: &'static str = "timeline_view";
}