Three.js 73 bufferGeometry index& setDynamic

时间:2015-11-03 16:43:03

标签: three.js

r73 addAttribute('index'... )setIndex,我无法获取index属性并将其设置为动态。

setDynamic( true )

我动态创建线条,第一条线条有6个点,其次是14个点,等等。 我的代码与drawcalls& index作为属性。 (R71) 现在知道如何做到这一点? (R 73)

由于

1 个答案:

答案 0 :(得分:0)

您可以在创建属性时将其设置为动态属性,如下所示:

geometry.addAttribute( 'position', new THREE.BufferAttribute( positions, 3 ).setDynamic( true ) );

我假设您也可以使用索引值执行此操作。

请参阅完整示例here