-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeMouse.xsd
More file actions
28 lines (23 loc) · 1.14 KB
/
AssetTypeMouse.xsd
File metadata and controls
28 lines (23 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="uri:ea.com:eala:asset"
xmlns:at="uri:ea.com:eala:asset:type"
xmlns:xas="uri:ea.com:eala:asset:schema"
targetNamespace="uri:ea.com:eala:asset"
elementFormDefault="qualified"
xmlns:XmlEdit="uri:ea.com:eala:XmlEdit">
<xs:include schemaLocation="Includes/Base.xsd"/>
<xs:complexType name="Mouse" xas:runtimeWrapper="::Mouse" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence/>
<xs:attribute name="DragTolerance" type="SageInt" default="48" />
<xs:attribute name="DragThreshold" type="Time" default="100ms" />
<!-- Radius within which clicks must occur to be considered a double-click event. -->
<xs:attribute name="InGameUIMaxDoubleClickDistance" type="SageUnsignedInt" default="20" />
<!-- We made the double click region over Apt hit regions smaller to handle weird shell bugs -->
<xs:attribute name="AptHitRegionMaxDoubleClickDistance" type="SageUnsignedInt" default="10" />
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>