1
0
Fork 0
fgdata/Aircraft/Instruments-3d/FG1000/Nasal/Stormscope/StormscopeStyles.nas
2017-12-10 22:15:21 +00:00

28 lines
447 B
Text

# Stormscope Styles
var StormscopeStyles =
{
new : func() {
var obj = { parents : [ StormscopeStyles ]};
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 = {};
},
};