We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tipsとして、こちらに挙げておきます。 iPhoneで音が再生されない原因はiOSがブラウザ上で音の再生をユーザの操作時に限定しているからです。 一度、再生できればそのあとは再生できるので、初めのタッチでダミーの音を再生するように次のコードを app.run() の前に追加してみてください
app.domElement.addEventListener('touchend', function dummy() { var s = phina.asset.Sound(); s.loadFromBuffer(); s.play().stop(); app.domElement.removeEventListener('touchend', dummy); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tipsとして、こちらに挙げておきます。
iPhoneで音が再生されない原因はiOSがブラウザ上で音の再生をユーザの操作時に限定しているからです。
一度、再生できればそのあとは再生できるので、初めのタッチでダミーの音を再生するように次のコードを app.run() の前に追加してみてください
The text was updated successfully, but these errors were encountered: