com.github.asus4.texture-source 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -47,7 +47,7 @@ namespace TextureSource
47
47
  #elif UNITY_IOS
48
48
  _ => shaderForARKit,
49
49
  #else
50
- _ => throw new NotSupportedException($"ARFoundationTextureSource is not supported on {Application.platform}"),
50
+ _ => throw new System.NotSupportedException($"ARFoundationTextureSource is not supported on {Application.platform}"),
51
51
  #endif
52
52
  };
53
53
  }
@@ -39,7 +39,7 @@ namespace TextureSource
39
39
  #elif UNITY_IOS
40
40
  _ => "Unlit/ARKitBackground",
41
41
  #else
42
- _ => throw new NotSupportedException($"ARFoundationTextureSource is not supported on {Application.platform}"),
42
+ _ => throw new System.NotSupportedException($"ARFoundationTextureSource is not supported on {Application.platform}"),
43
43
  #endif
44
44
  };
45
45
  return Shader.Find(shaderName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.github.asus4.texture-source",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "displayName": "TextureSource",
5
5
  "description": "Simplify WebCamera and test video handling for using Computer Vision in Unity",
6
6
  "unity": "2020.3",