I have been trying to load the AlfiskoSkin scheme, which is provided as an sample of CEGUI Unified Editor, using CEGUI.
However, an exception is being triggered.
Reason for that is that the XML processor (Scheme_xmlHandler class) is looking for a "Filename" attribute, where the xml file generated by the editor contains a lower case version ("filename").
Check "AlfiskoSkin.scheme" to see what I mean:
Code: Select all
<Imageset filename="AlfiskoSkin.imageset" />
and the definition of the filename attribute string in CEGUIScheme_xmlHandler.cpp:
Code: Select all
const String Scheme_xmlHandler::FilenameAttribute("Filename");
Is there anything I have missed ? I am using the TinyXML parser, but I don't think this is a problem.
Thanks for your support !