Frictional Games Forum (read-only)
[LVL ED] Custom Loading - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: [LVL ED] Custom Loading (/thread-23807.html)



Custom Loading - RaideX - 11-06-2013

Sorry for posting so much stuff lately but i would like to know, if anybody knows, how i can assign the leveleditor the directories to load.

The problem is that after i've created a full conversation (this one) but my custom models are in another folder that is not under the main redist folder that i think is used to load all data into the leveleditor. And if i would just move them to the main redist folder i couldn't play with the as i want my conversation to be fully isolated. I hope you have an answere for this.


RE: Custom Loading - DnALANGE - 11-06-2013

Go to RESOURCES,
And add this line at FIRST :
<Resources>
<Directory Path="/YOURMODNAME" AddSubDirs="true" />
<Directory Path="/Premonition_misc" AddSubDirs="true" />
<Directory Path="/billboards" AddSubDirs="true" />
<Directory Path="/commentary" AddSubDirs="true" />
<Directory Path="/entities" AddSubDirs="true" />
<Directory Path="/flashbacks" AddSubDirs="true" />
<Directory Path="/gui" AddSubDirs="true" />
<Directory Path="/lights" AddSubDirs="true" />
<Directory Path="/main_menu" AddSubDirs="true" />
<Directory Path="/maps" AddSubDirs="true" />
<Directory Path="/music" AddSubDirs="true" />
<Directory Path="/particles" AddSubDirs="true" />
<Directory Path="/textures" AddSubDirs="true" />
<Directory Path="/shaders" AddSubDirs="true" />
<Directory Path="/sounds" AddSubDirs="true" />
<Directory Path="/static_objects" AddSubDirs="true" />
<Directory Path="/viewer" AddSubDirs="true" />

</Resources>

I am not 100% sure, but i Always do it and works perfect!
Do this in AMNESIA RESOURCES,
AND
YOUR RESOURCES in your mod.
Hope this helps you a bit.


RE: Custom Loading - RaideX - 11-06-2013

awesome! that was it, thanks for that. :3