Getting Started

🥽 For VCC (VRChat Creator Companion)

System requirements

  • VRChat Creator Companion (Recommended)
  • There is a bundled sample scene created in Unity 2022.3.22f1; we recommend previewing it using the same version.

1. Import the registry via the VRChat Creator Companion (VCC)

Add to VCC

2. Import the package to your project

  1. Click on the “Manage Project” button in the VCC
  2. Find the “LaunchPad Icons” package and click on the “(+) Add package” button

3. Use the package, enjoy :D


📲 For Unity3D (without VRChat world / avatar project)

System requirements

  • There is a bundled sample scene created in Unity 2022.3.22f1; we recommend previewing it using the same version.

1. Download the package

Download the package from the latest release.

2. Manually resolve the dependencies

The package requires the following dependencies:

3. Import the package to your project

  1. Open your Unity project
  2. Drag and drop the downloaded package into the Unity Editor
  3. Click on the “Import” button

4. Use the package, enjoy :D


🌐 For Web (React / Solid)

System requirements

1. Install the package

npm i @kurone-kito/launchpad-icons-react
npm i @kurone-kito/launchpad-icons-solid

2. Use the package, enjoy :D

import { Avatars } from '@kurone-kito/launchpad-icons-react';
import type { FC } from 'react';

export const MyComponent: FC = () => <Avatars />;
import { Avatars } from '@kurone-kito/launchpad-icons-solid';
import type { Component } from 'solid-js';

export const MyComponent: Component = () => <Avatars />;