CVS: data/Aircraft/Piper-PA-32/Nasal doors.nas, 1.1, 1.2 pa32-keyboard.xml, 1.1, 1.2
Emmanuel Baranger <[email protected]> Sun, 25 Apr 2010 02:00:20 -0500
| Newsgroups | gmane.games.flightgear.cvc |
|---|---|
| Message-ID | <[email protected]> |
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Piper-PA-32/Nasal
In directory baron.flightgear.org:/tmp/cvs-serv14627/Nasal
Modified Files:
doors.nas pa32-keyboard.xml
Log Message:
- little update
Index: doors.nas
===================================================================
RCS file: /var/cvs/FlightGear-0.9/data/Aircraft/Piper-PA-32/Nasal/doors.nas,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- doors.nas 19 Apr 2010 21:54:45 -0000 1.1
+++ doors.nas 25 Apr 2010 07:00:18 -0000 1.2
@@ -7,6 +7,7 @@
Doors.new = func {
obj = { parents : [Doors],
crew : aircraft.door.new("instrumentation/doors/crew", 8.0),
+ passenger : aircraft.door.new("instrumentation/doors/passenger", 10.0)
};
return obj;
};
@@ -15,9 +16,15 @@
me.crew.toggle();
}
+Doors.passengerexport = func {
+ me.passenger.toggle();
+}
+
+
# ==============
# Initialization
# ==============
# objects must be here, otherwise local to init()
doorsystem = Doors.new();
+
Index: pa32-keyboard.xml
===================================================================
RCS file: /var/cvs/FlightGear-0.9/data/Aircraft/Piper-PA-32/Nasal/pa32-keyboard.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pa32-keyboard.xml 19 Apr 2010 21:54:45 -0000 1.1
+++ pa32-keyboard.xml 25 Apr 2010 07:00:18 -0000 1.2
@@ -7,7 +7,7 @@
<desc>Canopy</desc>
<binding>
<command>nasal</command>
- <script>pa18.doorsystem.crewexport();</script>
+ <script>pa32.doorsystem.crewexport();</script>
</binding>
</key>
------------------------------------------------------------------------------