stylized 1-bit rendering

This commit is contained in:
Jonas H
2026-01-21 11:04:55 +01:00
parent 5d2eca0393
commit 2422106725
40 changed files with 2859 additions and 366 deletions

View File

@@ -20,7 +20,7 @@ impl CameraComponent
fov: 45.0_f32.to_radians(),
aspect,
near: 0.1,
far: 100.0,
far: 2000.0,
yaw: -135.0_f32.to_radians(),
pitch: -30.0_f32.to_radians(),
is_active: true,

View File

@@ -8,4 +8,6 @@ pub struct MeshComponent
{
pub mesh: Rc<Mesh>,
pub pipeline: Pipeline,
pub instance_buffer: Option<wgpu::Buffer>,
pub num_instances: u32,
}