2021-09-09 20:42:29 -04:00

26 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Sample Texture2D
Menu Path : **Operator > Sampling > Sample Texture2D**
The **Sample Texture2D** Operator samples a Texture2D for a specified UV and Mip level. This Operator uses the same **Filter Mode** and **Wrap Mode** as the input textures [import settings](https://docs.unity3d.com/Manual/class-TextureImporter.html).
This translates to a Sample() call on the texture in High-Level Shading Language (HLSL). For information on the differences between loading and sampling, see [Loading and sampling](#loading-and-sampling).
[!include[](Snippets/Operator-LoadingAndSampling.md)]
## Operator properties
| **Input** | **Type** | **Description** |
| ------------- | --------- | --------------------------------------- |
| **Texture** | Texture2D | The texture this Operator samples from. |
| **UV** | Vector2 | The UV to samples the Texture at. |
| **Mip Level** | float | The mip level to read from. |
| **Output** | **Type** | **Description** |
| ---------- | -------- | ---------------------------------- |
| **s** | Vector4 | The sampled value from the texture |
## Limitations
This Operator only runs on the GPU, therefore it does not work when plugged into **Spawner context** ports.