You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the existing source it is impossible to set nextTransition to value 6 which is correct, because the value is validated with wrong enum: nextTransition_val = self.atem.transitionStyles[nextTransition].value
in my case i have fixed in following way: nextTransition_val = nextTransition
which allows me to set any transition setting i need.
The text was updated successfully, but these errors were encountered:
For the existing source it is impossible to set nextTransition to value 6 which is correct, because the value is validated with wrong enum:
nextTransition_val = self.atem.transitionStyles[nextTransition].value
in my case i have fixed in following way:
nextTransition_val = nextTransition
which allows me to set any transition setting i need.
The text was updated successfully, but these errors were encountered: