Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

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.collections

Use this to start/stop a collection :

collection.restart_collection()
collection.stop_collection()
collection.is_stopped()