> ## 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.

# Quickstart

> Quickstart Documentation for Sequence's Unity SDK.

<Steps>
  <Step title="Install the Unity SDK">
    Install the latest version of Sequence's Unity SDK from [OpenUPM](/sdk/unity/installation#openupm),
    or use [Unity's Package Manager UI](/sdk/unity/installation#or-using-package-manager-ui)
    and use the following Git URL `https://github.com/0xsequence/sequence-unity.git?path=/Packages/Sequence-Unity`
  </Step>

  <Step title="Configure the SDK">
    Sign in and create a project on [Sequence Builder](https://sequence.build).

    Download your config file from Builder as shown below.

    <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>

    Place this file in the root of a `Resources` folder.
  </Step>

  <Step title="Integrate your Login Process">
    Start by establishing a wallet session using an email OTP. Import the `Setup` Sample from the Package Manager UI
    which will place a set of boilerplates into your project in a `Resources/` directory.
    Create the [Login Boilerplate](/sdk/unity/bootstrap_game#login) to send a one-time password to the specified email address.

    Once you’ve your first features integrated, you can continue with [additional login providers](/sdk/unity/onboard/authentication/intro)
    such as Google, Apple, or PlayFab.

    ```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="Test Sequence's Features">
    Sequence's Unity SDK includes a variety of [Boilerplates](/sdk/unity/bootstrap_game) to help you quickly start your game.
    Once everything is configured, you can create prefabs to display an Player Profile, Inventory, or In-Game Shop.
    Checkout [how to integrate a Player Profile.](/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>
