We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb66a3 commit 6ff0c0fCopy full SHA for 6ff0c0f
1 file changed
TouchDesigner/td-python/signalsTDPlugin.py
@@ -134,7 +134,7 @@ def _update_websocket_port(self) -> None:
134
def Update_connected(self, state):
135
self.PARConnected.val = state
136
137
- def Signals_start_up(self, resetWebSocket: bool = False):
+ def Signals_start_up(self, resetWebSocket: bool = True):
138
"""Signals Start-up Sequence
139
140
Ensures signals start up is consistent, and reliable.
@@ -343,6 +343,6 @@ def receive(self, msg):
343
self._update_control(new_control)
344
345
case 'start':
346
- self.Signals_start_up(resetWebSocket=True)
+ self.Signals_start_up(resetWebSocket=False)
347
case _:
348
print(msg)
0 commit comments