> For the complete documentation index, see [llms.txt](https://clunk.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://clunk.gitbook.io/docs/undefined/marketplace.md).

# 에셋 마켓

공개 에셋을 미리 보고 무료로 받아 게임에 넣는 방법

[에셋 마켓](https://clunk.games/marketplace)은 Clunk가 공개한 3D 모델, 텍스처, 스프라이트 시트와 애니메이션 파일을 고르는 곳입니다. 상품 카드와 상세 페이지에 보이는 폴리곤 수, 파일 크기, 색, 움직임 정보는 파일에서 측정한 값입니다.

{% hint style="success" %}
현재 베타 기간에는 공개된 **모든 에셋이 무료**입니다. 등급이 B·A·S 중 무엇이든 로그인하면 받을 수 있으며, 에셋마다 가격을 지불하거나 카드를 등록하는 흐름은 없습니다. 지금은 결제를 받지 않습니다.
{% endhint %}

## 받는 순서

{% stepper %}
{% step %}

## 1. 목록에서 고르기

이름이나 형식으로 검색하고, 3D 모델·2D·텍스처·움직임·테마 필터를 조합합니다. 한 장면을 함께 꾸밀 부품을 찾는다면 [키트](/docs/undefined/kits.md) 목록도 확인하세요.
{% endstep %}

{% step %}

## 2. 상세 페이지에서 확인하기

상품을 열면 파일 형식, 용량, 라이선스, 측정값과 확인 상태가 표시됩니다.

* 3D 모델은 드래그로 회전하고 휠로 확대합니다.
* 텍스처는 1×1, 2×2, 3×3 이어 붙임 미리보기로 이음새를 봅니다.
* 스프라이트 시트는 실제 공개 미리보기와 칸 정보를 기준으로 프레임을 확인합니다.
* 모델 페이지에 있는 스프라이트 시트는 같은 모델에서 구운 별도 파일로 표시됩니다. 시트가 목록에 중복 상품으로 다시 나오지는 않습니다.
  {% endstep %}

{% step %}

## 3. 받기

상세 페이지에서 **받기**를 누릅니다. 로그아웃 상태라면 [가입](https://clunk.games/signup) 또는 [로그인](https://clunk.games/login)으로 이동한 뒤 원래 상품으로 돌아옵니다. 로그인한 뒤에는 베타 기간 동안 공개 상품의 본 파일과 파일 목록을 받을 수 있습니다.

받은 파일은 계정에 남아 나중에 다시 받을 수 있습니다. 모델과 함께 표시되는 대표 이미지·미리보기 이미지는 상품을 고르는 데 쓰는 그림이며, 파일 목록에서 받는 본 파일과 구분됩니다.
{% endstep %}

{% step %}

## 4. 게임에 넣기

상품 상세의 **받아서 엔진에 넣기** 섹션에 있는 예제를 복사합니다. GLB 모델은 다음 방식으로 시작할 수 있습니다.

```js
import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";

new GLTFLoader().load("/assets/your-file.glb", (gltf) => {
  scene.add(gltf.scene);
});
```

React Three Fiber에서는 `@react-three/drei`의 `useGLTF` 예제가 표시됩니다. Godot는 프로젝트 폴더에 파일을 넣어 가져오고, Unity는 glTF importer(예: glTFast)가 필요할 수 있습니다. 각 파일의 확장과 importer는 상품 상세 및 엔진의 현재 문서를 우선합니다.
{% endstep %}
{% endstepper %}

## 라이선스와 확인 상태

마켓 에셋은 게임·앱·의뢰 작업에 상업적으로 사용할 수 있고 출처 표기는 필요하지 않습니다. 원본이나 수정본 파일 자체를 다른 마켓·파일 공유 사이트에서 재판매·재배포하는 것은 허용되지 않습니다. 자세한 조건은 [에셋 라이선스](https://clunk.games/licensing)를 확인하세요.

상품의 **파일 규격**이 확인되었다는 것은 구조와 정책을 측정했다는 뜻입니다. 게임 화면에서의 엔진 렌더와 게임 시점 확인은 별도 상태이므로, 상세 페이지에서 `확인 전`으로 남은 칸을 자동 승인으로 읽지 마세요.

받은 GLB·glTF를 내 게임 기준으로 다시 보려면 [에셋 검사](https://clunk.games/app)에서 직접 파일을 선택합니다.

## 관련 문서

* [빠른 시작](/docs/undefined/quickstart.md)
* [에셋 제작](/docs/undefined/create.md)
* [에셋 검사와 안전한 수정](/docs/undefined/inspect.md)
* [키트와 내 묶음](/docs/undefined/kits.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://clunk.gitbook.io/docs/undefined/marketplace.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
