24ba3ae1f6
# Conflicts: # resources/Schema/Components/PointLight.xsd # resources/Shaders/ForwardPlus.frag.glsl
20 lines
753 B
XML
20 lines
753 B
XML
<?xml version="1.0"?>
|
|
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:t="types">
|
|
<xs:import schemaLocation="../Types.xsd" namespace="types"/>
|
|
|
|
<xs:element name="PointLight">
|
|
<xs:annotation>
|
|
<xs:documentation>A pointlight that lights up geometry in a radius.</xs:documentation>
|
|
</xs:annotation>
|
|
<xs:complexType>
|
|
<xs:all>
|
|
<xs:element name="Color" type="t:Color" minOccurs="0"/>
|
|
<xs:element name="Radius" type="t:double" minOccurs="0"/>
|
|
<xs:element name="Intensity" type="t:double" minOccurs="0"/>
|
|
<xs:element name="Falloff" type="t:double" minOccurs="0" minInclusive="0" maxInclusive="1"/>
|
|
<xs:element name="Visible" type="t:bool" minOccurs="0"/>
|
|
</xs:all>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema> |