> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/cyberpunk-2077-modding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/files-and-what-they-do/file-formats/appearance-.app-files/proxy-appearances.md).

# Proxy Appearances

## Summary

**Published**: Mar 02 2024 by [mana vortex](mailto:undefined)\
**Last documented update**: Mar 02 2024 by [mana vortex](mailto:undefined)

This page explains what **Level of Detail** is and how it works.

### Wait, this is not what I want!

* To learn about [Level of Detail (LoD)](/cyberpunk-2077-modding/for-mod-creators-theory/files-and-what-they-do/level-of-detail-lod.md), check the corresponding wiki page.

## What is a proxy appearance?

When displaying a complex object, the game loads between 1 and e^x components, each of which includes extra logic. That's all fine and dandy as long as you're up-close — but as soon as you're far away and the details vanish in the distance, it's a complete and utter waste of processing power.

That is where proxy appearances come in: instead of all the complex components and the complex shaders, you will see a single mesh with a bunch of baked-in textures.

{% hint style="success" %}
All modern computergames do this in one way or another.

Fun fact: the human brain works the same way. Unless you have [aphantasia](https://en.wikipedia.org/wiki/Aphantasia), you can try it out: For an object at the edge of your vision, **imagine it** with as high-fidelity as you can. After a minute of that (your brain needs time to render), look at the object and compare.
{% endhint %}

## I hate it, how do I kill it?

If a proxy appearance fucks up your NPV, here's how you can disable it:

1. Open the appearance's [components array](/cyberpunk-2077-modding/for-mod-creators-theory/files-and-what-they-do/file-formats/appearance-.app-files.md#components)
2. Find and delete the `AppearanceProxyMesh` component (it will be of the type `entSkinnedMeshComponent`)
3. Find and delete the `AppearanceVisualController` component (it will be of the type `AppearanceVisualControllerComponent`)
4. For each component with a mesh, set the `forceLodLevel` property to `0`

<figure><img src="/files/eOsIrPNd5CdqUJovph7B" alt=""><figcaption></figcaption></figure>


---

# 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://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/files-and-what-they-do/file-formats/appearance-.app-files/proxy-appearances.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.
