Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Suggestion / Idea  Possible option for rotating extrudeMesh uv's
#2
Hi there!

You mean an option to swap U and V coordinates, right? currently the texture will get tiled on the V axis.

Quote:That way there wouldn't be the need to manually rotate all textures so they repeat appropriately.

True, but not sure if having each rope texture in your project rotated in different directions is good. Usually it's better to choose a convention and stick to it. Imagine if Unity allowed you to choose between right and left handed coordinate systems, Y-up or Z-up, etc... this way you wouldn't need to tweak your .fbx export settings, but it would be chaos! Same for normal maps/tangent space: I can't count how many times I've had to invert the R and/or G channels of a normal map in PS for it to work in Unity, but at least all normal maps in a project are consistent with each other.

If you want rope renderers to tile the U coord instead, open up ObiRopeExtrudedRenderer.cs and swap .x and .y at lines 124 and 125:

Quote:uv.y = (j / (float)sectionSegments) * uvScale.x;
uv.x = vCoord;

cheers!
Reply


Messages In This Thread
RE: Possible option for rotating extrudeMesh uv's - by josemendez - 08-02-2022, 11:54 AM