BREAKING CHANGE: New ICollider
This commit is contained in:
29
Engine.Physics2D/Collider2DShapeBehaviour.cs
Normal file
29
Engine.Physics2D/Collider2DShapeBehaviour.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
using Syntriax.Engine.Core.Abstract;
|
||||
using Syntriax.Engine.Physics2D.Abstract;
|
||||
using Syntriax.Engine.Physics2D.Primitives;
|
||||
|
||||
namespace Syntriax.Engine.Physics2D;
|
||||
|
||||
public class Collider2DShapeBehaviour : BehaviourOverride, IShapeCollider2D
|
||||
{
|
||||
public Action<ICollider2D, ICollider2D>? OnCollisionPreResolve { get; set; } = null;
|
||||
public Action<ICollider2D, ICollider2D>? OnCollisionResolved { get; set; } = null;
|
||||
|
||||
public Action<IAssignableTransform>? OnTransformAssigned { get; set; } = null;
|
||||
|
||||
|
||||
public Shape ShapeWorld => _shapeWorld;
|
||||
public Shape ShapeLocal { get; set; } = new([new(1f, 1f), new(-1f, 1f), new(-1f, -1f), new(1f, -1f)]);
|
||||
public IRigidBody2D? RigidBody2D { get; set; } = null;
|
||||
|
||||
protected Shape _shapeWorld = new([new(1f, 1f), new(-1f, 1f), new(-1f, -1f), new(1f, -1f)]);
|
||||
|
||||
ITransform IAssignableTransform.Transform => GameObject.Transform;
|
||||
|
||||
public bool Assign(ITransform transform) => GameObject.Assign(transform);
|
||||
|
||||
public virtual void Recalculate() => Transform.TransformShape(ShapeLocal, ref _shapeWorld);
|
||||
}
|
||||
Reference in New Issue
Block a user