기술 자료

​
​

Development

User Acquisition

Monetization

산업 분야

Vivox Unity SDK

Vivox Unity SDK

Vivox
​
​
Vivox Unity SDK
  • Overview
  • Get started
  • Release notes
  • Developer guide
    • Set up your project
      • Integration with the Vivox Unity SDK
      • Initialize the SDK
        • Sign in with the Authentication package
        • Sign in with Custom IDs
        • Using Vivox Access Tokens together with UAS
      • Sign in to a game
      • Sign out of a game
    • Create voice and text channels
    • Messaging
    • Player management
    • Device management
    • Audio management
    • Mobile development
    • Text-to-speech
    • Speech-to-text
    • Real-time recording
    • Server-side-recording
    • Troubleshooting
  • Tutorials
  • Reference
  1. Vivox Unity SDK 기술 자료
  2. Vivox Unity 개발자 가이드

Authentication 패키지를 사용하여 로그인

Sign players in to Vivox using the Unity Authentication Package.
읽는 시간 1분
최근 업데이트: 8달 전

필수 조건: Unity 패키지 관리자 Vivox 패키지를 설정합니다.
Vivox 로그인을 관리하는 가장 쉬운 방법은 Unity Authentication 패키지를 사용하는 것입니다.
이 Authentication 패키지를 사용하려면 다음 단계를 완료합니다.
  1. 프로젝트
    manifest.json
    파일에
    com.unity.services.authentication
    엔트리가 있어야 합니다.
    자세한 내용은 Unity 기술 자료의 프로젝트 매니페스트를 참고하시기 바랍니다.
  2. 실행할 스크립트에 다음 코드 스니핏을 구현하여
    UnityServices
    를 초기한 다음 Vivox 기능을 사용합니다.
using System;using UnityEngine;using Unity.Services.Authentication;using Unity.Services.Core;using Unity.Services.Vivox;async void Start(){ await UnityServices.InitializeAsync(); await AuthenticationService.Instance.SignInAnonymouslyAsync(); await VivoxService.Instance.InitializeAsync();}
  1. VivoxService.Instance.LoginAsync(LoginOptions options = null)
    를 사용하여 로그인합니다.
  2. 채널 유형에 따라 다음 코드 예제 중 하나를 사용하여 채널에 참여합니다.
포지셔널 또는 논포지셔널 채널에 참여할 때 다음을 사용합니다.
VivoxService.Instance.JoinGroupChannelAsync(string channelName, ChatCapability chatCapability, ChannelOptions channelOptions = null), VivoxService.Instance.JoinPositionalChannelAsync(string channelName, ChatCapability chatCapability, Channel3DProperties positionalChannelProperties, ChannelOptions channelOptions = null)
에코 채널에 참여할 때 다음을 사용합니다.
VivoxService.Instance.JoinEchoChannelAsync(string channelName, ChatCapability chatCapability, ChannelOptions channelOptions = null)

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.


    이 페이지의 문제 보고