Project290.Physics.DebugView.RemoveFlags C# (CSharp) Method

RemoveFlags() public method

Remove flags from the current flags.
public RemoveFlags ( DebugViewFlags flags ) : void
flags DebugViewFlags The flags.
return void
        public void RemoveFlags(DebugViewFlags flags)
        {
            Flags &= ~flags;
        }