File tree Expand file tree Collapse file tree
Basis/Packages/com.basis.eventdriver Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ public partial class BasisEventDriver : MonoBehaviour
6060 const int PROF_NET_COMPLETE_REMOTE_LERP = 3 ;
6161 const int PROF_NET_MICROPHONE = 4 ;
6262
63+ private static bool _hvrSimulateErrorLogged ;
64+
6365 // ── Partial method declarations (calls are stripped in non-editor builds) ──
6466 partial void ProfileLateUpdateInit ( ) ;
6567 partial void ProfileBegin ( int section ) ;
@@ -332,7 +334,11 @@ public void LateUpdate()
332334 }
333335 catch ( Exception ex )
334336 {
335- Debug . LogError ( $ "HVRBasisBuiltInAddresses.Simulate failed: { ex } ") ;
337+ if ( ! _hvrSimulateErrorLogged )
338+ {
339+ _hvrSimulateErrorLogged = true ;
340+ BasisDebug . LogError ( $ "HVRBasisBuiltInAddresses.Simulate failed: { ex } ") ;
341+ }
336342 }
337343
338344 // ── BlendShape simulate ──
You can’t perform that action at this time.
0 commit comments