(&self)
| 591 | } |
| 592 | |
| 593 | #[derive(Clone, Debug, PartialEq)] |
| 594 | pub enum SceneValue { |
| 595 | Bool(bool), |
| 596 | I32(i32), |
| 597 | F32(f32), |
| 598 | Vec2 { x: f32, y: f32 }, |
| 599 | Vec3 { x: f32, y: f32, z: f32 }, |
| 600 | Vec4 { x: f32, y: f32, z: f32, w: f32 }, |
| 601 | IVec2 { x: i32, y: i32 }, |
| 602 | IVec3 { x: i32, y: i32, z: i32 }, |
no outgoing calls
no test coverage detected