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)
2. Import the package to your project
- Click on the “Manage Project” button in the VCC
- 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:
- Unity Vector Graphics (com.unity.vectorgraphics)
>=2.0.0-preview.24
3. Import the package to your project
- Open your Unity project
- Drag and drop the downloaded package into the Unity Editor
- 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 />;