Kaynağa Gözat

Fixed Cloth.js. See #11130

Mr.doob 8 yıl önce
ebeveyn
işleme
c732e5da34
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      examples/js/Cloth.js

+ 1 - 0
examples/js/Cloth.js

@@ -90,6 +90,7 @@ Particle.prototype.integrate = function( timesq ) {
 	newPos.multiplyScalar( DRAG ).add( this.position );
 	newPos.add( this.a.multiplyScalar( timesq ) );
 
+	this.tmp = this.previous;
 	this.previous = this.position;
 	this.position = newPos;