load
does not recognize file types, if file's codec is in a module, which is not yet imported
#2479
Labels
load
does not recognize file types, if file's codec is in a module, which is not yet imported
#2479
Recently I started to list some of codecs as delayed... for example a
swf
codec, which people will probably never need. The same is done for axml
codec, which is something more common.It means, that if such a codec is not first imported using
import 'xml
,load %some.xml
will not load data as axml
, but as a markup instead.I think, that to be able load
swf
,xml
or other file types without first importing its codecs manually, the knownsystem/options/file-types
must be defined separately andread-decode
should import correct module according file's extension, if it's not yet imported.Once there will be a central module repository, it could even first install the module, if it's not part of the build.
The text was updated successfully, but these errors were encountered: