System¶
The System
element is the first element, which is used to create a simulated environment.
See also
- System
Explanation of the general concept of a system and its purpose in the motion software.
Example¶
1 2 3 | <System>
<!-- System configuration area -->
</System>
|
XML schema¶
1 2 3 4 5 6 7 8 | <xs:element name="System">
<xs:complexType>
<xs:all>
<xs:element ref="Properties" minOccurs="0" maxOccurs="1"/>
<xs:element ref="Controllers" minOccurs="0" maxOccurs="1"/>
</xs:all>
</xs:complexType>
</xs:element>
|