SimpleTypeapp:WrapModeType
定義
テクスチャの貼り付け方を表現するための列挙型。
none:画像は繰り返されない
wrap:画像が繰り返される
mirror:画像は鏡面対称で繰り返される
clamp:フレームが引き延ばされる
border:指定された境界線色で塗りつぶされる
XMLスキーマ
<xs:simpleType name="WrapModeType">
	<xs:annotation>
		<xs:documentation>Fill mode for a texture. "wrap" repeats the texture, "clamp" extends the edges of the texture, and
			"border" fills all undefined areas with "borderColor"</xs:documentation>
	</xs:annotation>
	<xs:restriction base="xs:string">
		<xs:enumeration value="none"/>
		<xs:enumeration value="wrap"/>
		<xs:enumeration value="mirror"/>
		<xs:enumeration value="clamp"/>
		<xs:enumeration value="border"/>
	</xs:restriction>
</xs:simpleType>