parent
4b4b1eac3d
commit
60e6b8c564
5 changed files with 25 additions and 12 deletions
@ -1,8 +1,17 @@ |
|||||||
[Flags] |
[Flags] |
||||||
public enum PhysicsLayer : uint { |
public enum PhysicsLayer : uint { |
||||||
Static = 1 << 0, |
/// <summary> Objects that are part of the scene, and never move. </summary> |
||||||
Dynamic = 1 << 1, |
Static = 1 << 0, |
||||||
Player = 1 << 2, |
/// <summary> Objects the player collides with, but may move. </summary> |
||||||
Item = 1 << 3, |
Dynamic = 1 << 1, |
||||||
Interactable = 1 << 8, |
/// <summary> The player. </summary> |
||||||
|
Player = 1 << 2, |
||||||
|
/// <summary> Small objects the player doesn't collide with, but collide with the player. </summary> |
||||||
|
Item = 1 << 3, |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> Objects that may be picked up. </summary> |
||||||
|
Pickup = 1 << 8, |
||||||
|
/// <summary> Objects that other objects may be placed against. </summary> |
||||||
|
Place = 1 << 9, |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue