Skip to content

Commit

Permalink
Merge pull request #351 from x3dom/master
Browse files Browse the repository at this point in the history
zapier insta merge...
  • Loading branch information
andreasplesch committed Jun 20, 2022
2 parents e5bf84f + 4a63a7a commit 3b57b30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Version 1.8.3-dev

* Bugfixes
* support url field change for AudioClip
* better indices for textured IFS with creases
* ensure correct children order after ExternProto instancing
* delete Bindables on Inline removal
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/Sound/AudioClip.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ x3dom.registerNodeType(

this._startAudio = function ()
{
that._audio.loop = that._vf.loop ? "loop" : "";
if ( that._vf.enabled === true )
{
that._audio.play()
Expand Down Expand Up @@ -165,6 +164,7 @@ x3dom.registerNodeType(
src.setAttribute( "src", audioUrl );
this._audio.appendChild( src );
}
this._audio.load();
}
},

Expand Down

0 comments on commit 3b57b30

Please sign in to comment.