Merge remote-tracking branch 'origin/v2.0-beta-feature-branch' into v2.0-beta-feature-branch

This commit is contained in:
Prohurtz 2025-02-18 14:30:45 -06:00
commit 4c0d542817

View File

@ -349,11 +349,12 @@ class CameraWidget:
self.start()
def recenter_eyes(self, osc_message: OSCMessage):
if osc_message.data is not bool:
if not isinstance(osc_message.data,bool):
return # just incase we get anything other than bool
self.settings.gui_recenter_eyes = True
def recalibrate_eyes(self, osc_message: OSCMessage):
if osc_message.data is not bool:
if not isinstance(osc_message.data,bool):
return # just incase we get anything other than bool
if osc_message.data: