Viewing multiple UV's from Alembic file
3517 2 0- Mumm
- Member
- 3 posts
- Joined: May 2018
- Offline
- tamte
- Member
- 8784 posts
- Joined: July 2007
- Offline
there is a dropdown in the top/right corner of the UV view that allows you to switch among all attributes marked as Texture Coordinate as well as any attributes named uv, uv2, … if present on the current geometry
if you don't see your attribute there, you can use Attribute Create with Write Values off to mark it as Texture Coordinate using the type dropdown
or using setattributetypeinfo() VEX function:
if you don't see your attribute there, you can use Attribute Create with Write Values off to mark it as Texture Coordinate using the type dropdown
or using setattributetypeinfo() VEX function:
setattribtypeinfo(0, "vertex", "myvectorattrib", "texturecoord"); //or for point attribs setattribtypeinfo(0, "point", "myvectorattrib", "texturecoord");
Edited by tamte - June 14, 2018 21:50:00
Tomas Slancik
FX Supervisor
Method Studios, NY
FX Supervisor
Method Studios, NY
- Mumm
- Member
- 3 posts
- Joined: May 2018
- Offline
-
- Quick Links