BREAKING CHANGE: renamed namespace & assembly names

This commit is contained in:
2025-08-05 19:41:35 +03:00
parent 1644a751bb
commit 3d183b21cd
259 changed files with 411 additions and 405 deletions

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="ICollider2D"/> with the shape of a <see cref="Circle"/>.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D collider.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D collision detector.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D collision resolver.

View File

@@ -1,8 +1,8 @@
using System.Collections.Generic;
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D physics engine.

View File

@@ -1,4 +1,4 @@
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D physics object's responsive attributes.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D raycast resolver.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a 2D rigid body in the engine.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="ICollider2D"/> with a custom <see cref="Shape2D"/>.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
public readonly struct RaycastResult(Ray2D ray, ICollider2D collider2D, Vector2D position, Vector2D normal)
{

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="IBehaviour"/> that listens to physics simulation update phase.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="IBehaviour"/> that listens to physics simulation update phase.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="IBehaviour"/> that listens to the phase after the physics simulation phase.

View File

@@ -1,6 +1,6 @@
using Syntriax.Engine.Core;
using Engine.Core;
namespace Syntriax.Engine.Physics2D;
namespace Engine.Physics2D;
/// <summary>
/// Represents a <see cref="IBehaviour"/> that listens to the phase before the physics simulation phase.