Frictional Games Forum (read-only)
Some assets from the "1 week environment" thread - 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 Resources (https://www.frictionalgames.com/forum/forum-42.html)
+---- Thread: Some assets from the "1 week environment" thread (/thread-22069.html)

Pages: 1 2


RE: Some assets from the "1 week environment" thread - JonnyAnomaly - 01-01-2014

Sorry guys, didn't see that there were issues with my models - I'm not sure what I have to do to fix them, but its probably a path issue as Acies mentioned. Some models in the past that I posted have had weird issues with them disappearing for people, but YourComputer fixed them for me so it would work for other people.


RE: Some assets from the "1 week environment" thread - WALP - 01-01-2014

If the path issues are with textures, I assume it would take no more than opening the collada(DAE) files in Notepad++/Geany/other and changes the file pointer to only point to your file, and not the path the file. Fx

<image id="Map #15-image" name="Map #15">
<init_from>file://C:/Steamblabla/blibblub/common/redist/static_objects/PictureOfGayChicken.dds</init_from>
</image>
would be changed to:

<image id="Map #15-image" name="Map #15">
<init_from>PictureOfGayChicken.dds</init_from>
</image>

this would have to be done with spec and normal maps and other as well of course.