> For the complete documentation index, see [llms.txt](https://myty.gitbook.io/products/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://myty.gitbook.io/products/sdk/myty-sdk-interface/choose-view-mode.md).

# Choose View Mode

Describe how to send message to Unity to change view mode of MYTY Avatar

## Background

MYTY Avatars support two view modes. FullBody and HeadOnly(AR). You can select the view mode runtime, for the purpose of usage.

## Input parameters

### Flag

If "true", HeadOnly(AR) mode enabled, else disabled

## Example Usage

```javascript
function setARMode(str: string)
{
  sendMessage("MessageHandler", "SetARMode", str);
}
```
