ausgeek Posted May 1, 2018 Posted May 1, 2018 I've updated the base mod to v1.4, which you can find in the usual place: http://helixmod.blogspot.com.au/2018/03/dead-or-alive-xtreme-venus-vacation.html It's got a new version of 3DMigoto, some performance improvements, a new performance monitor, a toggle key to turn the mods on and off, enables texture replacements for costumes and fingernails (the fingernails are on the same texture as the rest of the skin, so they should be pretty straight forward to edit), and enables frame analysis dumps for hair, fingernails and eyeballs, and dumps poses so you should get a complete mesh if you wanted to do something with it outside of the game. Costume mod video tutorial here - this covers simple index buffer removals, partial mesh removals, mesh editing with Blender, and hole patching with Blender: https://www.youtube.com/watch?v=zWE0xP4MgR8 For Modders: The release notes for 3DMigoto 1.3.11 are over here. This is a fairly major update, including the addition of a full expression parser and conditionals in the command list, and the above-mentioned performance monitor: https://forums.geforce.com/default/topic/685657/3d-vision/3dmigoto-now-open-source-/post/5335396/#5335396 14
ausgeek Posted May 1, 2018 Posted May 1, 2018 I've updated the mod pack to add the costume mod I created for the video tutorial, as well as some mods to Luna and Tamaki's costumes (remove the DISABLED from the filename if you want to use these), but not Luna's new SSR though - all my hearts and all my tickets and still no Luna, but at least I unlocked Ayane at last: On 15/04/2018 at 5:37 AM, ausgeek said: Extract this starter mod pack into the game directory: DOAXVV ModPack 3.7z (Updated) 15
Noice123 Posted May 2, 2018 Posted May 2, 2018 Doing awesome work ausgeek. Here are some more nude varients with changes to nipple textures and some with pubic hair. DOAXVV-Nude Varients.zip 16
dhtjwl Posted May 2, 2018 Posted May 2, 2018 2 hours ago, Noice123 said: Doing awesome work ausgeek. Here are some more nude varients with changes to nipple textures and some with pubic hair. DOAXVV-Nude Varients.zip Where should I put the file? 1
tantrave Posted May 2, 2018 Posted May 2, 2018 Thank you, ausgeek. Your explanation is easy to understand. http://www.mediafire.com/file/d57cmnl87yglyy3/Helena_Violetfizz_Costume.zip 10
Noice123 Posted May 2, 2018 Posted May 2, 2018 36 minutes ago, ioritree said: Nice! hope can support PS4 DOAX3 lol If we could do frame analysis dumps on the PS4 but we can't. So it's much more complicated. Then what you see here.
Baralgin Posted May 2, 2018 Posted May 2, 2018 2 hours ago, Noice123 said: If we could do frame analysis dumps on the PS4 but we can't. So it's much more complicated. Then what you see here. Noice123, you are as always a pessimist.
1000000$ Posted May 2, 2018 Posted May 2, 2018 If possible, please make this mod. It's fromVindictus. Very pretty. You can for any girl. Thanks inadvance! Evy.zip 1
Noice123 Posted May 2, 2018 Posted May 2, 2018 6 hours ago, Baralgin said: Noice123, you are as always a pessimist. Pessimist? It's true. All we can extract are the TMC and the TMCL files from the ps4 version and no one's really Made a script with full support to input into blender.
ferris31 Posted May 3, 2018 Posted May 3, 2018 12 hours ago, tantrave said: Thank you, ausgeek. Your explanation is easy to understand. http://www.mediafire.com/file/d57cmnl87yglyy3/Helena_Violetfizz_Costume.zip I'm glad you're doing stuff for this game now.
Dreamcaster Posted May 3, 2018 Posted May 3, 2018 Made some Skirtless mods for the SR's of Misaki, Honoka and Marie Skirtless.zip By the way TextureOverride is for IB's, ShaderOverride is the PS' what's the command for VS' I'm trying to remove the skirt of Luna's Bunny SSR and part of the skirt is a VS, anybody know? 7
Shuubaru Posted May 3, 2018 Posted May 3, 2018 is it possible to re-import the raw vb and ib files into blender again?
knight77 Posted May 3, 2018 Posted May 3, 2018 5 hours ago, Dreamcaster said: Made some Skirtless mods for the SR's of Misaki, Honoka and Marie Skirtless.zip By the way TextureOverride is for IB's, ShaderOverride is the PS' what's the command for VS' I'm trying to remove the skirt of Luna's Bunny SSR and part of the skirt is a VS, anybody know? Good job! I also removed some of these and give the option to even remove the panty, when I changed the underlaying body. So if you like you can leave the skirt on, but remove the panty.
ausgeek Posted May 3, 2018 Posted May 3, 2018 5 hours ago, Dreamcaster said: By the way TextureOverride is for IB's, ShaderOverride is the PS' what's the command for VS' ShaderOverride sections can match both vertex and pixel shaders (and hull, domain, geometry and compute shaders), so you can just use the vertex shader hash with them. This is kind of historical, left over from the original open source release of 3DMigoto by Chiri - our DX9 tool (Helix Mod) used different sections for each, and if I'd been a developer on 3DMigoto at the time I would have pushed to do the same (for technical and clarity reasons), but I only joined the project later and we can't really change it now. That said, vertex and pixel shaders (almost) always come in pairs, so you can usually use a pixel shader and they are usually a little more precise (matches less unrelated items) than vertex shaders. TextureOverride sections can match any sort of 1D, 2D or 3D texture or buffer, but a "checktextureoverride=<target>" command is needed in a ShaderOverride to have 3DMigoto check them at all, where <target> is one of: ib: Index Buffer vb0, vb1, ..., vb31: Vertex Buffers (this game only uses vb0) <shader>-t<slot>: Shader Resource Slots for textures and some types of buffers (where <shader> is one of ps, vs, hs, ds, gs, cs and <slot> is between 0 and 127, e.g. "ps-t0" for "Pixel Shader Texture Slot 0") There are additional targets you can use, but I don't recommend using these with checktextureoverride, because they tend to be updated in-game making hash based matches unreliable (in some games even regular textures are affected by this, which is what the track_texture_updates feature is there to solve). These are more commonly used with 3DMigoto's arbitrary resource copying feature to (e.g.) copy resources from one shader to another or to bind custom resources, but there is nothing stopping you from using these wherever 3DMigoto expects a resource target: <shader>-cb<slot>: Constant Buffers (any type of shader) <shader>-u<slot>: UAVs (where <shader> is either ps or cs) o0, o1, ..., o7: Render Targets oD: Depth Target so<slot>: Geometry Stream Output Buffers this: Refers to the resource being cleared for special purpose command lists, and the buffer used for indirect draw calls. And additional targets that don't really apply to checktextureoverride because they don't have hashes: bb: The Swap Chain's current Back Buffer (though I am planning to special case this so it can be used with checktextureoverride) null: Empty target Resource*: Custom resource defined in the d3dx.ini stereoparams: 3DMigoto's StereoParams stereo texture for 3D Vision, usually found in the t125 slot of all shaders iniparams: 3DMigoto's IniParams texture, usually found in the t120 slot of all shaders (The x, y, z, w, x1, y1, ..., z7, w7 variables in the ini file can be accessed inside shaders using this texture) cursor_mask: A DirectX texture 3DMigoto automatically creates containing the current mouse cursor mask cursor_color: A DirectX texture 3DMigoto automatically creates containing the current mouse cursor, for software mouse cursor shaders 3 hours ago, Shuubaru said: is it possible to re-import the raw vb and ib files into blender again? Yes, but it needs a format reference to be able to decode them - If the mesh was exported using a recent version of the addon it will also have exported a ".fmt" file containing this reference and the importer will find this automatically, but if it was exported with an older version this will be missing and you will have to provide one - you can use a .txt file from a fresh frame analysis dump for this purpose (if you're importing a body mesh you would use another body mesh as a reference - but it doesn't have to be the same mesh - just one that uses the same format. If you're importing a modified costume mesh you would want to use a frame analysis dump of the original costume as a reference). This is covered in the video starting at about 35:00: https://www.youtube.com/watch?v=zWE0xP4MgR8&t=2075s 1
TCC65 Posted May 3, 2018 Posted May 3, 2018 On 2018/5/2 at 7:06 AM, ausgeek said: bug respond : What about our feet?
Dreamcaster Posted May 3, 2018 Posted May 3, 2018 I seem to have run into a problem, I edited the bow tie mesh in Blender and only deleted the the long ties by her butt, but instead it removed the socks, shoes, choker and the small ribbon by her belly button. What did I do wrong?
coreytaylor211 Posted May 3, 2018 Posted May 3, 2018 Hi I need help with the dumping, my dumping folder is empty after hit f8. My d3dx.ini settings are the same as in the youtube video. plz help
Dreamcaster Posted May 3, 2018 Posted May 3, 2018 5 hours ago, coreytaylor211 said: Hi I need help with the dumping, my dumping folder is empty after hit f8. My d3dx.ini settings are the same as in the youtube video. plz help The dump files won't be in the dump folder, 2 new folders will be made called "FrameAnalysis (with the current date) and "FrameAnalysisDeduped", that will contain all the swimsuit files
Popular Post knight77 Posted May 4, 2018 Popular Post Posted May 4, 2018 I have some mod addons for you guys! I modded several outfits. See for yourself: Spoiler The new Nyo SSR from the current event: (Tamaki is allready giving Nyo the look xD) The Black Shirt (an R or N suit): Shirt removed, only Panties left The Aloha Suit: (I moved the flowers a bit outside, cause they would never hold perfectly on top of these areolas! The Nyo SSR from the Softness Event (second half): Now instead of hiding her beautifull ladyparts, it highlights them! The classic Honoka SSR and the Marie-Rose Punk SR: For the Honoka SSR there are quite some options to get your own style the way you like it (hide/show Panty; hide/show Skirt; hide/shoe Top) For the Marie-Rose Punk SR you have the options to hide the Skirt or the Panty The Leather Cleavage Suit: The Suit is now even more open! I am working on some more, but this takes time and compute time, since I don't know how I can set the d3dx to export certain things I want. But the Mermaid Suit will be next! And here is the package: Costumes_Addon_05_04.7z Just put it into the costume folder! (P.S. There is also a Marie Rose SR folder where I just removed the Panty for naughty looks under her skirt! But you can show the panty and hide the Top Dress) 27
ferris31 Posted May 5, 2018 Posted May 5, 2018 2 minutes ago, tantrave said: Swap test There are some problems, but mostly it's a good result I was hoping this kind of thing would be possible. As always, nice work.
skysun Posted May 5, 2018 Posted May 5, 2018 I extracted 3Dfix - DOAX - VenusVacation - 1.4.zip, but an error message is displayed. https://imgur.com/a/9vmW7bM
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