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

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

Last updated