Viewing multiple UV's from Alembic file
3530 2 0- Mumm
- Member
- 3 posts
- Joined: 5月 2018
- Offline
- tamte
- Member
- 8786 posts
- Joined: 7月 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 - 2018年6月14日 21:50:00
Tomas Slancik
FX Supervisor
Method Studios, NY
FX Supervisor
Method Studios, NY
- Mumm
- Member
- 3 posts
- Joined: 5月 2018
- Offline
-
- Quick Links