Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 660 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 660 Bytes

RuntimeTextureAtlas

Pack multiple textures into one rendertexture at runtime.

How To Use

RawImage image;
Texture texture;
...
image.PackTexture(texture);

Usecase

for a UI Scene which have 5 RawImage controls: screenshot

RTA pack all five texture into a rendertexture: rendertexture

4 drawcall saved.

without RTA with RTA
without RTA with RTA