public string importResolutionPath; // hack for now that can handle reading imports from streaming assets

        public StyleSheetImporter(TemplateSettings templateSettings, ResourceManager resourceManager)
        {
            this.templateSettings  = templateSettings;
            this.compiler          = new StyleSheetCompiler(this, resourceManager);
            this.cachedStyleSheets = new Dictionary <string, StyleSheet>();
        }
Exemple #2
0
        public string importResolutionPath; // hack for now that can handle reading imports from streaming assets

        public StyleSheetImporter(string basePath, ResourceManager resourceManager)
        {
            this.basePath          = basePath;
            this.compiler          = new StyleSheetCompiler(this, resourceManager);
            this.cachedStyleSheets = new Dictionary <string, StyleSheet>();
        }