library: render: object: remove index field

This commit is contained in:
Bruno BELANYI 2020-03-25 00:08:09 +01:00
parent 2e224b280d
commit c2fd001430
1 changed files with 0 additions and 5 deletions

View File

@ -20,9 +20,6 @@ pub struct Object {
pub material: MaterialEnum,
/// The `Object`'s texture
pub texture: TextureEnum,
#[serde(skip_deserializing)]
/// Index inside the `BVH`
index: usize,
}
impl Object {
@ -55,7 +52,6 @@ impl Object {
shape,
material,
texture,
index: 0,
}
}
}
@ -111,7 +107,6 @@ mod test {
shape: shape.into(),
material: material.into(),
texture: texture.into(),
index: 0,
}
)
}