making racers

This commit is contained in:
mccarreon
2023-08-06 18:41:00 -07:00
parent b9dbe07e1f
commit 3e9d64cb00
4 changed files with 38 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ namespace LuckerGame.Components.Lucker.Cameras;
public abstract partial class AbstractCamera : EntityComponent<Entities.Lucker>, ISingletonComponent
{
public virtual bool ShouldShowCursor => false;
protected Vector3 CameraPosition { get; set; }
public Vector3 CameraPosition { get; set; }
protected Rotation CameraRotation { get; set; }
protected float FieldOfView { get; set; }
protected IEntity FirstPersonViewer { get; set; }