mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 05:55:55 +00:00
Use bullet flags instead of bools
This commit is contained in:
parent
fa3805ecfe
commit
72c6270eb5
14 changed files with 49 additions and 38 deletions
|
|
@ -8,7 +8,10 @@ public enum BulletFlags
|
|||
Freezable = 1 << 1,
|
||||
Controllable = 1 << 2,
|
||||
Bouncy = 1 << 3,
|
||||
Piercing = 1 << 4,
|
||||
Grazeable = 1 << 5,
|
||||
Rotateable = 1 << 6,
|
||||
Piercing = 1 << 4,
|
||||
Grazeable = 1 << 5,
|
||||
Rotateable = 1 << 6,
|
||||
PersistSprite = 1 << 7,
|
||||
DieOutOfScreen = 1 << 8,
|
||||
// Max 31
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue