Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.12 KB

player-react.README.zh-CN.md

File metadata and controls

43 lines (30 loc) · 1.12 KB

简介

@icraft/player-react

npm 版本 npm 下载量

@icraft/player-react 是一个 React 前端组件,可以让你轻松地将在 iCraft Editor 中编辑的场景集成到你的项目中, 并提供丰富的交互事件和方法。

快速开始

安装

使用 npm 或 pnpm 安装 @icraft/player-react 包:

# 使用 npm
npm install @icraft/player-react --save

# 或使用 pnpm
pnpm install @icraft/player-react --save

注意:某些包管理器可能不会自动安装 @icraft/engine 包。如果缺少该包,请手动安装:

pnpm install @icraft/engine --save

基础用法

在你的项目中导入并使用 ICraftPlayer 组件:

import { ICraftPlayer } from "@icraft/player-react";

export default function MyScene() {
  return <ICraftPlayer src='your-scene.iplayer' />;
}

其中 src 是从 iCraft Editor 导出的 .iplayer 文件路径。