1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

photon ボイスチャット

Last updated at Posted at 2021-06-03

ボイスチャット

環境

OS : windows10 pro
Unity 2020.2.1f1
Photon2 ver 2.28.1
image.png
Device : ASUS,Galaxys7

Phothon Voice ver 2.23.1
image.png

 音声サンプル

PhotonVoice/Demos以下の*.unityをひらく

DemoVoiceMinimal 最小サンプル
ProximityVoiceChat 近づいたときに通話ができる
DemoVoicePun-Scene モデル表示、通話状態アイコンの表示

設定

通常のPUN2設定に加えてVoice用のIDも設定しておく

image.png

image.png

Environmentの下に赤字のmissingが複数あるので削除しておく。

有効になれば[DemoVoicePun-Scene]において、PUNが音を認識したときキャラの上に吹き出しアイコンが表示される。

image.png

遅延時間、音量

通話中の制御

[RequireComponent(typeof(PhotonVoiceView))]
public class PointersController : MonoBehaviour
{
//[SerializeField] 属性をつけていると、CS0649警告が出るようになった。消したい。
    #pragma warning disable 649
    [SerializeField]
    private GameObject pointerDown;
    [SerializeField]
    private GameObject pointerUp;
    #pragma warning restore 649

    private PhotonVoiceView photonVoiceView;
    private void Start()
    {
        this.photonVoiceView = this.GetComponent<PhotonVoiceView>();
    }

    private void Update()
    {
        this.SetActiveSafe(this.pointerDown, this.photonVoiceView.IsSpeaking);
        this.SetActiveSafe(this.pointerUp, this.photonVoiceView.IsRecording);
    }

    private void SetActiveSafe(GameObject go, bool active)
    {
        if (go != null && go.activeSelf != active)
        {
            go.SetActive(active);
        }
    }
}

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?