Custom Model trouble - 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: Custom Model trouble (/thread-10489.html) Pages:
1
2
|
Custom Model trouble - Selyp - 09-27-2011 Alright, So I've made a few custom models and they all work fine in the level editor. However, this last one I made is having an issue. It loads perfectly fine in the model editor and model view, but when loading it in the level editor for some reason it is invisible. I have been messing around with it but I can't seem to figure out what is causing this. Would anyone happen to have an idea? RE: Custom Model trouble - Pr3d4t0r - 09-27-2011 Hi, I can't really help you, but our team is looking for some modelers and animators for a huge mod ! http://www.frictionalgames.com/forum/thread-10469.html If you are interested, please reply or MP Anyway, hope you'll find a solution to your problem ! Peace ^^ RE: Custom Model trouble - MrBigzy - 09-27-2011 Can you still see it in the model viewer? RE: Custom Model trouble - Montesky - 09-28-2011 i had similar issues with custom 3d models... i read that you load and view the model over model viewer, fine, check the model routers and try it: Put the model in map editor and go to edit menu --> find object check if it is in the list... if no in list try it, open your *.ent file with notepad or similar, find the mesh/*.dae path browser and check if is correct, example Code: <Mesh Filename="static_objects/No_Do/grail_01.DAE"> If incorrect browser, you can edit it manually or move the *.dae file at correct folder... check textures, materials and folders If the model is in browser list, select it, focus and check scale, "maybe the object pivot is not centered" and you dont view it over the grid check too if "map_cache" file in your custom stories/maps and delete it... reload the map editor and try to add the model, save it and open your map file, check the hirearchy object numbers, fileindex and ID orders... Code: <FileIndex_StaticObjects NumOfFiles="5"> Code: <FileIndex_Entities NumOfFiles="8"> now, in object list, check if your model fileindex is correct here Code: <StaticObject CastShadows="true" Collides="true" FileIndex="4" Group="0" ID="28" Name="road_3" ..... If it not resolve the problem i can check your file if you want... please sorry my bad english :S RE: Custom Model trouble - Selyp - 09-28-2011 (09-27-2011, 11:08 PM)MrBigzy Wrote: Can you still see it in the model viewer? Yes it works fine in the model viewer which is why im confused. It still shows up in the level editor, but it invisible, meaning I can click on it and see the wireframe but the texture won't show up. RE: Custom Model trouble - MrBigzy - 09-28-2011 It's probably the .ent file then, try what Montesky said. If all else fails, re-import it into the model editor (I'm hoping you already did that :C ). RE: Custom Model trouble - Montesky - 09-28-2011 Maybe need to update too the *.mesh file with the entitie config... delete mesh file ---> load dae in model editor (edit it and save *.ent) ---> close model editor ---> re-open model editor ---> open *.ent file model (check material, textures, config, etc.. and save) ---> load the *.ent in model viewer to generate the mesh file RE: Custom Model trouble - Your Computer - 09-28-2011 I'm going to go out on a limb here (since i'm expecting you to already have one) and ask: Do you have a .mat file that points to the texture for each mesh object? Textures won't load without a material file for each texture (giving it the same name as the texture, that is, without the extension, should cause the game to look it up automatically). RE: Custom Model trouble - Montesky - 09-28-2011 (09-28-2011, 03:12 AM)Selyp Wrote: ... meaning I can click on it and see the wireframe but the texture won't show up.Selyp you use blender or 3dsmax ?? Try to export in OpenCOLLADA, blender close the texture and material line on file i think.. and perhaps call any texture out route In editor, the *.ent file call his DAE file to show in, check you *.dae <library image> and <library material> Blender rules ---> Code: <material id="v_grass_1-material" name="v_grass_1"> try to changue manually it or asign a Open library renamig the ID and name with a ="#XX" where XX is a number at your choice RE: Custom Model trouble - Selyp - 09-28-2011 I use Maya. And yes I have a mat file Like I said, I have made many models work in game, this one just won't appear for some reason. I am still at work, so I haven't been able to test these solutions yet, but I'll let you guys know if they work when I get home |