Version: 2022.3
言語: 日本語
public void UpdateExternalTexture (IntPtr nativeTexture);

パラメーター

nativeTexture Native cubemap texture object.

説明

Updates Unity cubemap to use different native cubemap texture object.

This method is mostly useful for native code plugins that create platform specific cubemap texture objects outside of Unity, and need to use these cubemaps in Unity scenes. For a cubemap created with CreateExternalTexture, this method switches to another underlying cubemap texture object if/when it changes.

The actual contents of the native texture object will vary based on the native graphics API in use. For example, if DirectX is in use, the native texture object will need to be a pointer to an ID3D11ShaderResourceView. If OpenGL/OpenGL ES is in use, the native texture object should be a GLuint. If Metal, then the native texture object should be a MTLTexture.

See Also: CreateExternalTexture.