summaryrefslogtreecommitdiff
path: root/world/src
diff options
context:
space:
mode:
Diffstat (limited to 'world/src')
-rw-r--r--world/src/main.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/world/src/main.rs b/world/src/main.rs
index c8ef8c6..30fe8d4 100644
--- a/world/src/main.rs
+++ b/world/src/main.rs
@@ -107,13 +107,6 @@ fn main() -> Result<()> {
}
}
- prefab.light.push((
- vec3a(5., 5., 5.),
- store.set(&LightPart {
- emission: Some(vec3a(0.5, 0.1, 1.0)),
- radius: Some(0.2),
- })?,
- ));
if let Some(skybox) = args.skybox {
let mut buf = Vec::new();
File::open(skybox)?.read_to_end(&mut buf)?;
@@ -204,7 +197,7 @@ fn load_texture(
uri,
mime_type: Some(mime_type),
} => {
- info!("{name} texture is at {uri:?} and of type {mime_type:?}");
+ info!("{name} texture is {uri:?} and of type {mime_type:?}");
let path = path.join(uri);
let mut buf = Vec::new();
File::open(path)?.read_to_end(&mut buf)?;