x3d纹理过滤模式

x3d texture filtering mode

查看 ImageTexture and TextureProperties,我不清楚如何设置属性。
如何指定 magnificationFilter & minificationFilter 为线性?

<transform scale="1.01 1.01 1.01">
    <shape>
        <sphere></sphere>
        <appearance>
            <ImageTexture url="texture.png"></ImageTexture>
        </appearance>
    </shape>
</transform>
<ImageTexture url="texture.png">
    <TextureProperties generateMipMaps='TRUE' minificationFilter='LINEAR' magnificationFilter='LINEAR'></TextureProperties>
</ImageTexture >