Skip to content

Commit

Permalink
Prettified Code!
Browse files Browse the repository at this point in the history
  • Loading branch information
leomcelroy authored and actions-user committed Feb 2, 2022
1 parent 1ee9234 commit 46e1ce3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions view.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,19 +457,23 @@ obj.hasTag("tag-name")
<b>Playing Tunes</b>
<br /><br />
To play a tune once:
<pre>playTune(tune_asset_name);
<pre>
playTune(tune_asset_name);
// or play multiple toons
playTune(tune_0, tune_1, tune_2);
</pre>
</pre
>
To play a tune on repeat:
<pre>loopTune(tune_asset_name);
<pre>
loopTune(tune_asset_name);
// or loop multiple toons
loopTune(tune_0, tune_1, tune_2);
</pre>
</pre
>
To stop a tune on repeat:
<pre>
const tuneToStop = loopTune(tune_asset_name);
Expand Down

0 comments on commit 46e1ce3

Please sign in to comment.