Format
typescript
Graphics.FlipAndBlit(source, dest, fliped)class: Graphics
Description
Copy the content of a RenderTexture to another RenderTexture, with the option to flip it.
This method is commonly used for implementing post-processing effects, image filters, and other operations.
Parameters
| param_name | type | description |
|---|---|---|
| source | Texture | The source texture. |
| dest | RenderTexture | The destination texture. |
| fliped | boolean | Whether to flip the texture or not. |
Return
| type | description |
|---|---|
void |
