Center(); function of 3D camera now also sets Z position to 0. Changed order of multiplication for matrices.

This commit is contained in:
2019-02-06 15:40:54 -06:00
parent 3bd3b0f9f6
commit 85188e859f
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\RecrownedAthenaeum\RecrownedAthenaeum.csproj" />
</ItemGroup>
</Project>

13
ConsoleApp1/Program.cs Normal file
View File

@@ -0,0 +1,13 @@
using RecrownedAthenaeum.Camera;
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Camera2D camera = new Camera2D();
}
}
}