Reputation: 208
UiCollisionBehavior has four collision modes: 1. Items 2. Boundaries 3. Init(rawValue: UInt) 4. Everything
Is it possible to set collisionmode to nothing?
Upvotes: 0
Views: 44
Reputation: 1401
UICollisionBehaviorMode
is an option set, which means you can pass an 'empty array' ([]
) if you don't want any options.
Upvotes: 1