我有一个 100m x 100m 的盒子在我正在进行的 reactVR 测试中用作地板,我想为其添加纹理,但瓷砖纹理只是根据需要延伸到整个表面而不是瓷砖。这是我的组件代码,没什么特别的:
<Box
dimWidth={100}
dimDepth={100}
dimHeight={0.5}
texture={asset('check_floor_tile.jpg')}
style={{
color:'#333333',
transform: [{translate: [0, -1, 0]}]
}}
lit
/>
我已经查看了没有成功的示例,任何帮助将不胜感激。谢谢。