add, remove now accept iterables

update README

patch bump
This commit is contained in:
onyx-and-iris
2022-10-06 18:07:41 +01:00
parent 2f82e0b1fc
commit 550df917fb
3 changed files with 26 additions and 7 deletions

View File

@@ -316,8 +316,6 @@ Use the event class to toggle updates as necessary.
The following properties are available:
- `pdirty`: boolean
- `mdirty`: boolean
- `midi`: boolean
- `ldirty`: boolean
example:
@@ -326,6 +324,20 @@ example:
vban.event.ldirty = True
vban.event.pdirty = False
```
Or add, remove a list of events.
The following methods are available:
- `add()`
- `remove()`
- `get()`
example:
```python
vban.event.remove(["pdirty", "ldirty"])
# get a list of currently subscribed
print(vban.event.get())