When a user uses a slash command, a message including multiple select menus is sent. I'd like to access the selected values together in the sale place
So I have something like this basically as view:
class MyView(discord.ui.View):
@discord.ui.select(...)
async def callback_shape(self, select, interaction):
"""Returns the selected shape."""
...
@discord.ui.select(...)
async def callback_color(self, select, interaction):
"""Returns the selected color."""
...
The first callback gives me as value red, the second one gives me triangle
But these values are local to the callback as far as I understood
I'd like to have red and triangle available together somewhere tu use them in a query
Is that possible ?
Or do I need to think it in another way to have these informations together ?
NB: I tried to search for this keywords, and didn't find anything similar
Thank you
