This commit is contained in:
2025-01-04 22:44:43 +03:00
parent ac00eb18a9
commit 27f6b11f8f
55 changed files with 2547 additions and 702 deletions

View File

@@ -1,4 +1,5 @@
using Engine.Graphics.Camera;
using Engine.Graphics.Pipeline;
using OpenTK.Mathematics;
using Serilog;
@@ -13,6 +14,8 @@ public abstract class Camera(
public float NearPlane { get; set; } = parNearPlane;
public float FarPlane { get; set; } = parFarPlane;
public RenderLayer RenderLayer { get; set; } = RenderLayer.DEFAULT;
private Vector2i _screenSize = new(1, 1);
public abstract Matrix4 View { get; }