forked from flybywiresim/aircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(a380x): Model update main repo changes (cabin lights, door anims) (…
…flybywiresim#9073) * changes to system.cfg for cabin lights * add cockpit LOD01 * add door animations * change wwise event for autobrake_off * fix: link to interactive points --------- Co-authored-by: 2hwk <[email protected]>
- Loading branch information
1 parent
75156d3
commit 6724c87
Showing
7 changed files
with
190 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
148 changes: 148 additions & 0 deletions
148
...raft-a380-842/SimObjects/AirPlanes/FlyByWire_A380_842/model/behaviour/door_animations.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<!-- Copyright (c) 2023-2024 FlyByWire Simulations --> | ||
<!-- SPDX-License-Identifier: GPL-3.0 --> | ||
|
||
<ModelBehaviors> | ||
<Template Name="FBW_A380X_Components_Door"> | ||
<Component ID="ANIM_DOOR_#DOOR_ID#" Node="ANIM_DOOR_#DOOR_ID#_CLICK"> | ||
<UseTemplate Name="ASOBO_GT_Anim_Code"> | ||
<ANIM_NAME>ANIM_DOOR_#DOOR_ID#</ANIM_NAME> | ||
<ANIM_LAG>20</ANIM_LAG> | ||
<ANIM_CODE>(A:INTERACTIVE POINT OPEN:#ID#, Percent)</ANIM_CODE> | ||
</UseTemplate> | ||
<UseTemplate Name="ASOBO_GT_Interaction_LeftSingle_Leave_Code"> | ||
<LEFT_SINGLE_CODE> | ||
#TOGGLE_ID# (>K:TOGGLE_AIRCRAFT_EXIT) | ||
</LEFT_SINGLE_CODE> | ||
<TOOLTIPID>A380X.TOOLTIPS.DOORS_OPEN_CLOSE</TOOLTIPID> | ||
</UseTemplate> | ||
</Component> | ||
<Component ID="ANIM_DOOR_#DOOR_ID#_ARMED" Node="PAX_DOOR_#DOOR_ID#_UNLOCK"> | ||
<UseTemplate Name="ASOBO_GT_Anim_Code"> | ||
<ANIM_NAME>ANIM_DOOR_#DOOR_ID#_ARMED</ANIM_NAME> | ||
<ANIM_LAG>100</ANIM_LAG> | ||
<ANIM_CODE>(A:INTERACTIVE POINT OPEN:#ID#, Percent)</ANIM_CODE> | ||
</UseTemplate> | ||
<UseTemplate Name="ASOBO_GT_Interaction_LeftSingle_Leave_Code"> | ||
<LEFT_SINGLE_CODE> | ||
#TOGGLE_ID# (>K:TOGGLE_AIRCRAFT_EXIT) | ||
</LEFT_SINGLE_CODE> | ||
<TOOLTIPID>A380X.TOOLTIPS.DOORS_ARM_DISARM</TOOLTIPID> | ||
</UseTemplate> | ||
</Component> | ||
</Template> | ||
|
||
<Template Name="FBW_A380X_Components_DoorAnimations"> | ||
<!-- PAX DOOR M1L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M1L</DOOR_ID> | ||
<ID>0</ID> | ||
<TOGGLE_ID>1</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M2L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M2L</DOOR_ID> | ||
<ID>2</ID> | ||
<TOGGLE_ID>3</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M3L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M3L</DOOR_ID> | ||
<ID>4</ID> | ||
<TOGGLE_ID>5</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M4L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M4L</DOOR_ID> | ||
<ID>6</ID> | ||
<TOGGLE_ID>7</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M5L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M5L</DOOR_ID> | ||
<ID>8</ID> | ||
<TOGGLE_ID>9</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M1R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M1R</DOOR_ID> | ||
<ID>1</ID> | ||
<TOGGLE_ID>2</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M2R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M2R</DOOR_ID> | ||
<ID>3</ID> | ||
<TOGGLE_ID>4</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M3R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M3R</DOOR_ID> | ||
<ID>5</ID> | ||
<TOGGLE_ID>6</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M4R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M4R</DOOR_ID> | ||
<ID>7</ID> | ||
<TOGGLE_ID>8</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR M5R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>M5R</DOOR_ID> | ||
<ID>9</ID> | ||
<TOGGLE_ID>10</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- UPPER DOORS --> | ||
<!-- PAX DOOR U1L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U1L</DOOR_ID> | ||
<ID>10</ID> | ||
<TOGGLE_ID>11</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR U2L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U2L</DOOR_ID> | ||
<ID>12</ID> | ||
<TOGGLE_ID>13</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR U3L --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U3L</DOOR_ID> | ||
<ID>14</ID> | ||
<TOGGLE_ID>15</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR U1R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U1R</DOOR_ID> | ||
<ID>11</ID> | ||
<TOGGLE_ID>12</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR U2R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U2R</DOOR_ID> | ||
<ID>13</ID> | ||
<TOGGLE_ID>14</TOGGLE_ID> | ||
</UseTemplate> | ||
|
||
<!-- PAX DOOR U3R --> | ||
<UseTemplate Name="FBW_A380X_Components_Door"> | ||
<DOOR_ID>U3R</DOOR_ID> | ||
<ID>15</ID> | ||
<TOGGLE_ID>16</TOGGLE_ID> | ||
</UseTemplate> | ||
</Template> | ||
</ModelBehaviors> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters