Merge branch 'dev' into fuel-prediction
2016
A320-main.xml
|
@ -129,6 +129,7 @@ var revisionFile = (getprop("/sim/aircraft-dir") ~ "/revision.txt");
|
|||
var current_revision = io.readfile(revisionFile);
|
||||
print("A320-family Revision: " ~ current_revision);
|
||||
setprop("/systems/acconfig/revision", current_revision);
|
||||
setprop("/systems/acconfig/options/fo-view", 0);
|
||||
|
||||
setlistener("/systems/acconfig/new-revision", func {
|
||||
if (getprop("/systems/acconfig/new-revision") > current_revision) {
|
||||
|
@ -194,6 +195,11 @@ setlistener("/sim/signals/fdm-initialized", func {
|
|||
{
|
||||
save.restore(save.default, getprop("/sim/fg-home") ~ "/Export/" ~ getprop("/sim/aircraft") ~ "-save.xml");
|
||||
}
|
||||
|
||||
if (getprop("/options/system/fo-view") == 1) {
|
||||
view.setViewByIndex(100);
|
||||
}
|
||||
|
||||
spinning.stop();
|
||||
});
|
||||
|
||||
|
@ -239,7 +245,7 @@ var readSettings = func {
|
|||
setprop("/systems/apu/oil/allow-oil-consumption", getprop("/systems/acconfig/options/allow-oil-consumption"));
|
||||
setprop("/sim/model/autopush/route/show", getprop("/systems/acconfig/options/autopush/show-route"));
|
||||
setprop("/sim/model/autopush/route/show-wingtip", getprop("/systems/acconfig/options/autopush/show-wingtip"));
|
||||
|
||||
setprop("/options/system/fo-view", getprop("/systems/acconfig/options/fo-view"));
|
||||
}
|
||||
|
||||
var writeSettings = func {
|
||||
|
@ -250,6 +256,7 @@ var writeSettings = func {
|
|||
setprop("/systems/acconfig/options/allow-oil-consumption", getprop("/systems/apu/oil/allow-oil-consumption"));
|
||||
setprop("/systems/acconfig/options/autopush/show-route", getprop("/sim/model/autopush/route/show"));
|
||||
setprop("/systems/acconfig/options/autopush/show-wingtip", getprop("/sim/model/autopush/route/show-wingtip"));
|
||||
setprop("/systems/acconfig/options/fo-view", getprop("/options/system/fo-view"));
|
||||
io.write_properties(getprop("/sim/fg-home") ~ "/Export/A320-family-config.xml", "/systems/acconfig/options");
|
||||
}
|
||||
|
||||
|
|
|
@ -127,6 +127,10 @@
|
|||
<halign>left</halign>
|
||||
<label>CTRL + K - Disable MCDU keyboard input</label>
|
||||
</text>
|
||||
<text>
|
||||
<halign>left</halign>
|
||||
<label>CTRL + V - Select Pilot Flying view (See Aircraft Configuration dialog)</label>
|
||||
</text>
|
||||
|
||||
</group>
|
||||
|
||||
|
|
|
@ -446,6 +446,26 @@
|
|||
</binding>
|
||||
<live>true</live>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<label>First Officer is the Pilot Flying</label>
|
||||
<halign>left</halign>
|
||||
<property>/options/system/fo-view</property>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>/options/system/fo-view</property>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>dialog-apply</command>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>
|
||||
acconfig.writeSettings();
|
||||
</script>
|
||||
</binding>
|
||||
<live>true</live>
|
||||
</checkbox>
|
||||
|
||||
<checkbox>
|
||||
<!-- TODO there might be a better way to formulate this. -->
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
25
Models/Effects/cockpit-irradiance-vertical.eff
Normal file
|
@ -0,0 +1,25 @@
|
|||
<PropertyList>
|
||||
<name>panel</name>
|
||||
<inherits-from>Effects/model-interior</inherits-from>
|
||||
<parameters>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
<positive-y>Models/Effects/res/white.png</positive-y>
|
||||
<negative-y>Models/Effects/res/white.png</negative-y>
|
||||
<positive-z>Models/Effects/res/white.png</positive-z>
|
||||
<negative-z>Models/Effects/res/white.png</negative-z>
|
||||
</images>
|
||||
</texture>
|
||||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
|
@ -2,10 +2,10 @@
|
|||
<name>panel</name>
|
||||
<inherits-from>Effects/model-interior</inherits-from>
|
||||
<parameters>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -18,8 +18,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,8 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +26,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,8 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +26,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,8 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +26,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,24 +12,24 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
<positive-y>Models/Effects/res/white.png</positive-y>
|
||||
<negative-y>Models/Effects/res/white.png</negative-y>
|
||||
<positive-z>Models/Effects/res/white.png</positive-z>
|
||||
<negative-z>Models/Effects/res/white.png</negative-z>
|
||||
<positive-x>Models/Effects/res/0004.png</positive-x>
|
||||
<negative-x>Models/Effects/res/0002.png</negative-x>
|
||||
<positive-y>Models/Effects/res/0001.png</positive-y>
|
||||
<negative-y>Models/Effects/res/0003.png</negative-y>
|
||||
<positive-z>Models/Effects/res/0006.png</positive-z>
|
||||
<negative-z>Models/Effects/res/0005.png</negative-z>
|
||||
</images>
|
||||
</texture>
|
||||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">2</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.1</irradiance-map-strength>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/white.png</positive-x>
|
||||
<negative-x>Models/Effects/res/white.png</negative-x>
|
||||
|
@ -28,8 +28,8 @@
|
|||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.207344 0.0 0.797276</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 0.672 0.672 0.672</opacity-cube-scale>
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
|
@ -1,22 +1,35 @@
|
|||
<PropertyList>
|
||||
<name>tiller</name>
|
||||
<inherits-from>Effects/model-combined-deferred</inherits-from>
|
||||
<inherits-from>Effects/model-interior</inherits-from>
|
||||
<parameters>
|
||||
<normalmap-enabled type="int">0</normalmap-enabled>
|
||||
<reflection-enabled type="int">0</reflection-enabled>
|
||||
<reflection-dynamic type="int">0</reflection-dynamic>
|
||||
<reflect_map-enabled type="int">0</reflect_map-enabled>
|
||||
<reflection-correction type="float">0.1</reflection-correction>
|
||||
<lightmap-enabled type="int">1</lightmap-enabled>
|
||||
<lightmap-multi type="int">0</lightmap-multi>
|
||||
<lightmap-factor type="float" n="0"><use>/controls/lighting/main-flood-norm</use></lightmap-factor>
|
||||
<lightmap-factor type="float" n="0"><use>/controls/lighting/panel-light</use></lightmap-factor>
|
||||
<lightmap-color type="vec3d" n="0">1.0 1.0 1.0</lightmap-color>
|
||||
<texture n="3">
|
||||
<image>Aircraft/A320-family/Models/Effects/tiller.png</image>
|
||||
<image>Aircraft/A320-family/Models/Effects/panel-floodlight.png</image>
|
||||
<filter>linear-mipmap-linear</filter>
|
||||
<wrap-s>clamp</wrap-s>
|
||||
<wrap-t>clamp</wrap-t>
|
||||
<internal-format>normalized</internal-format>
|
||||
</texture>
|
||||
<irradiance-map-type type="int">1</irradiance-map-type>
|
||||
<irradiance-map-strength type="float">0.33</irradiance-map-strength>
|
||||
<texture n="4">
|
||||
<type>cubemap</type>
|
||||
<images>
|
||||
<positive-x>Models/Effects/res/0004.png</positive-x>
|
||||
<negative-x>Models/Effects/res/0002.png</negative-x>
|
||||
<positive-y>Models/Effects/res/0001.png</positive-y>
|
||||
<negative-y>Models/Effects/res/0003.png</negative-y>
|
||||
<positive-z>Models/Effects/res/0006.png</positive-z>
|
||||
<negative-z>Models/Effects/res/0005.png</negative-z>
|
||||
</images>
|
||||
</texture>
|
||||
<!--
|
||||
the cube center must be the same as the camera x,y,z in blend
|
||||
-->
|
||||
<opacity-cube-center type="vec3d" n="0"> 0.262764 0.0 0.610718</opacity-cube-center>
|
||||
<opacity-cube-scale type="vec3d" n="0"> 1.0 2.0 1.0</opacity-cube-scale>
|
||||
<opacity-cube-angle type="float">0.0</opacity-cube-angle>
|
||||
</parameters>
|
||||
</PropertyList>
|
||||
|
|
Before Width: | Height: | Size: 420 KiB After Width: | Height: | Size: 420 KiB |
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 415 KiB After Width: | Height: | Size: 415 KiB |
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 520 KiB After Width: | Height: | Size: 520 KiB |
Before Width: | Height: | Size: 559 KiB After Width: | Height: | Size: 559 KiB |
Before Width: | Height: | Size: 559 KiB After Width: | Height: | Size: 559 KiB |
|
@ -7,17 +7,17 @@
|
|||
<path>res/Audio.ac</path>
|
||||
|
||||
<!-- Headset show/hide on Audio Control Panel(click on body) -->
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>audio_body</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>controls/audio/headset-toggle</property>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>audio_body</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>controls/audio/headset-toggle</property>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<!-- INT/RAD switch -->
|
||||
<animation>
|
||||
|
|
|
@ -4,20 +4,20 @@
|
|||
|
||||
<PropertyList>
|
||||
|
||||
<path>res/Audio.ac</path>
|
||||
<path>res/Audio1.ac</path>
|
||||
|
||||
<!-- Headset show/hide on Audio Control Panel(click on body) -->
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>audio_body</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>controls/audio/headset-toggle</property>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>audio_body</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>property-toggle</command>
|
||||
<property>controls/audio/headset-toggle</property>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<!-- INT/RAD switch -->
|
||||
<animation>
|
||||
|
|
47995
Models/Instruments/Audio/res/Audio1.ac
Normal file
|
@ -1,77 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<!-- Copyright (c) 2020 Josh Davidson (Octal450) -->
|
||||
|
||||
<!-- Brakes Pressure Indicator -->
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<path>res/Brakes.ac</path>
|
||||
|
||||
<!-- Left Brake Pressure Indicator -->
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>brakes_lb_psi</object-name>
|
||||
<property>systems/hydraulic/brakes/pressure-left-psi</property>
|
||||
<factor>0.03</factor>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>systems/hydraulic/brakes/mode</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<axis>
|
||||
<object-name>brakes_lb_psi.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>brakes_rb_psi</object-name>
|
||||
<property>systems/hydraulic/brakes/pressure-right-psi</property>
|
||||
<factor>-0.03</factor>
|
||||
<condition>
|
||||
<equals>
|
||||
<property>systems/hydraulic/brakes/mode</property>
|
||||
<value>2</value>
|
||||
</equals>
|
||||
</condition>
|
||||
<axis>
|
||||
<object-name>brakes_rb_psi.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>brakes_accum_psi</object-name>
|
||||
<property>systems/hydraulic/brakes/accumulator-pressure-psi</property>
|
||||
<interpolation>
|
||||
<entry><ind>0</ind><dep>0</dep></entry>
|
||||
<entry><ind>700</ind><dep>66</dep></entry>
|
||||
<entry><ind>2000</ind><dep>78</dep></entry>
|
||||
<entry><ind>3000</ind><dep>90</dep></entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<object-name>brakes_accum_psi.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>Panel lighting</name>
|
||||
<type>material</type>
|
||||
<object-name>brakes_body</object-name>
|
||||
<emission>
|
||||
<red>0.3</red>
|
||||
<green>0.3</green>
|
||||
<blue>0.3</blue>
|
||||
<factor-prop>sim/model/lights/dome-light</factor-prop>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/brake</inherits-from>
|
||||
<object-name>brakes_body</object-name>
|
||||
</effect>
|
||||
|
||||
</PropertyList>
|
|
@ -1,275 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<!--
|
||||
############################################
|
||||
# Copyright (c) Thorsten Herrmann (TH-555) #
|
||||
############################################
|
||||
-->
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<path>res/DDRMI.ac</path>
|
||||
|
||||
<!-- heading and pointer -->
|
||||
<animation>
|
||||
<name>Heading rotate</name>
|
||||
<type>rotate</type>
|
||||
<object-name>ddrmi_hdg</object-name>
|
||||
<property>instrumentation/ddrmi/heading</property>
|
||||
<axis>
|
||||
<object-name>ddrmi_hdg.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>VOR1 rotate</name>
|
||||
<object-name>ddrmi_pointer_1</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/needle-1</property>
|
||||
<axis>
|
||||
<object-name>ddrmi_hdg.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>VOR2 rotate</name>
|
||||
<object-name>ddrmi_pointer_2</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/needle-2</property>
|
||||
<axis>
|
||||
<object-name>ddrmi_hdg.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<!-- Knobs -->
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>ddrmi_vor_adf_select_1</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable type="bool">false</repeatable>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>instrumentation/ddrmi/vor-adf-1</property>
|
||||
<value>0</value> <!-- OFF -->
|
||||
<value>1</value> <!-- VOR -->
|
||||
<value>-1</value> <!-- ADF -->
|
||||
</binding>
|
||||
</action>
|
||||
<action>
|
||||
<button>1</button>
|
||||
<repeatable type="bool">false</repeatable>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>instrumentation/ddrmi/vor-adf-1</property>
|
||||
<value>-1</value> <!-- ADF -->
|
||||
<value>1</value> <!-- VOR -->
|
||||
<value>0</value> <!-- OFF -->
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
<animation>
|
||||
<name>Knob 1 rotate</name>
|
||||
<object-name>ddrmi_vor_adf_select_1</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/vor-adf-1</property>
|
||||
<interpolation>
|
||||
<entry><ind>-1</ind><dep>90</dep></entry>
|
||||
<entry><ind> 0</ind><dep>45</dep></entry>
|
||||
<entry><ind> 1</ind><dep> 0</dep></entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<object-name>ddrmi_vor_adf_select_1.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>ddrmi_vor_adf_select_2</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable type="bool">false</repeatable>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>instrumentation/ddrmi/vor-adf-2</property>
|
||||
<value>0</value> <!-- OFF -->
|
||||
<value>1</value> <!-- VOR -->
|
||||
<value>-1</value> <!-- ADF -->
|
||||
</binding>
|
||||
</action>
|
||||
<action>
|
||||
<button>1</button>
|
||||
<repeatable type="bool">false</repeatable>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>instrumentation/ddrmi/vor-adf-2</property>
|
||||
<value>-1</value> <!-- ADF -->
|
||||
<value>1</value> <!-- VOR -->
|
||||
<value>0</value> <!-- OFF -->
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
<animation>
|
||||
<name>Knob 2 rotate</name>
|
||||
<object-name>ddrmi_vor_adf_select_2</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/vor-adf-2</property>
|
||||
<interpolation>
|
||||
<entry><ind>-1</ind><dep>-90</dep></entry>
|
||||
<entry><ind> 0</ind><dep>-45</dep></entry>
|
||||
<entry><ind> 1</ind><dep> 0</dep></entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<object-name>ddrmi_vor_adf_select_2.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<!-- Flags -->
|
||||
|
||||
<animation>
|
||||
<name>Flag 1 rotate</name>
|
||||
<object-name>ddrmi_vor_adf_flag_1</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/flag-1</property>
|
||||
<interpolation>
|
||||
<entry><ind>0</ind><dep>45</dep></entry>
|
||||
<entry><ind>1</ind><dep> 0</dep></entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<object-name>ddrmi_vor_adf_flag_1.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>Flag 2 rotate</name>
|
||||
<object-name>ddrmi_vor_adf_flag_2</object-name>
|
||||
<type>rotate</type>
|
||||
<property>instrumentation/ddrmi/flag-2</property>
|
||||
<interpolation>
|
||||
<entry><ind>0</ind><dep>-45</dep></entry>
|
||||
<entry><ind>1</ind><dep> 0</dep></entry>
|
||||
</interpolation>
|
||||
<axis>
|
||||
<object-name>ddrmi_vor_adf_flag_2.axis</object-name>
|
||||
</axis>
|
||||
</animation>
|
||||
|
||||
<!-- Lighting -->
|
||||
<animation>
|
||||
<name>DDRMI inside illumination</name>
|
||||
<type>material</type>
|
||||
<object-name>ddrmi_pointer_1</object-name>
|
||||
<object-name>ddrmi_pointer_2</object-name>
|
||||
<object-name>ddrmi_inside</object-name>
|
||||
<object-name>ddrmi_pointer_1_vor</object-name>
|
||||
<object-name>ddrmi_pointer_1_adf</object-name>
|
||||
<object-name>ddrmi_pointer_2_vor</object-name>
|
||||
<object-name>ddrmi_pointer_2_adf</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_2</object-name>
|
||||
<object-name>ddrmi_hdg</object-name>
|
||||
<!-- <emission>
|
||||
<red>0.50</red>
|
||||
<green>0.35</green>
|
||||
<blue>0.2</blue>
|
||||
<factor-prop>controls/lighting/main-panel-norm</factor-prop>
|
||||
</emission> -->
|
||||
<condition>
|
||||
<not>
|
||||
<and>
|
||||
<greater-than>
|
||||
<property>sim/model/lights/dome-light</property>
|
||||
<value>0</value>
|
||||
</greater-than>
|
||||
<less-than>
|
||||
<property>controls/lighting/main-panel-norm</property>
|
||||
<value>0.25</value>
|
||||
</less-than>
|
||||
</and>
|
||||
</not>
|
||||
</condition>
|
||||
<emission>
|
||||
<red>0.50</red>
|
||||
<green>0.35</green>
|
||||
<blue>0.2</blue>
|
||||
<factor-prop>controls/lighting/main-panel-norm</factor-prop>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>Panel lighting (dome)</name>
|
||||
<type>material</type>
|
||||
<!-- <object-name>ddrmi_dme1_screen</object-name>-->
|
||||
<!-- <object-name>ddrmi_dme2_screen</object-name>-->
|
||||
<object-name>ddrmi_pointer_1</object-name>
|
||||
<object-name>ddrmi_pointer_2</object-name>
|
||||
<object-name>ddrmi_inside</object-name>
|
||||
<object-name>ddrmi_pointer_1_vor</object-name>
|
||||
<object-name>ddrmi_pointer_1_adf</object-name>
|
||||
<object-name>ddrmi_pointer_2_vor</object-name>
|
||||
<object-name>ddrmi_pointer_2_adf</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_2</object-name>
|
||||
<object-name>ddrmi_hdg</object-name>
|
||||
<!-- <emission>
|
||||
<red>0.3</red>
|
||||
<green>0.3</green>
|
||||
<blue>0.3</blue>
|
||||
<factor-prop>sim/model/lights/dome-light</factor-prop>
|
||||
</emission> -->
|
||||
<condition>
|
||||
<and>
|
||||
<not>
|
||||
<greater-than>
|
||||
<property>controls/lighting/main-panel-norm</property>
|
||||
<value>0.25</value>
|
||||
</greater-than>
|
||||
</not>
|
||||
<greater-than>
|
||||
<property>sim/model/lights/dome-light</property>
|
||||
<value>0</value>
|
||||
</greater-than>
|
||||
</and>
|
||||
</condition>
|
||||
<emission>
|
||||
<red>0.20</red>
|
||||
<green>0.20</green>
|
||||
<blue>0.20</blue>
|
||||
<factor-prop>sim/model/lights/dome-light</factor-prop>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<name>DDRMI body lighting</name>
|
||||
<type>material</type>
|
||||
<object-name>ddrmi_body</object-name>
|
||||
<object-name>ddrmi_vor_adf_select_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_select_2</object-name>
|
||||
<emission>
|
||||
<red>0.2</red>
|
||||
<green>0.2</green>
|
||||
<blue>0.2</blue>
|
||||
<factor-prop>sim/model/lights/dome-light</factor-prop>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/ddrmi</inherits-from>
|
||||
<object-name>ddrmi_body</object-name>
|
||||
<object-name>ddrmi_vor_adf_select_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_select_2</object-name>
|
||||
<object-name>ddrmi_pointer_1</object-name>
|
||||
<object-name>ddrmi_pointer_2</object-name>
|
||||
<object-name>ddrmi_inside</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_2</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/cockpit-irradiance</inherits-from>
|
||||
<object-name>ddrmi_inside</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_1</object-name>
|
||||
<object-name>ddrmi_vor_adf_flag_2</object-name>
|
||||
</effect>
|
||||
|
||||
</PropertyList>
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/Lower-ECAM.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>lecam.screen</object-name>
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights.001" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__Lower-ECAM.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "lecam.screen"
|
||||
loc -0.00227174 0.00206637 0.000124912
|
||||
data 17
|
||||
lecam.screen.mesh
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.52782 0.1303 -0.0937
|
||||
-0.4816 -0.02541 -0.0937
|
||||
-0.4816 -0.02541 0.06869
|
||||
-0.52782 0.1303 0.06869
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/ND.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>ND.screen</object-name>
|
||||
|
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/ND_R.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>ND_R.screen</object-name>
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__ND.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "ND.screen"
|
||||
loc 0.00180348 -0.00140045 0.000124912
|
||||
data 14
|
||||
ND.screen.mesh
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.57938 0.30101 0.27158
|
||||
-0.53316 0.14531 0.27158
|
||||
-0.53316 0.14531 0.43398
|
||||
-0.57938 0.30101 0.43398
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights.002" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__ND_R.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "ND_R.screen"
|
||||
loc 0.00180348 -0.00140045 0.000124912
|
||||
data 18
|
||||
ND.screen.mesh.002
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.57784 0.30164 -0.43283
|
||||
-0.53162 0.14593 -0.43283
|
||||
-0.53162 0.14593 -0.27044
|
||||
-0.57784 0.30164 -0.27044
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/PFD1.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>pfd1.screen</object-name>
|
||||
|
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/PFD2.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>pfd2.screen</object-name>
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights.003" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__PFD1.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "pfd1.screen"
|
||||
loc 0.00180348 -0.00140045 0.000124912
|
||||
data 16
|
||||
pfd1.screen.mesh
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.57791 0.30083 0.47091
|
||||
-0.53169 0.14513 0.47091
|
||||
-0.53169 0.14513 0.6333
|
||||
-0.57791 0.30083 0.6333
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights.004" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__PFD2.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "pfd2.screen"
|
||||
loc 0.00180348 -0.00140045 0.000124912
|
||||
data 16
|
||||
pfd2.screen.mesh
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.57919 0.30101 -0.63352
|
||||
-0.53297 0.1453 -0.63352
|
||||
-0.53297 0.1453 -0.47112
|
||||
-0.57919 0.30101 -0.47112
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -1,488 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!-- Copyright (c) 2020 Josh Davidson (Octal450) -->
|
||||
|
||||
<PropertyList>
|
||||
|
||||
<path>res/Pedestal_up.ac</path>
|
||||
|
||||
<animation>
|
||||
<name>Panel lighting</name>
|
||||
<type>material</type>
|
||||
<object-name>atc_0</object-name>
|
||||
<object-name>atc_1</object-name>
|
||||
<object-name>atc_2</object-name>
|
||||
<object-name>atc_3</object-name>
|
||||
<object-name>atc_4</object-name>
|
||||
<object-name>atc_5</object-name>
|
||||
<object-name>atc_6</object-name>
|
||||
<object-name>atc_7</object-name>
|
||||
<object-name>atc_abv</object-name>
|
||||
<object-name>atc_body</object-name>
|
||||
<object-name>atc_clr</object-name>
|
||||
<object-name>atc_fail</object-name>
|
||||
<object-name>atc_ident</object-name>
|
||||
<object-name>atc_screen</object-name>
|
||||
<object-name>atc_stby</object-name>
|
||||
<object-name>atc_sys</object-name>
|
||||
<object-name>atc_thrt</object-name>
|
||||
<object-name>ecam_body</object-name>
|
||||
<object-name>ecam_switch_body</object-name>
|
||||
<object-name>engine_body</object-name>
|
||||
<object-name>radar_body</object-name>
|
||||
<object-name>vu111_body</object-name>
|
||||
<object-name>vu112_body</object-name>
|
||||
<object-name>throttle_1</object-name>
|
||||
<object-name>throttle_1_label</object-name>
|
||||
<object-name>dummy_1</object-name>
|
||||
<object-name>dummy_2</object-name>
|
||||
<object-name>Lcutoff</object-name>
|
||||
<object-name>Rcutoff</object-name>
|
||||
<object-name>eng_mode</object-name>
|
||||
<object-name>radar_gain</object-name>
|
||||
<object-name>radar_tilt</object-name>
|
||||
<object-name>radar_mode</object-name>
|
||||
<object-name>radar_gain</object-name>
|
||||
<object-name>radio_rot1</object-name>
|
||||
<object-name>vu112_aids</object-name>
|
||||
<object-name>vu112_dfdr</object-name>
|
||||
<emission>
|
||||
<red>0.3</red>
|
||||
<green>0.3</green>
|
||||
<blue>0.3</blue>
|
||||
<factor-prop>sim/model/lights/dome-light</factor-prop>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/pedestal-flood-upper</inherits-from>
|
||||
<object-name>throttle_1</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/pedestal-flood-atc</inherits-from>
|
||||
<object-name>atc_glare</object-name>
|
||||
<object-name>atc_body</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/pedestal-flood-engine</inherits-from>
|
||||
<object-name>engine_body</object-name>
|
||||
<object-name>engine_glare</object-name>
|
||||
<object-name>eng_mode</object-name>
|
||||
<object-name>Lcutoff</object-name>
|
||||
<object-name>Rcutoff</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/brightness-panel-ped</inherits-from>
|
||||
<object-name>vu111_body</object-name>
|
||||
<object-name>vu112_body</object-name>
|
||||
<object-name>vu111_glare</object-name>
|
||||
<object-name>vu112_glare</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/dummy-gap</inherits-from>
|
||||
<object-name>dummy_1</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/pedestal-flood-radar</inherits-from>
|
||||
<object-name>radar_mode</object-name>
|
||||
<object-name>radar_tilt</object-name>
|
||||
<object-name>radar_body</object-name>
|
||||
<object-name>radar_glare</object-name>
|
||||
</effect>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/cockpit-irradiance</inherits-from>
|
||||
<object-name>ecam_body</object-name>
|
||||
<object-name>ecam_switch_body</object-name>
|
||||
<object-name>vu111_body</object-name>
|
||||
<object-name>vu112_body</object-name>
|
||||
<object-name>vu111_glare</object-name>
|
||||
<object-name>vu112_glare</object-name>
|
||||
<object-name>throttle_1_label</object-name>
|
||||
<object-name>dummy_2</object-name>
|
||||
<object-name>ecam_glare_down</object-name>
|
||||
<object-name>ecam_glare_up</object-name>
|
||||
<object-name>ecam_att_hdg</object-name>
|
||||
<object-name>ecam_air_data</object-name>
|
||||
<object-name>ecam_eis_dmc</object-name>
|
||||
<object-name>ecam_nd_xfr</object-name>
|
||||
<object-name>ecam_brt_upper</object-name>
|
||||
<object-name>ecam_brt_lower</object-name>
|
||||
<object-name>flood_lt_main</object-name>
|
||||
<object-name>integ_lt</object-name>
|
||||
<object-name>flood_lt_ped</object-name>
|
||||
<object-name>radar_gain</object-name>
|
||||
<object-name>ecam_emer_canc_lit</object-name>
|
||||
<object-name>vu112_aids</object-name>
|
||||
<object-name>vu112_dfdr</object-name>
|
||||
</effect>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>engine_fault_1</object-name>
|
||||
<condition>
|
||||
<property>systems/unused/unused-ped</property>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>engine_fire_1</object-name>
|
||||
<condition>
|
||||
<or>
|
||||
<property>systems/fire/engine1/warning-active</property>
|
||||
<property>controls/switches/annun-test</property>
|
||||
</or>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>engine_fire_1</object-name>
|
||||
<emission>
|
||||
<red>1.0</red>
|
||||
<green>1.0</green>
|
||||
<blue>1.0</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>engine_fault_2</object-name>
|
||||
<condition>
|
||||
<property>systems/unused/unused-ped</property>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>engine_fire_2</object-name>
|
||||
<condition>
|
||||
<or>
|
||||
<property>systems/fire/engine2/warning-active</property>
|
||||
<property>controls/switches/annun-test</property>
|
||||
</or>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>material</type>
|
||||
<object-name>engine_fire_2</object-name>
|
||||
<emission>
|
||||
<red>1.0</red>
|
||||
<green>1.0</green>
|
||||
<blue>1.0</blue>
|
||||
</emission>
|
||||
</animation>
|
||||
|
||||
<effect>
|
||||
<inherits-from>Aircraft/A320-family/Models/Effects/cockpit-irradiance</inherits-from>
|
||||
<object-name>atc_0</object-name>
|
||||
<object-name>atc_1</object-name>
|
||||
<object-name>atc_2</object-name>
|
||||
<object-name>atc_3</object-name>
|
||||
<object-name>atc_4</object-name>
|
||||
<object-name>atc_5</object-name>
|
||||
<object-name>atc_6</object-name>
|
||||
<object-name>atc_7</object-name>
|
||||
<object-name>atc_abv</object-name>
|
||||
<object-name>atc_body</object-name>
|
||||
<object-name>atc_clr</object-name>
|
||||
<object-name>atc_fail</object-name>
|
||||
<object-name>atc_ident</object-name>
|
||||
<object-name>atc_screen</object-name>
|
||||
<object-name>atc_stby</object-name>
|
||||
<object-name>atc_sys</object-name>
|
||||
<object-name>atc_thrt</object-name>
|
||||
</effect>
|
||||
|
||||
<text>
|
||||
<name>atc-code</name>
|
||||
<offsets>
|
||||
<x-m>-0.01279</x-m>
|
||||
<y-m>0.20</y-m>
|
||||
<z-m>-0.13325</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
</offsets>
|
||||
<alignment>left-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
<type type="string">text-value</type>
|
||||
<property type="string">/systems/atc/transponder-code</property>
|
||||
<format>%s</format>
|
||||
<truncate type="bool">false</truncate>
|
||||
<font type="string">led.txf</font>
|
||||
<draw-text type="bool">true</draw-text>
|
||||
<draw-alignment type="bool">false</draw-alignment>
|
||||
<draw-boundingbox type="bool">false</draw-boundingbox>
|
||||
<character-size>0.009</character-size>
|
||||
<font-resolution>
|
||||
<width type="int">32</width>
|
||||
<height type="int">32</height>
|
||||
</font-resolution>
|
||||
</text>
|
||||
|
||||
<text>
|
||||
<name>atc-test</name>
|
||||
<offsets>
|
||||
<x-m>-0.01279</x-m>
|
||||
<y-m>0.20</y-m>
|
||||
<z-m>-0.13325</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
</offsets>
|
||||
<alignment>left-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
<type type="string">literal</type>
|
||||
<text type="string">8888</text>
|
||||
<font type="string">led.txf</font>
|
||||
<draw-text type="bool">true</draw-text>
|
||||
<draw-alignment type="bool">false</draw-alignment>
|
||||
<draw-boundingbox type="bool">false</draw-boundingbox>
|
||||
<character-size>0.009</character-size>
|
||||
<font-resolution>
|
||||
<width type="int">32</width>
|
||||
<height type="int">32</height>
|
||||
</font-resolution>
|
||||
</text>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_0</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(0);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_1</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(1);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_2</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(2);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_3</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(3);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_4</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(4);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_5</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(5);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_6</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(6);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_7</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.keypad(7);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_clr</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<repeatable>false</repeatable>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.clearKey();</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>atc_sys</object-name>
|
||||
<factor>-30</factor>
|
||||
<offset-deg>30</offset-deg>
|
||||
<center>
|
||||
<x-m>-0.003352</x-m>
|
||||
<y-m>0.131446</y-m>
|
||||
<z-m>-0.13275</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
<property>controls/atc/system-knob</property>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_sys</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>controls/atc/system-knob</property>
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.atcSwitch(getprop("controls/atc/system-knob") + 1);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>rotate</type>
|
||||
<object-name>atc_stby</object-name>
|
||||
<factor>-35</factor>
|
||||
<offset-deg>70</offset-deg>
|
||||
<center>
|
||||
<x-m>0.01146</x-m>
|
||||
<y-m>0.213663</y-m>
|
||||
<z-m>-0.13086</z-m>
|
||||
</center>
|
||||
<axis>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<z>1</z>
|
||||
</axis>
|
||||
<property>controls/atc/mode-knob</property>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_stby</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<button>3</button>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>controls/atc/mode-knob</property>
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
<value>3</value>
|
||||
<value>4</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.modeSwitch(getprop("controls/atc/mode-knob") + 1);</script>
|
||||
</binding>
|
||||
</action>
|
||||
<action>
|
||||
<button>1</button>
|
||||
<button>4</button>
|
||||
<binding>
|
||||
<command>property-cycle</command>
|
||||
<property>controls/atc/mode-knob</property>
|
||||
<value>4</value>
|
||||
<value>3</value>
|
||||
<value>2</value>
|
||||
<value>1</value>
|
||||
<value>0</value>
|
||||
</binding>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.modeSwitch(getprop("controls/atc/mode-knob") + 1);</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>atc_ident</object-name>
|
||||
<action>
|
||||
<button>0</button>
|
||||
<binding>
|
||||
<command>nasal</command>
|
||||
<script>atc.transponderPanel.identSwitch();</script>
|
||||
</binding>
|
||||
</action>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>select</type>
|
||||
<object-name>atc_fail</object-name>
|
||||
<condition>
|
||||
<and>
|
||||
<property>systems/atc/failed</property>
|
||||
<greater-than>
|
||||
<property>systems/electrical/bus/dc-ess</property>
|
||||
<value>25</value>
|
||||
</greater-than>
|
||||
</and>
|
||||
</condition>
|
||||
</animation>
|
||||
|
||||
</PropertyList>
|
Before Width: | Height: | Size: 670 KiB |
Before Width: | Height: | Size: 2 MiB |
|
@ -1610,10 +1610,11 @@
|
|||
<text>
|
||||
<name>rmp-active</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.21625</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>-0.216245</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1657,10 +1658,11 @@
|
|||
<text>
|
||||
<name>rmp-active-test</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.21625</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>-0.216245</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1704,10 +1706,11 @@
|
|||
<text>
|
||||
<name>rmp-standby</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.14896</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>-0.148955</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1751,10 +1754,11 @@
|
|||
<text>
|
||||
<name>rmp-standby-test</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.14896</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>-0.148955</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
<PropertyList>
|
||||
|
||||
<path>res/Radio.ac</path>
|
||||
<path>res/Radio1.ac</path>
|
||||
|
||||
<!-- On Switch -->
|
||||
<animation>
|
||||
|
@ -1610,10 +1610,11 @@
|
|||
<text>
|
||||
<name>rmp-active</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.21625</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>0.148855</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1657,10 +1658,11 @@
|
|||
<text>
|
||||
<name>rmp-active-test</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.21625</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>0.148855</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1704,10 +1706,11 @@
|
|||
<text>
|
||||
<name>rmp-standby</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.14896</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>0.216245</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
@ -1751,10 +1754,11 @@
|
|||
<text>
|
||||
<name>rmp-standby-test</name>
|
||||
<offsets>
|
||||
<x-m>-0.23205</x-m>
|
||||
<y-m>-0.14896</y-m>
|
||||
<z-m>-0.12582</z-m>
|
||||
<x-m>-0.22756</x-m>
|
||||
<y-m>0.216245</y-m>
|
||||
<z-m>-0.091845</z-m>
|
||||
<heading-deg>90</heading-deg>
|
||||
<roll-deg>9.4</roll-deg>
|
||||
</offsets>
|
||||
<alignment>center-center</alignment>
|
||||
<axis-alignment>xy-plane</axis-alignment>
|
||||
|
|
18437
Models/Instruments/Radio/res/Radio1.ac
Normal file
|
@ -6,13 +6,6 @@
|
|||
|
||||
<path>res/Upper-ECAM.ac</path>
|
||||
|
||||
<animation>
|
||||
<type>scale</type>
|
||||
<x-offset>1.05</x-offset>
|
||||
<y-offset>1.05</y-offset>
|
||||
<z-offset>1.05</z-offset>
|
||||
</animation>
|
||||
|
||||
<animation>
|
||||
<type>pick</type>
|
||||
<object-name>uecam.screen</object-name>
|
||||
|
|
|
@ -1,23 +1,26 @@
|
|||
AC3Db
|
||||
MATERIAL "buttonlights" rgb 1 1 1 amb 1 1 1 emis 1 1 1 spec 0 0 0 shi 0 trans 0
|
||||
MATERIAL "buttonlights.001" rgb 1.000 1.000 1.000 amb 1.000 1.000 1.000 emis 1.000 1.000 1.000 spec 0.000 0.000 0.000 shi 0 trans 0.000
|
||||
OBJECT world
|
||||
name "Blender_exporter_v2.26__Upper-ECAM.ac"
|
||||
kids 1
|
||||
OBJECT poly
|
||||
name "uecam.screen"
|
||||
loc 0.00180348 -0.00140045 0.000124912
|
||||
data 21
|
||||
uecam.screen.mesh.008
|
||||
crease 30.0
|
||||
texture "screen.png"
|
||||
crease 30.000000
|
||||
texrep 1 1
|
||||
numvert 4
|
||||
0 0.0804743 -0.0774588
|
||||
0 -0.0742105 -0.0774588
|
||||
0 -0.0742105 0.077209
|
||||
0 0.0804743 0.077209
|
||||
-0.58049 0.30536 -0.09384
|
||||
-0.53427 0.14966 -0.09384
|
||||
-0.53427 0.14966 0.06855
|
||||
-0.58049 0.30536 0.06855
|
||||
numsurf 1
|
||||
SURF 0x0
|
||||
SURF 0X0
|
||||
mat 0
|
||||
refs 4
|
||||
0 1.00067 0.999407
|
||||
3 4.45843e-005 0.999407
|
||||
2 4.45843e-005 0.000756443
|
||||
1 1.00067 0.000756443
|
||||
3 0.000045 0.999407
|
||||
2 0.000045 0.000756
|
||||
1 1.00067 0.000756
|
||||
kids 0
|
||||
|
|
|
@ -497,9 +497,13 @@ var masterFMGC = maketimer(0.2, func {
|
|||
aoa_0 = -5;
|
||||
aoa = getprop("/systems/navigation/adr/output/aoa-1");
|
||||
cas = getprop("/systems/navigation/adr/output/cas-1");
|
||||
|
||||
alpha_prot = cas * math.sqrt((aoa - aoa_0)/(aoa_prot - aoa_0));
|
||||
alpha_max = cas * math.sqrt((aoa - aoa_0)/(aoa_max - aoa_0));
|
||||
if (aoa > -5) {
|
||||
alpha_prot = cas * math.sqrt((aoa - aoa_0)/(aoa_prot - aoa_0));
|
||||
alpha_max = cas * math.sqrt((aoa - aoa_0)/(aoa_max - aoa_0));
|
||||
} else {
|
||||
alpha_prot = 0;
|
||||
alpha_max = 0;
|
||||
}
|
||||
|
||||
# predicted to speeds
|
||||
clean_to = 2 * tow * 0.45359237 + 85;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<engine>
|
||||
<name>a320_startup_left</name>
|
||||
<mode>once</mode>
|
||||
<path>Aircraft/A320-family/Sounds/SASA/CFM56/start/A320_cockpit_starter.wav</path>
|
||||
<path>Aircraft/A320-family/Sounds/SASA/CFM56B/start/A320_cockpit_starter.wav</path>
|
||||
<condition>
|
||||
<and>
|
||||
<equals>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<engine>
|
||||
<name>a320_startup_left</name>
|
||||
<mode>once</mode>
|
||||
<path>Aircraft/A320-family/Sounds/SASA/CFM56/start/A320_cockpit_starter.wav</path>
|
||||
<path>Aircraft/A320-family/Sounds/SASA/CFM56B/start/A320_cockpit_starter.wav</path>
|
||||
<condition>
|
||||
<and>
|
||||
<equals>
|
||||
|
|