mirror of
https://github.com/osukey/osukey.git
synced 2025-05-20 21:17:32 +09:00
Add "None" snap type to fix flags not working correctly
This commit is contained in:
parent
5af7641e94
commit
b3d6f76cfa
@ -8,8 +8,9 @@ namespace osu.Game.Rulesets.Edit
|
|||||||
[Flags]
|
[Flags]
|
||||||
public enum SnapType
|
public enum SnapType
|
||||||
{
|
{
|
||||||
NearbyObjects = 0,
|
None = 0,
|
||||||
Grids = 1,
|
NearbyObjects = 1 << 0,
|
||||||
|
Grids = 1 << 1,
|
||||||
All = NearbyObjects | Grids,
|
All = NearbyObjects | Grids,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user