color-assign-material.glsl 350 B

12345
  1. #if defined(dColorType_uniform)
  2. vec4 material.rgb = uColor;
  3. #elif defined(dColorType_attribute) || defined(dColorType_instance) || defined(dColorType_element) || defined(dColorType_elementInstance) || defined(dColorType_objectPicking) || defined(dColorType_instancePicking) || defined(dColorType_elementPicking)
  4. vec4 material = vColor;
  5. #endif