File extensions other than XML in Resources?

When doing Resources.Load, if the extension of a file is known to Unity (like *.xml) it’ll load it into a TextAsset just fine. But if it’s an unknown file extension, it gets ignored.

I’m using OGMO Editor for a 2D tile-based game I’m making in Unity. It saves its levels in XML format, but they are of the extension *.oel. Every single time I save a level, I’ve been having to manually copy and rename it from *.oel to *.xml in explorer, which is extremely annoying and time consuming.

Is there any way to get Unity’s resource manager to accept file types other than the arbitrary ones it already knows about?

Thanks!

No, i don’t think there’s a way to make Uniyt accept other types. However you can write an editor script which does the renaming for you. Depending on what kind of game it is and what platform you target you could use external files. Either load them from a subfolder (standalone, mobile) or load them from a webeerver (webplayer, mobile)