将3D模型从3D max导出到三个.js无法平铺。这本身并没有记录此功能的json文件设置
"materials": [
{
"DbgIndex" : 0,
"DbgName" : "02 - Default",
"colorDiffuse" : [0.5882, 0.5882, 0.5882],
"colorAmbient" : [0.5882, 0.5882, 0.5882],
"colorSpecular" : [0.9000, 0.9000, 0.9000],
"transparency" : 1.0,
"specularCoef" : 10.0,
"mapDiffuse" : "rabica.png",
"vertexColors" : false
},
答案 0 :(得分:0)
我使用了max exporter但是在使用平滑组时遇到了问题,所以不要使用它。我可能会在将来的某个阶段修补它 它似乎也没有设置你想要的'换行'设置 在查看JSONLoader和Loader代码之后,似乎它确实处理了在json文件中设置的换行 我想如果你手动编辑你的json文件,它看起来如下,它可能会工作。
"materials": [
{
"DbgIndex" : 0,
"DbgName" : "02 - Default",
"colorDiffuse" : [0.5882, 0.5882, 0.5882],
"colorAmbient" : [0.5882, 0.5882, 0.5882],
"colorSpecular" : [0.9000, 0.9000, 0.9000],
"transparency" : 1.0,
"specularCoef" : 10.0,
"mapDiffuse" : "rabica.png",
"vertexColors" : false,
"mapDiffuseWrap" : ["repeat", "repeat"]
},
虽然这是未经测试的