weaver-dvr 1.0.0

Weaver DVR — Dreamwell Virtual Rasterizer API, frame types, and metaphor bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};
use weaver_core::EntityId;

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct PbrMetaphorFrame {
    pub actor_id: EntityId,
    pub tick: u64,
    pub coherence: f32,
    pub decoherence: f32,
    pub collapse_charge: f32,
    pub idle_bias: f32,
    pub move_bias: f32,
    pub burst_bias: f32,
}