Hi there
Right now i am working some mods, which I want to interact with the collections. Sadly even after consulting with AI i can not make it work so that the mod interacts with collections (for example turn on). Any ideas how to fix that?
Indeed, as shown in the twitter api mod, you can use this to get the running collections
for collection in HS.overlay.main_collection.collections:
# do things to collection, note that you can also get the sub-collections with collection.collectionsUse this to start/stop a collection :
collection.restart_collection() collection.stop_collection() collection.is_stopped()