<mx:Capability> Element

Capability required by a package.

This element is optional.

Syntax

<mx:Capability
  Name = string />  

Attributes

Name
The name of the capability. This attribute can have one of the following values:

Capability Description
kinectRequiredIndicates that major functionality or core behavior of your application requires Kinect.
kinectVisionThe title has access to Kinect vision data including infrared, depth, color and body index.
kinectAudioThe kinectAudio and kinectGamechat capabilities apply to audio input from either the Kinect or the headset mic; both are required to do gamechat/audio-in from either the Kinect or headset.
Note
Because both kinectAudio and kinectGamechat are required for all title chat, using Kinect or not, virtually all titles should declare both capabilities.
kinectExpressionsThe title has access to Kinect expressions data including expressions, activities, engagement, and appearance modifiers. If kinectExpressions is not specified the app will receive body frames with zeroes for expression data.
kinectFaceThe title has access to Kinect face and high definition face data.
kinectGamechatThe kinectAudio and kinectGamechat apply to audio input from either the Kinect or the headset mic; both are required to do gamechat/audio-in from either the Kinect or headset.
Note
Because both kinectAudio and kinectGamechat are required for all title chat, using Kinect or not, virtually all titles should declare both capabilities.
contentRestrictionsIndicates that the title implements content restrictions and is therefore exempt from any rating check when getting launched. If this capability is not set, your app must be rated.   See the Content Restriction overview for more information on ratings and content restriction.

Element information

Parent elements Capabilities

Example

<Capabilities>
  <Capability Name="internetClientServer" />
  <mx:Capability Name="contentRestrictions"/>
  <mx:Capability Name="kinectVision"/>
  <mx:Capability Name="kinectAudio"/>
  <mx:Capability Name="kinectFace"/>
  <mx:Capability Name="kinectExpressions"/>
  <mx:Capability Name="kinectGamechat"/>
  <mx:Capability Name="kinectRequired"/>
  <DeviceCapability Name="6a7e5907-885c-4bcb-b40a-073c067bd3d5"/>
</Capabilities>  

See also

Capability