| 7 | |
| 8 | #[derive(Clone, Debug, PartialEq)] |
| 9 | pub struct CameraStream { |
| 10 | pub camera: NodeID, |
| 11 | pub resolution: UVector2, |
| 12 | pub aspect_ratio: f32, |
| 13 | pub aspect_mode: UiImageScaleMode, |
| 14 | pub post_processing: PostProcessSet, |
| 15 | pub enabled: bool, |
| 16 | } |
| 17 | |
| 18 | impl CameraStream { |
| 19 | #[deprecated(note = "use CameraStream::default()")] |
no outgoing calls
no test coverage detected