Aaron Demolder arono7342
  • Joined on 2012-08-25
Aaron Demolder commented on issue blender/blender#125385 2024-07-26 18:32:36 +02:00
PLY exporter does not support float vertex colors

Okay so SideFX have told me that using uchar even with values >255 is intentional:

"I am told at the time the exporter was written, most people wanted unsigned chars for colour, so it would…

Aaron Demolder commented on issue blender/blender#125385 2024-07-25 17:28:26 +02:00
PLY exporter does not support float vertex colors

@ChengduLittleA yeah I agree it shouldn't really be using uchar for this - but if I change it to uint or ushort it will load the values by casting them to float. e.g. colour value uint 306 is…

Aaron Demolder commented on issue blender/blender#125385 2024-07-25 13:56:24 +02:00
PLY exporter does not support float vertex colors

@ChengduLittleA Sure!

Houdini will export uchar but with values that exceed 255 (see test.ply) instead of wrapping around, and then as it imports will convert it back to float - but allows…

Aaron Demolder opened issue blender/blender#125385 2024-07-24 19:51:14 +02:00
PLY exporter does not support float vertex colors