NativeWebSocket icon indicating copy to clipboard operation
NativeWebSocket copied to clipboard

Question about example

Open giraffesyo opened this issue 4 years ago • 0 comments

The example has the following code:

  void Update()
  {
    #if !UNITY_WEBGL || UNITY_EDITOR
      websocket.DispatchMessageQueue();
    #endif
  }

I was looking over the #define directives and it looks like to me, the second part of this, UNITY_EDITOR, will never be evaluated.

giraffesyo avatar Jun 07 '21 02:06 giraffesyo