File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Node from '../core/Node.js';
22import { varyingProperty } from '../core/PropertyNode.js' ;
33import { instancedBufferAttribute , instancedDynamicBufferAttribute } from './BufferAttributeNode.js' ;
44import { normalLocal , transformNormal } from './Normal.js' ;
5- import { positionLocal , positionPrevious } from './Position.js' ;
5+ import { positionLocal } from './Position.js' ;
66import { nodeProxy , vec3 , mat4 } from '../tsl/TSLBase.js' ;
77import { NodeUpdateType } from '../core/constants.js' ;
88import { buffer } from '../accessors/BufferNode.js' ;
@@ -164,9 +164,6 @@ class InstanceNode extends Node {
164164 const instancePosition = instanceMatrixNode . mul ( positionLocal ) . xyz ;
165165 positionLocal . assign ( instancePosition ) ;
166166
167- const instancePositionPrevious = instanceMatrixNode . mul ( positionPrevious ) . xyz ;
168- positionPrevious . assign ( instancePositionPrevious ) ;
169-
170167 // NORMAL
171168
172169 if ( builder . hasGeometryAttribute ( 'normal' ) ) {
You can’t perform that action at this time.
0 commit comments