pburnt Posted December 3, 2018 Posted December 3, 2018 Is there a better Blender tutorial for getting the import/export nif addon to work? I've read the one here and on Nexus and nothing helps.
mxwqtkl Posted December 3, 2018 Posted December 3, 2018 3 hours ago, pburnt said: Is there a better Blender tutorial for getting the import/export nif addon to work? I've read the one here and on Nexus and nothing helps. The best tutorial at the moment is https://beyondskyrim.org/exporting-blender-2-7-skyrim/ which covers exporting statics and common error messages. However, the current version of the Blender plugin is outright broken when exporting skinned meshes. The Flatten Skin function is commented out, so you must export using an already flattened (not hierarchical) armature, for example what you get if you import an existing body. Even then the plugin exports bones with the wrong names. To fix that you need to replace this function in nif_common.py: def get_bone_name_for_nif(self, name): """Convert a bone name to a name that can be used by the nif file: turns 'Bip01 xxx.R' into 'Bip01 R xxx', and similar for L. :param name: The bone name as in Blender. :type name: :class:`str` :return: Bone name in nif convention. :rtype: :class:`str` """ if isinstance(name, bytes): name = name.decode() if name.startswith("Bip01 "): if name.endswith(".L"): return "Bip01 L " + name[6:-2] elif name.endswith(".R"): return "Bip01 R " + name[6:-2] elif name.startswith("NPC ") and name.endswith("].L"): name = name.replace("NPC ", "NPC L ") name = name.replace("[", "[L") name = name.replace("].L", "]") return name elif name.startswith("NPC ") and name.endswith("].R"): name = name.replace("NPC ", "NPC R ") name = name.replace("[", "[R") name = name.replace("].R", "]") return name return name After all this it will export, however the bone locations will be broken. To fix that, you need to import to and export from Outfit Studio.
pburnt Posted December 3, 2018 Posted December 3, 2018 41 minutes ago, mxwqtkl said: The best tutorial at the moment is https://beyondskyrim.org/exporting-blender-2-7-skyrim/ which covers exporting statics and common error messages. However, the current version of the Blender plugin is outright broken when exporting skinned meshes. The Flatten Skin function is commented out, so you must export using an already flattened (not hierarchical) armature, for example what you get if you import an existing body. Even then the plugin exports bones with the wrong names. To fix that you need to replace this function in nif_common.py: def get_bone_name_for_nif(self, name): """Convert a bone name to a name that can be used by the nif file: turns 'Bip01 xxx.R' into 'Bip01 R xxx', and similar for L. :param name: The bone name as in Blender. :type name: :class:`str` :return: Bone name in nif convention. :rtype: :class:`str` """ if isinstance(name, bytes): name = name.decode() if name.startswith("Bip01 "): if name.endswith(".L"): return "Bip01 L " + name[6:-2] elif name.endswith(".R"): return "Bip01 R " + name[6:-2] elif name.startswith("NPC ") and name.endswith("].L"): name = name.replace("NPC ", "NPC L ") name = name.replace("[", "[L") name = name.replace("].L", "]") return name elif name.startswith("NPC ") and name.endswith("].R"): name = name.replace("NPC ", "NPC R ") name = name.replace("[", "[R") name = name.replace("].R", "]") return name return name After all this it will export, however the bone locations will be broken. To fix that, you need to import to and export from Outfit Studio. Thanks. I'll check it out. Wanna try something getting something in my game I've always wanted but have been too scared to try.
Sancte Virgin Maria Posted December 4, 2018 Posted December 4, 2018 How can I get cbbe morphs to work with my character in racemenu? I always tick the Build Morphs box in bodyslide but when I get to racemenu, usin the sliders doesn't work, can someone help?
Vyxenne Posted December 5, 2018 Posted December 5, 2018 Posting this here because I don't see an SSE Nif Optimizer thread. I am trying to fix some SMP earrings. The problem is that they have a shiny face and a darkened face (the opposite side) and so one might reasonably conclude that the lighting is causing it- shiny facing the fire, darkened toward the side facing away from the fire. But no- Here is an image of me wearing one of the 4 pairs inside the Bannered Mare with the entrance door behind me. Note that this is the dark side of the earrings, completely unlit other than by scattered reflected firelight, yet they shine brightly while the front side not 2 meters away from the bright, roaring fire is compoletely dark. blackened as though there were no light shining on them at all. Astonishingly, when I turn around so that the other side (the front) of the earrings is facing the darkness, the shininess has magically switched sides, and the earrings are still all shiny toward the darkness and dark toward the light from the fire! So whichever side of the earrings is facing the darkness is bright, and vice-versa. All 4 earrings in the mod have this issue. I've done some online research and it appears that what I need to do when an item changes its luminosity depending on which compass direction it is facing instead of based on the direction of the ambient lighting is "flip the normals," whatever that means. However, the only tutorial I could find depicts a "flip normals" option several levels deep in NifSkope's NiTriShape right-click menu, but my shape nodes are BSTriShapes (as expected for SSE) and they do not seem to have any "flip normals" option at all... but the tutorial is 3-4 years old, for Oldrim, so the lack of the option could be due to either BSTriShape vs. NiTriShape or simply a current version of NifSkope vs. an obsolete version. I read an Ousnius post on the Nexus discussing refacing triangles (again, whatever that means) by checking "Smooth Normals" and unchecking "Smooth Seam Normals" in Nif Optimizer, so I tried that- because the discussion on "refacing triangles" seemed to have some similarity to the "flip normals" symptoms, but alas, the problem remains. So, I'm stumped. Can someone please tell me where to find the "flip normals" option for these SSE-SMP BSTriShape earrings meshes? Or, if "flip normals" is not what I need to do to fix this, please just point me in the right direction to whatever it is that I need to do. Thanks.
mxwqtkl Posted December 5, 2018 Posted December 5, 2018 26 minutes ago, Vyxenne said: So, I'm stumped. Can someone please tell me where to find the "flip normals" option for these SSE-SMP BSTriShape earrings meshes? Or, if "flip normals" is not what I need to do to fix this, please just point me in the right direction to whatever it is that I need to do. Thanks. NifSkope doesn't appear to have all the old mesh operations available for BSTriShapes, so no Flip Normals for them. What you could do is convert them back into LE meshes with NIF Optimizer and flip them. A couple things to consider: SSE NIFs use half precision UV coordinates so converting them back and forth can introduce texture distortion. Try to see if they work as LE NIFs before converting them back into SSE NIFS; some LE NIFs work fine in SSE. If it's a single mesh with half the normals flipped you're going to need to flip them in a 3D package. As far as I know NifSkope doesn't let you choose which triangles to flip, it just works on whole meshes. It's also possible the earrings are just flat meshes with the Double Sided flag set, in which case one side is always going to look wrong as far as I can tell in my experiments. The fact you can see the backside of the polygons at all means Double Sided is on; I suspect this is what's actually going on.
Vyxenne Posted December 6, 2018 Posted December 6, 2018 23 hours ago, mxwqtkl said: It's also possible the earrings are just flat meshes with the Double Sided flag set I have rummaged through every right-click menu and submenu in both the BSTriShape and the BSDismemberSkinInstance and can find no Double Sided flag or setting or verbiage at all. Any chance you could tell me where, specifically, to look for it in NifSkope or Outfit Studio so I can either rule it out or nail it down as the cause for my issue? Thanks.
mxwqtkl Posted December 6, 2018 Posted December 6, 2018 1 hour ago, Vyxenne said: I have rummaged through every right-click menu and submenu in both the BSTriShape and the BSDismemberSkinInstance and can find no Double Sided flag or setting or verbiage at all. Any chance you could tell me where, specifically, to look for it in NifSkope or Outfit Studio so I can either rule it out or nail it down as the cause for my issue? Thanks. This is a NiTriShape but the shader flags are in the same place in BSTriShapes. Notice how the inside of the jacket is so dark? It renders that way too in game because those are the back faces. Without Double Sided they're just transparent.
Vyxenne Posted December 6, 2018 Posted December 6, 2018 1 hour ago, mxwqtkl said: This is a NiTriShape but the shader flags are in the same place in BSTriShapes. Notice how the inside of the jacket is so dark? It renders that way too in game because those are the back faces. Without Double Sided they're just transparent. Bingo! Thank you! I didn't know that the Shader Flags boxes opened up to become dropdowns. Is there any fix for this that doesn't require 3D modeling skills?
mxwqtkl Posted December 6, 2018 Posted December 6, 2018 6 hours ago, Vyxenne said: Bingo! Reveal hidden contents Thank you! I didn't know that the Shader Flags boxes opened up to become dropdowns. Is there any fix for this that doesn't require 3D modeling skills? Not that I know of, sorry. Because they're skinned meshes I don't think you can just duplicate, flip, and move them apart a little in NifSkope alone.
mikey1979 Posted December 17, 2018 Posted December 17, 2018 Hi, I just changed the body slots being used for the CBBE Ultimate Lingerie Collection in both the Creation Kit and NifScope. I replaced the original .nifs (xxxxxxx_1 and xxxxxx_2) with the updated .nifs from NifScope in the CBBE Utimate Lingerie Collection folder (ModOrganizer2). My question/concern if I now decide to rebuild the clothes in Bodyslide will it use the new nifs in the mods folder? I always thought that Bodyslide used the .nifs in Bodyslide Shape folder and the resulting BS Modified .nifs would be copied to the mods folder (including the .tri file if you enable morphs). Won't this overwrite the nifs modified by NifScope with those from Bodyslide, thus negating the revised body slot info contained in the NifScope version? Bodyslide only modies the xxxxxxx_0 nif file and when I run bodyslide and update this particular xxxxxxxxx_0.nif file I reintroduce gaps in my body at the forearms and calves. Is there body slot info contained in .nif file in the bodyslide Shape folder nif? How do I go about resolving this issue?
ioanes83 Posted December 24, 2018 Posted December 24, 2018 Hi! May i ask for help about CBBE Physic? I selected CBBE body with Physic in bodyslide, but nothing happens in game. What's wrong?
orgs1n Posted December 24, 2018 Posted December 24, 2018 10 minutes ago, ioanes83 said: Hi! May i ask for help about CBBE Physic? I selected CBBE body with Physic in bodyslide, but nothing happens in game. What's wrong? You need to setup either SMP (refer to the optional CBBE SMP Config file in the CBBE mod), or install an HDT-SMP setup.
ioanes83 Posted December 24, 2018 Posted December 24, 2018 Ok... Installed CBBE SMP Config....bit still nothing Shall i reinstall CBBE?
Kaarinah Posted December 24, 2018 Posted December 24, 2018 7 hours ago, ioanes83 said: Ok... Installed CBBE SMP Config....bit still nothing Shall i reinstall CBBE? You need either HDT-SMP framework, CBP (just movement), or CBPC, plus the CBBE physics body and configurations files to actually get movement or collisions. The linked is only config for HDT-SMP.
friki987 Posted December 29, 2018 Posted December 29, 2018 I know that this may have been asked a thousand times but, is there a tutorial to convert from Oldrim CBBE to SE CBBE?
urielmanx7 Posted December 30, 2018 Posted December 30, 2018 Can I suggest a feature? Make it so you can load the hands and feet alongside the body/outfit so that you can see them all in the preview window on bodySlide, so you can work on those seams.
RedMonika Posted December 30, 2018 Posted December 30, 2018 4 hours ago, urielmanx7 said: Can I suggest a feature? Make it so you can load the hands and feet alongside the body/outfit so you can work on those seams. You can always import them. Sometimes I'll import the whole armor set with hands/gloves and boots to make sure everything is lined up right.
How2FutaBulge Posted January 23, 2019 Posted January 23, 2019 Hey, how exactly does one use Outfit Studio to create a appropriate and "realistic" bulge on the groin? I've an armor planned for a futanari character, and I'd like to add a bulge to it as she'll be the only one wearing it. My problem currently is that when I aimlessly try to manipulate the section of the armor, it pulls it out sure but also pulls the bikini section forward which would lead to a weird chunk of skin being added. I'd like a way to balloon or stretch and expand a small section to look like some bulges in male SOS armors if possible.
orgs1n Posted February 16, 2019 Posted February 16, 2019 I'd like to port Dwarven Devious Cuirass to CBBE SE, but its body mesh is in a contorted position so I can't simply replace the one by the other. How does one handle this? On the left, the high-polygon CBBE SE. On the right, DDC's body mesh. 1
NeebNeebSkyrim Posted March 17, 2019 Posted March 17, 2019 so am i to understand that cbbe doesnt have belly bulge or collisions like UUNP does?
juancava Posted March 26, 2019 Posted March 26, 2019 Can someone send me an invitation for the discord channel? Thank you very much!
dgainey Posted March 30, 2019 Posted March 30, 2019 Hi. I'm here and doing nearly nothing. Just waving for now. This is nice work. Thank you.
ousnius Posted March 31, 2019 Author Posted March 31, 2019 On 3/26/2019 at 1:48 PM, juancava said: Can someone send me an invitation for the discord channel? Thank you very much! https://discord.gg/2qg2Rzw 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now