Skip to content

Commit

Permalink
Merge pull request #45 from jwoff78/main
Browse files Browse the repository at this point in the history
Cleanup, new render, refactor
  • Loading branch information
jwoff78 authored Sep 18, 2023
2 parents e958b5d + 6256df1 commit 4241a9e
Show file tree
Hide file tree
Showing 122 changed files with 3,718 additions and 29,640 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
Expand Down
57 changes: 0 additions & 57 deletions source/OrkEngine3D.Common.Utils/AssetDatabase.cs

This file was deleted.

40 changes: 0 additions & 40 deletions source/OrkEngine3D.Common.Utils/AssetDefinition.cs

This file was deleted.

61 changes: 0 additions & 61 deletions source/OrkEngine3D.Common.Utils/AssetID.cs

This file was deleted.

45 changes: 0 additions & 45 deletions source/OrkEngine3D.Common.Utils/AssetLoader.cs

This file was deleted.

39 changes: 0 additions & 39 deletions source/OrkEngine3D.Common.Utils/AssetRef.cs

This file was deleted.

51 changes: 0 additions & 51 deletions source/OrkEngine3D.Common.Utils/CreatedResourceCache.cs

This file was deleted.

10 changes: 0 additions & 10 deletions source/OrkEngine3D.Common.Utils/OrkEngine3D.Common.Utils.csproj

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion source/OrkEngine3D.Core/Components/Transform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ private void OnParentRotationChanged(Quaternion oldParentRot, Quaternion newPare
Quaternion diff = Quaternion.Concatenate(Quaternion.Inverse(oldParentRot), newParentRot);
_physicsEntity.Orientation = Quaternion.Concatenate(_physicsEntity.BufferedStates.InterpolatedStates.Orientation, diff);
Vector3 basisDirection = Vector3.Transform(GetInterpolatedPosition() - _parent.Position, Quaternion.Inverse(oldRot));
float distance = basisDirection.Length();
float distance = basisDirection.Length;
Vector3 newDirection = Vector3.Transform(basisDirection, newParentRot);
if (newDirection != Vector3.Zero)
{
Expand Down
5 changes: 2 additions & 3 deletions source/OrkEngine3D.Core/OrkEngine3D.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
Expand All @@ -13,8 +13,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\OrkEngine3D.Common.Utils\OrkEngine3D.Common.Utils.csproj" />
<ProjectReference Include="..\OrkEngine3D.Mathematics\OrkEngine3D.Mathematics.csproj" />
<ProjectReference Include="..\vendor\OrkEngine3D.Mathematics\source\OrkEngine3D.Mathematics\OrkEngine3D.Mathematics.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
<RootNamespace>OrkEngine3D.Diagnostics</RootNamespace>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OpenTK" Version="5.0.0-pre.7" />
<PackageReference Include="OpenTK" Version="4.7.7" />
</ItemGroup>

</Project>
Loading

0 comments on commit 4241a9e

Please sign in to comment.