1
0
Fork 0
fgdata/Aircraft/Instruments-3d/FG1000/Nasal/EIS/EISStyles.nas
Stuart Buchanan ad77dc2f9c Modify FG1000 EIS to use Emesary,
- New Emesary notificaion type for engine data
- New Canvas PFD UI Elements - Pointer, Rotating
- Upate EIS to use above.
2018-01-03 20:24:41 +00:00

28 lines
426 B
Text

# EIS Styles
var EISStyles =
{
new : func() {
var obj = { parents : [ EISStyles ]};
obj.Styles = {};
obj.loadStyles();
return obj;
},
getStyle : func(type) {
return me.Styles[type];
},
setStyle : func(type, name, value) {
me.Styles[type][name] = value;
},
loadStyles : func() {
me. clearStyles();
me.Styles.XXX = {};
},
clearStyles : func() {
me.Styles = {};
},
};