JSONLoader with texture

前端 未结 1 1155
挽巷
挽巷 2021-01-14 18:45

I made a shape with texture in Blender and exported it. Then with json loader displayed it. Almost everything is fine, geometry good, texture you can see on shape, but no co

相关标签:
1条回答
  • 2021-01-14 18:48

    Your material in your JSON file does not look right:

    You have

    "mapNormal" : "texture3.jpg"
    

    and it should be

    "mapDiffuse" : "texture3.jpg"
    

    three.js r.55

    0 讨论(0)
提交回复
热议问题