コード例 #1
0
 void HandleOnColorSensorUpdateEvent(nuitrack.ColorFrame frame)
 {
     if (colorFrame != null)
     {
         colorFrame.Dispose();
     }
     colorFrame = (nuitrack.ColorFrame)frame.Clone();
     //Debug.Log("Color Update");
     onColorUpdate?.Invoke(colorFrame);
 }
コード例 #2
0
    void HandleOnColorSensorUpdateEvent(nuitrack.ColorFrame frame)
    {
        if (ColorFrame != null)
        {
            ColorFrame.Dispose();
        }
        ColorFrame = (nuitrack.ColorFrame)frame.Clone();

        try
        {
            onColorUpdate?.Invoke(ColorFrame);
        }
        catch (Exception ex)
        {
            Debug.LogException(ex);
        }
    }