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