![]() |
[LVL ED] FC - Level Editor ... - 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] FC - Level Editor ... (/thread-29768.html) |
FC - Level Editor ... - Plazmater - 03-21-2015 I changed my custom story to FC but i really wanted to know how can i view files like static_objects, entities etc. from FC folder in Level editor ? Only way i know how to see them in level editor is that for example i rename folder to static_objects2 in FC folder and copy it to original ATTD folder so that Level editor will load those models. But it is really messy doing it that way. Any ideas ? RE: FC - Level Editor ... - FlawlessHappiness - 03-21-2015 Place a random static object in your map. Press the little [...] button in that static object. Find your desired file and load it. RE: FC - Level Editor ... - Plazmater - 03-21-2015 (03-21-2015, 09:44 PM)FlawlessHappiness Wrote: Place a random static object in your map. Thank you so much! it saves me a lot of trouble... really useful thing. RE: FC - Level Editor ... - Plazmater - 03-22-2015 Got a new problem... ![]() It looked good at first it was working but if i restart level editor and open that map those custom objects are gone ... and level editor shows error because it knows those objects were or are placed there but are not visible. What am i supposed to do. RE: FC - Level Editor ... - Mudbill - 03-22-2015 The location of your entities or static objects are likely not within the scope of the main resources.cfg file. If not, the editors will fail to locate them. RE: FC - Level Editor ... - Plazmater - 03-22-2015 So do i have to add paths to the original resources.cfg as well ? Because thats not working. And it is actually weird because its showing custom doors as entity in Level editor but it doesnt show custom static objects. And both custom static objects and entites are in FC folder... weird ? While testing FC , it shows custom static objects and entites but in editor it only shows custom entities... This is pretty much hurting my brain. Update: So it seems that its not even showing static objects while testing FC, this is happening only to static objects ? Confused...confused...confused... ![]() RE: FC - Level Editor ... - Mudbill - 03-22-2015 How is the main resources.cfg file and how is your mod's? Post the contents of both please. RE: FC - Level Editor ... - Plazmater - 03-23-2015 Main resources.cfg is not changed. My mods resources.cfg is the same i just added paths for my custom entities , etc... Well i am now doing this in messy way because i dont want to wait too much. Also i think its because i am trying to load custom things from [...] and yet they are in FC folder not main game one. So whenever i restart editor it will load without those custom objects... even if they were placed and saved before. Thats probably because editor itself is placed in main game folder and can read only main game objects... By changing main resources.cfg same way as mods one by adding paths to FC folder it wont work. However i wonder if i can make editor somehow to read custom objects from FC folder from somewhere else ? it might be somewhere in level editor conf files... that comes in the same .rar folder when you want to download and extract level editor to your game folder for the first time. RE: FC - Level Editor ... - Mudbill - 03-23-2015 See, you're onto something yes. The editors use the main resources.cfg file regardless. The directories they use are defined in the MainEditorSettings.cfg file, which looks like this: PHP Code: <Directories Therefore you can only have 1 folder to use for entities, and 1 folder for static objects. Here's what I would do: Make a "custom" folder within each of the main static_objects and entities folders. Place your custom files in there and use them with the editors as much as you want. They won't disappear. When you're done, copy the files into your mod's folders when you upload the mod. The game will use your mod's resources.cfg file (unlike the editors), so there will be no problem. RE: FC - Level Editor ... - Plazmater - 03-25-2015 (03-23-2015, 05:44 PM)Mudbill Wrote: See, you're onto something yes. The editors use the main resources.cfg file regardless. The directories they use are defined in the MainEditorSettings.cfg file, which looks like this: And the solution you just said, is exactly the one i call "messy". But if its working then i am alright with that. |