Advertisement
_Dunno_

Transfer Texture

Feb 9th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using UnityEngine.Rendering;
  2. using UnityEngine.Rendering.RenderGraphModule;
  3.  
  4. public class TransferTexture : ContextItem
  5. {
  6.     public TextureHandle Value;
  7.  
  8.     public override void Reset()
  9.     {
  10.         Value = TextureHandle.nullHandle;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement