(doc: &SceneDoc, key: u32)
| 2906 | ), |
| 2907 | SceneValue::IVec2 { x, y } => format!("({x}, {y})"), |
| 2908 | SceneValue::IVec3 { x, y, z } => format!("({x}, {y}, {z})"), |
| 2909 | SceneValue::IVec4 { x, y, z, w } => format!("({x}, {y}, {z}, {w})"), |
| 2910 | SceneValue::UVec2 { x, y } => format!("({x}, {y})"), |
| 2911 | SceneValue::UVec3 { x, y, z } => format!("({x}, {y}, {z})"), |
| 2912 | SceneValue::UVec4 { x, y, z, w } => format!("({x}, {y}, {z}, {w})"), |
| 2913 | SceneValue::Array(values) => { |
nothing calls this directly
no test coverage detected