Browse Source

Merge pull request #11481 from 06wj/patch-clock

clock.stop should set autoStart false
Mr.doob 8 năm trước cách đây
mục cha
commit
516307ac7d
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      src/core/Clock.js

+ 1 - 0
src/core/Clock.js

@@ -30,6 +30,7 @@ Object.assign( Clock.prototype, {
 
 
 		this.getElapsedTime();
 		this.getElapsedTime();
 		this.running = false;
 		this.running = false;
+		this.autoStart = false;
 
 
 	},
 	},