-
Notifications
You must be signed in to change notification settings - Fork 612
Closed
Labels
Description
Minimal reproduce:
use rerun::{
components::{ColorRGBA, Point3D},
time::{TimeType, Timeline},
MsgSender, RecordingStreamBuilder,
};
fn main() -> anyhow::Result<()> {
rerun::external::re_log::setup_native_logging();
let (rec_stream, storage) = RecordingStreamBuilder::new("images").memory()?;
let timeline = Timeline::new("keyframe", TimeType::Sequence);
let pt = Point3D {
x: 1.0,
y: 1.0,
z: 1.0,
};
MsgSender::new("world/pts")
.with_time(timeline, 1)
.with_component(&[pt])?
.with_splat(ColorRGBA::from_rgb(161, 34, 212))?
.send(&rec_stream)?;
rerun::native_viewer::show(storage.take())?;
Ok(())
}Results in this:
Seems like data is lost somehow. Some flushing that is not being done?
