Call multiple things with base.accept?

Is there a way to call multiple things with 1 key using base.accept?
A way to this besides making something that calls both of them then calling that…

Short answer, no. Each item can only listen to a given even once. If you want to have multiple things listening to one event, you need to use self.accept() for each thing (and ensure that you inherit from DirectObject).

David

I think I may get what you are saying but I am not entirely sure. Can you post an example. Doesn’t have to be any legit coding.

There are lots of examples in the forums. Try searching for self.accept.

David

Messed around with it and got it.