Skip to content

Commit 40e148d

Browse files
author
Léna Voinchet
committed
Fix Dummy bug
1 parent 0772afe commit 40e148d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/scene/objects/SceneObjects.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ class SceneObjects{
512512
}
513513
if(datas.objects.hasOwnProperty('dummies'))
514514
{
515-
if(!Dummy.maleModel || Dummy.male2Model || !Dummy.femaleModel || !Dummy.female2Model || !Dummy.childModel)
515+
if(!Dummy.maleModel || !Dummy.male2Model || !Dummy.femaleModel || !Dummy.female2Model || !Dummy.childModel)
516516
{
517517
return;
518518
}
@@ -674,7 +674,7 @@ class SceneObjects{
674674
loadModel('child')
675675
]);
676676

677-
const newColor = 0x747474;
677+
const newColor = 0x898989;
678678
changeDummyColor(maleModel, newColor);
679679
changeDummyColor(male2Model, newColor);
680680
changeDummyColor(femaleModel, newColor);

0 commit comments

Comments
 (0)