> ## Documentation Index
> Fetch the complete documentation index at: https://frenglish.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# クイックスタート

> Sequence Unity SDK のクイックスタートドキュメントです。

<Steps>
  <Step title="Unity SDK のインストール">
    Sequence Unity SDK の最新版を [OpenUPM](/sdk/unity/installation#openupm) からインストールするか、
    [Unity のパッケージマネージャー UI](/sdk/unity/installation#or-using-package-manager-ui) を利用し、
    以下の Git URL を指定してください：`https://github.com/0xsequence/sequence-unity.git?path=/Packages/Sequence-Unity`
  </Step>

  <Step title="SDK の設定">
    [Sequence Builder](https://sequence.build) にサインインし、プロジェクトを作成します。

    下記の手順で Builder から設定ファイルをダウンロードしてください。

    <Frame>
      <img src="https://mintcdn.com/frenglish/aNsgjzLqI66etgtS/images/unity/builder_config_file.png?fit=max&auto=format&n=aNsgjzLqI66etgtS&q=85&s=125e6bcb95ccd7b4ec07b0d27fec24c4" width="1696" height="1450" data-path="images/unity/builder_config_file.png" />
    </Frame>

    このファイルを `Resources` フォルダのルートに配置します。
  </Step>

  <Step title="ログイン処理の統合">
    まず、メールのワンタイムパスワード（OTP）を使ってウォレットセッションを確立します。パッケージマネージャー UI から `Setup` サンプルをインポートすると、
    プロジェクトの `Resources/` ディレクトリに一式のボイラープレートが配置されます。
    [ログイン用ボイラープレート](/sdk/unity/bootstrap_game#login) を作成し、指定したメールアドレスにワンタイムパスワードを送信できるようにします。

    最初の機能が統合できたら、Google、Apple、PlayFab などの[追加ログインプロバイダー](/sdk/unity/onboard/authentication/intro)にも対応できます。

    ```csharp theme={null}
    BoilerplateFactory.OpenSequenceLoginWindow(parent);
    ```

    <Frame>
      <img src="https://mintcdn.com/frenglish/DW77RR7YqAk4ljjJ/images/unity/unity_boilerplate_login.png?fit=max&auto=format&n=DW77RR7YqAk4ljjJ&q=85&s=16a569a2059f83c590522ab24c462e50" width="1144" height="500" data-path="images/unity/unity_boilerplate_login.png" />
    </Frame>
  </Step>

  <Step title="Sequence の機能をテストする">
    Sequence Unity SDK には、ゲーム開発をすぐに始められるように様々な[ボイラープレート](/sdk/unity/bootstrap_game)が用意されています。
    設定が完了したら、プレイヤープロフィールやインベントリ、ゲーム内ショップを表示するプレハブを作成できます。
    [プレイヤープロフィールの統合方法](/sdk/unity/bootstrap_game#player-profile)もご覧ください。

    ```csharp theme={null}
    BoilerplateFactory.OpenSequencePlayerProfile(parent, wallet, chain);
    ```

    <Frame>
      <img src="https://mintcdn.com/frenglish/DW77RR7YqAk4ljjJ/images/unity/unity_boilerplate_profile.png?fit=max&auto=format&n=DW77RR7YqAk4ljjJ&q=85&s=ea8ad8a730f56dc26837b1bafa1bed38" width="1144" height="500" data-path="images/unity/unity_boilerplate_profile.png" />
    </Frame>
  </Step>
</Steps>
