> For the complete documentation index, see [llms.txt](https://inrhor.gitbook.io/imipet-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://inrhor.gitbook.io/imipet-wiki/development/example.md).

# 例子

对实体添加模型

\
1.使用已通过配置成功注册的宠物模型

```
Entity entity = ...;
String modelId = "模型ID"
ModelEntityManager modelEntityManager = new ModelEntityManager(entity, modelId);
ModelEntityManager.fastSpawnModel(modelEntityManager, modelId);
```

2.不使用注册的模型ID

```
Entity entity = ...;
String modelId = "模型ID"
ModelEntityManager modelEntityManager = new ModelEntityManager(entity, modelId);
modelEntityManager.setAnimationItemNameIdle("物品名称");
modelEntityManager.setAnimationItemNameWalk("物品名称");
modelEntityManager.setAnimationItemNameAttack("物品名称");
modelEntityManager.setAnimationCustomModelDataIdle(模型数据);
modelEntityManager.setAnimationCustomModelDataWalk(模型数据);
modelEntityManager.setAnimationCustomModelDataAttack(模型数据);
modelEntityManager.setModelLocationH(显示模型高度);
modelEntityManager.spawnModel();
```


---

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

```
GET https://inrhor.gitbook.io/imipet-wiki/development/example.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
