re_data_ui 0.31.2

Provides ui elements for Rerun component data for the Rerun Viewer.
Documentation
1
2
3
4
5
6
7
8
9
10
use re_entity_db::InstancePath;
use re_viewer_context::{StoreViewContext, UiLayout};

use super::DataUi;

impl DataUi for re_entity_db::EntityPath {
    fn data_ui(&self, ctx: &StoreViewContext<'_>, ui: &mut egui::Ui, ui_layout: UiLayout) {
        InstancePath::entity_all(self.clone()).data_ui(ctx, ui, ui_layout);
    }
}