Skip to content

Commit 937417e

Browse files
committed
feat(version): 1.3.2
1 parent 090c62a commit 937417e

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
[#] Bug Fixes<br>
88
[.] Others
99

10+
### V 1.3.2 - 24/11/2024
11+
[+] PhysicsSystem : GetBodyForEntity<br/>
12+
[.] Update SharpEngine.Core to 1.9.2
13+
1014
### V 1.3.1 - 21/11/2024
1115
[#] Fix versions in DebugManager
1216

SharpEngine.AetherPhysics/SEAetherPhysics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ public static class SEAetherPhysics
2929
public static void AddVersions()
3030
{
3131
DebugManager.Versions.Add("Aether.Physics2D", "2.1.0");
32-
DebugManager.Versions.Add("SharpEngine.AetherPhysics", "1.3.1");
32+
DebugManager.Versions.Add("SharpEngine.AetherPhysics", "1.3.2");
3333
}
3434
}

SharpEngine.AetherPhysics/SharpEngine.AetherPhysics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Copyright>Copyright (c) LavaPower 2021-2023</Copyright>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<PackageProjectUrl>https://github.com/SharpEngine/SharpEngine.Aether</PackageProjectUrl>
12-
<PackageVersion>1.3.1</PackageVersion>
12+
<PackageVersion>1.3.2</PackageVersion>
1313
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<EnablePackageValisation>true</EnablePackageValisation>

Testing/MyScene.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public MyScene()
2020
e1.AddComponent(
2121
new PhysicsComponent(fixedRotation: true, ignoreGravity: true, debugDraw: true)
2222
)
23-
.AddCircleCollision(50, restitution: 0f);
23+
.AddCircleCollision(50, restitution: 0f, tag: SharpEngine.AetherPhysics.Fixture.FixtureTag.IgnoreCollisions);
2424
e1.AddComponent(new PhysicsControlComponent(speed: 300));
2525
AddEntity(e1);
2626

Testing/Program.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
using SharpEngine.AetherPhysics;
1+
using ImGuiNET;
2+
using SharpEngine.AetherPhysics;
23
using SharpEngine.Core;
34
using SharpEngine.Core.Manager;
5+
using SharpEngine.Core.Renderer;
46
using SharpEngine.Core.Utils;
57

68
namespace Testing;

0 commit comments

Comments
 (0)