Spreading a single texture across multiple meshes in a group #1821
Answered
by
drcmda
ashleymvanduzer
asked this question in
Q&A
-
Hey all, Say for example using a gltf model, is it possible to spread a single texture across two or more separate meshes that are in the same group, so it is traversing them, rather than repeating? Does this require recalculating the UVs? Not sure how to approach this. Any advice or examples would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Answered by
drcmda
Nov 10, 2021
Replies: 1 comment 4 replies
-
<group>
<mesh material={yourMaterial} />
<mesh material={yourMaterial} />
<mesh material={yourMaterial} /> and yes of course, textures and uvs have to suit the model. you can't just dress a model, nor re-calculate uvs, you need to specifically place a texture onto a specific surface or geometry in blender et al. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
ashleymvanduzer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
and yes of course, textures and uvs have to suit the model. you can't just dress a model, nor re-calculate uvs, you need to specifically place a texture onto a specific surface or geometry in blender et al.