Skip to content
New issue

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

controller.OnChangeVolumeで設定した関数が呼ばれない #3

Open
hirokitamakoshi opened this issue Jan 11, 2024 · 0 comments
Open

Comments

@hirokitamakoshi
Copy link

hirokitamakoshi commented Jan 11, 2024

下記のようなスクリプトを作ったのですが、iPhoneの音量ボタンを押して音量を上げ下げしても、変化した音量がログに表示されません。
このスクリプト自体が実行されていることは、"started"がログに出力されることから確認しています。

public class VolumeAlert : MonoBehaviour
{
    private SystemVolumeController controller;

    void Start()
    {
        controller = new SystemVolumeController();
        controller.OnChangeVolume = volume => { Debug.Log( $"{volume}" ) };
        Debug.Log( "started" );
    }

    void Update()
    {        
    }
}

環境は下記の通りです。
Unity Editor 2022.3.16f1
Xcode 15.2
iOS 16.7.2

@hirokitamakoshi hirokitamakoshi changed the title controller.OnChangeVolu mee controller.OnChangeVolumeで設定した関数が呼ばれない Jan 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant