1
0
Fork 0
fgdata/Nasal/pushback.nas

27 lines
523 B
Text
Raw Normal View History

2009-05-04 10:58:27 +00:00
# Properties under /sim/model/pushback:
# + position-norm - Position of pushback. 1 if connected.
# =====
# Pushback
# =====
Pushback = {};
Pushback.new = func {
obj = { parents : [Pushback],
pushback : aircraft.door.new("sim/model/pushback", 10.0),
};
return obj;
};
Pushback.pushbackexport = func {
me.pushback.toggle();
}
# ==============
# Initialization
# ==============
# objects must be here, otherwise local to init()
pushbacksystem = Pushback.new();