Initial Commit
This commit is contained in:
commit
ee5c2f922d
2255 changed files with 547750 additions and 0 deletions
19
Assets/Scripts/Data/Player/ActorCoverRaycastData.cs
Normal file
19
Assets/Scripts/Data/Player/ActorCoverRaycastData.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Unity.Entities;
|
||||
using UnityEngine;
|
||||
|
||||
namespace DefaultNamespace
|
||||
{
|
||||
public struct ActorCoverRaycastData : IComponentData
|
||||
{
|
||||
public float Height;
|
||||
public Vector2 TopHit;
|
||||
public Vector2 TopNormal;
|
||||
public bool1 HadTopHit;
|
||||
public float TopDistance;
|
||||
public float ForwardDistance;
|
||||
public Vector2 ForwardHit;
|
||||
public bool1 HadForwardHit;
|
||||
public Vector2 ForwardNormal;
|
||||
public float UpDistance;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue