기술 자료

지원

Cloud Code

Cloud Code

사용 가능한 라이브러리

Find the complete list of libraries and Software Development Kits you can import in Cloud Code scripts.
읽는 시간 1분최근 업데이트: 한 달 전

다음은 Cloud Code 스크립트에서 임포트할 수 있는 라이브러리의 전체 목록입니다. 이러한 라이브러리를 통해 Cloud Code 스크립트에 사용할 수 있는 각 서비스 또는 유틸리티의 UGS 클라이언트 SDK에 액세스할 수 있습니다. 사용 가능한 Cloud Code Services JavaScript SDK의 전체 목록을 확인하려면 Cloud Code 서비스 SDK 기술 자료를 참고하십시오.
  1. 유틸리티 라이브러리, Lodash 버전 4
    const _ = require("lodash-4.17");
  2. Cloud Save API 클라이언트
    const { DataApi } = require("@unity-services/cloud-save-1.4");
  3. Economy API 클라이언트
    const { ConfigurationApi, InventoryApi, CurrenciesApi } = require("@unity-services/economy-2.4");
  4. Remote Config API 클라이언트
    const { SettingsApi } = require("@unity-services/remote-config-1.1");
  5. Vivox 라이브러리
    const { TokenApi } = require("@unity-services/vivox-0.1");
  6. Lobby API 클라이언트
    const { LobbyApi } = require("@unity-services/lobby-1.2");
  7. Leaderboards API 클라이언트
    const { LeaderboardsApi } = require("@unity-services/leaderboards-1.1");
  8. Matchmaker API 클라이언트
    const { TicketsApi, BackfillApi } = require("@unity-services/matchmaker-2.0");
  9. Friends API 클라이언트
    const { RelationshipsApi, PresenceApi, MessagingApi, NotificationsApi } = require("@unity-services/friends-1.0");
  10. Multiplay API 클라이언트
    const { AllocationsApi, FleetsApi } = require("@unity-services/multiplay-1.0");
  11. Player Authentication API 클라이언트
    const { PlayerAuthenticationApi } = require("@unity-services/player-auth-1.0");
  12. Player Names API 클라이언트
    const { PlayerNamesApi } = require("@unity-services/player-names-1.0");
Cloud Code를 다른 Unity 서비스와 연동하는 방법을 자세히 알아보려면 다른 Unity 서비스와 연동 페이지를 참고하시기 바랍니다.