Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

BGM Specifications in Decker

A topic by atprunya created 22 days ago Views: 94 Replies: 1
Viewing posts 1 to 2
(+3)

I am sorry that my English is not correct in some places because I am using machine translation.

I am developing a novel game, but I can't find a way to play BGM anywhere.

I can press a button to play the music, but the moment I move to another card, the music stops.

I would appreciate it if someone could tell me how to do this.

(+2)

Hello! Once again I'll use machine translation for the Japanese sections. I'm sorry if anything is difficult to understand.
こんにちは!日本語の部分では、今回も機械翻訳を使います。わかりにくいところがあったらごめんなさい。

Currently the code to play the music is in a button?
現在、音楽を再生するためのコードはボタン内にありますか?

The code section inside the button has the words "on click do" written in it, right? Which means "when this button is clicked, do this".
ボタン内のコードセクションには、「on click do」のようなテキストが書かれていますよね? これは、「誰かがボタンをクリックすると、これが実行されます」という意味です。

In this case, it might be more useful to put the instruction to play music in the "Card Script".
この場合、音楽を再生する指示を「Card Script」に入れると便利かもしれません。

You can find the Card Script in the menu here.
ここのメニューに「Card Script」があります。


Inside the card script, there is text that says "on view do" with the meaning "when this card is viewed, do this."
カードのスクリプト内には、「on view do」というテキストがあり、「このカードが表示されたら、これを実行します」という意味です。

The code to make music loop would look something like this. Replace "song" with what your audio clip is called.
音楽をループさせるコードは次のようになります。「song」をオーディオクリップの名前に置き換えてください。

on view do
play ["song" "loop"]
end

It's possible to play different music on different cards this way.
この方法では、異なるカードで異なる音楽を再生できます。

Or, if you want sudden silence, you can stop the music for a specific card.
または、突然静かにしたい場合は、特定のカードの音楽を停止することができます。

on view do
play[0 "loop"]
end


I hope this answer relates to your question.
この回答があなたの質問に関係するものであることを願います。

Sometimes a simple looping clip is all you need for atmosphere, so I'll leave it here for now.
雰囲気を出すには単純なループ クリップだけで十分な場合もあるので、ここではそのままにしておきます。

If I misunderstood something, it's okay to post both your original Japanese question and the English machine translation next time.
もし私が何かを誤解していたら、次回は元の日本語の質問と英語の機械翻訳の両方を投稿しても大丈夫です。

Good luck with your project! And please feel free to ask questions any time.  🙂
プロジェクトの成功をお祈りします。また、いつでもお気軽にご質問ください。