Skip to content

Commit 0264192

Browse files
committed
Fix for <terrain>
- Removed sid attribute - Made bounding_box_min and bounding_box_max optional
1 parent 07027f1 commit 0264192

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

schema/pvcollada_schema_0.1.xsd

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -761,23 +761,17 @@ xmlns:collada="http://www.collada.org/2008/03/COLLADASchema">
761761
<xs:documentation>Number of triangular faces in the terrain surface.</xs:documentation>
762762
</xs:annotation>
763763
</xs:element>
764-
<xs:element name="bounding_box_min" type="collada:float3_type">
764+
<xs:element name="bounding_box_min" type="collada:float3_type" minOccurs="0">
765765
<xs:annotation>
766766
<xs:documentation>Corner of bounding box. Opposite corner in bounding_box_max.</xs:documentation>
767767
</xs:annotation>
768768
</xs:element>
769-
<xs:element name="bounding_box_max" type="collada:float3_type">
769+
<xs:element name="bounding_box_max" type="collada:float3_type" minOccurs="0">
770770
<xs:annotation>
771771
<xs:documentation>Corner of bounding box. Opposite corner in bounding_box_min.</xs:documentation>
772772
</xs:annotation>
773773
</xs:element>
774774
</xs:sequence>
775-
<xs:attribute name="sid" type="collada:sid_type" use="required">
776-
<xs:annotation>
777-
<xs:documentation>The sid attribute is a text string value containing the sub-identifier of this element. This value must
778-
be unique within the scope of the parent element.</xs:documentation>
779-
</xs:annotation>
780-
</xs:attribute>
781775
</xs:complexType>
782776
</xs:element>
783777
<xs:element name="components">

0 commit comments

Comments
 (0)