Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847
I just need a quick confirmation. I'm assuming the clothing for the new male character models isn't implemented yet? I ask because I'm noticing that none of the males my character interacts with whether he's working or just dealing with a random event have clothing. I went to a clothing store and it was empty, so I just want to know if it's just my game or this is something happening with everyone.
Check the change log:
"Basically, with this version, you can play the game normally, except all the guys will stay naked and have the same hairstyle with no facial hair (hair and clothes will be the focus of the next version)"
Converting the models to Daz is a long process that takes 5 updates, we're at update 4 right now, hence the beta status
 

xvi

Newbie
Jun 3, 2018
42
34
@xvi I haven't played Honey Select. could you explain the fusion a bit more perhaps?
It basically combines two characters, in theory picking the average of their two slider settings but with random slight influence towards one character or the other. It is done in a way where you can instantly see the result before exiting the 'fusion' menu and in turn can keep trying your luck until you get a good looking result. For example, if you have one character with a big nose, pale skin and a thin body, while another has a small nose, tanned skin and a curvy body, the end result will end up somewhere in the middle in theory, but if you keep pressing the fusion button you will get examples that are more tanned or more pale, some will have a curvier/thinner body than others and some a bigger/smaller nose.

The other option HS has is saving/loading of the body and face settings separately. In LifePlays case this wouldn't work exactly the same because settings for overall weight and age affect both the body and the face, which is definitely a better option. Still, I think loading a face preset and applying the 'weight' and 'age' sliders to it would still work very well and save a lot of time. Same deal with loading a body preset.
 
  • Like
Reactions: Vinfamy

n1ck

Member
Feb 5, 2018
374
365
Just double checked, the shemale options work fine on my copy of the game. There should be a penis option under Genital
Delete your C:\{Username}\Philip\AppData\Local\LifePlay\Saved and try again to see if this fixes it
@xvi I haven't played Honey Select. could you explain the fusion a bit more perhaps?
Fusion in Honey Select takes 2 presets and try to interpolate between them. It is similar to the BlendPreset() API, however it interpolate the defined values rather than overwriting them. The following is the approximate pseudo-code.

Code:
fusion(preset A, preset B) {
   C = new preset();
   for each m in C.morphs {
      min = A.morphs[m];
      max = B.morphs[m];

     C.morphs[m] = Random(min, max);
   }
   C.RandomizeHairs();
   return C;
}
Fusion is my most (ab)used feature in Honey Select. However, I usually use fusion and then extract a group of morph values from the result, and combine it with other preset. In HS this is a laborious process. I do wish there's some way to isolate which morphs to be effected. I do suggest such feature in LP, for instance, filtering Fusion to effect only face morphs.
 
  • Like
Reactions: Vinfamy

Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847
So any plans for facial hair for the next updates/ the option to have no hair (missing the none option in the hair option)
yes, of course. Any features available for the old model will be available for the new models
 

n1ck

Member
Feb 5, 2018
374
365
The following is the approximate pseudo-code.
Upon closer reflection on Honey Select Fusion code, I think the following pseudo-code is closer to the actual implementation.
Code:
fusion(preset A, preset B) {
  C = new preset();

  float weight = RandomFloat(0.0, 1.0);

  for each m in C.morphs {
    x = A.morphs[m];
    y = B.morphs[m];

    float diff = y - x;

    C.morphs[m] = A.morphs[m] + (diff * weight);
  }
  C.RandomizeHairs();
  return C;
}
When examining the individual morphs setting of the resulting fusion in HS, I found they are uniformly closer to one preset or the other. The pseudo-code I posted before will result morph settings which are independently interpolated between the 2 presets. Such is not the case with HS, though it can be interesting but frustrating to some.
 
  • Like
Reactions: Vinfamy

Kuebeleimer

New Member
Dec 31, 2018
11
3
hoi
i ve a problem
my girls dont get normal form after birth giving
they stay with their thick wombs and get even fater over time
now they look like if they will blow up every sec ^^
is there anywhere a button to press? (settings or so?

thanks for help
 

Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847
hoi
i ve a problem
my girls dont get normal form after birth giving
they stay with their thick wombs and get even fater over time
now they look like if they will blow up every sec ^^
is there anywhere a button to press? (settings or so?

thanks for help
is this the latest version or the previous version? I fixed this for Beta 4
 

Moist Goddess

Newbie
Aug 24, 2018
19
8
Oh wow the game is looking fantastic! Great job Vinfamy. I've been held away from gaming for a tad bit but as soon as I jump back to Lifeplay there is an explosion of new stuff.

I wanted to ask a few questions. I'm certain it would be for the future but would at any point would you impliment any femdom in the game? I saw the question about sissy's in the game and was wondering would their be female domination and male cross dressing in any future updates?

I always wondered if there was any dominatix games and was wondering if this would fit the bill in the future.

Keep up the good work, you're doing an awesome job!
 

nashorn95z

Newbie
Jan 26, 2019
88
68
The models have these strange bugs. They appear during the character creation and dont disappear in the game. I created a totaly normal model without morphing to much but the bugs appear anyway.


 

Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847
Keep up the good work, you're doing an awesome job!
The femdom animations are already in there, so there's no harm writing a few scenes to go with them well. I'll write them
cross dressing is tricky technically to implement and takes up a lot of hard drive space and I don't want the download package for the game each update to get too big, so I don't know yet


The models have these strange bugs. They appear during the character creation and dont disappear in the game. I created a totaly normal model without morphing to much but the bugs appear anyway.
Must be one of the morphs (maybe something pelvis related) that's broken - just a single broken morph can cause all sorts of issues. If you could save the game > go back into the Character Editor > Morphs > click a few times to get to All > move each of the slider that's not already at 0 back to 0 one by one to find the culprit and report it here that would be great. Once that's done, you can load the save you made earlier to get your old character back and only reset that problematic morph to zero this time
 

Kuebeleimer

New Member
Dec 31, 2018
11
3
hoi
one question more:
how do i import old save
i dont get the clue there
my main has no dick
my girls vanished, but old map still exist
i copyed save file into Lifeplay/ content

thx again
 

nashorn95z

Newbie
Jan 26, 2019
88
68
Must be one of the morphs (maybe something pelvis related) that's broken - just a single broken morph can cause all sorts of issues. If you could save the game > go back into the Character Editor > Morphs > click a few times to get to All > move each of the slider that's not already at 0 back to 0 one by one to find the culprit and report it here that would be great. Once that's done, you can load the save you made earlier to get your old character back and only reset that problematic morph to zero this time
The problem seems to be the combination of all morphs. The distortion decreased slowly by setting all morphs one by one to 0. Where can i find the savegames? Maybe the reason are data from older versions because i have the bug with every new model i create.
 

Vinfamy

creating moddable 3D life simulator
Game Developer
Jul 5, 2017
1,250
4,847
how do i import old savethx again
You'll need to copy the whole 'Saves' folder, not just the savefile, from your old game folder into LifePlay/Content/
Note that because the game just underwent a model conversion, the old characters (if they are from before LP 2.0 Beta 1) most likely still use the old models, you'll have to edit them and select 'Daz' under Race to change them to the new model
 

Etar

Active Member
Jul 17, 2017
815
1,274
Thank you @Vinfamy you've taught me a valuable leason.

I know get why my female friends always complain about the huge amount of random dick pics they get.

Personally I just thought it would be annoying but something minor. After playing your game for a few hours and recieving nude pictures and masturbation videos every few hours I finally understand the annoyance it causes!

Fucking hell. I keep saying no to giving out my number because I know the moment I accept I'll get a nude picture from them.. Is it some kind of side effect from the dude always being naked so the girls get a horny buff or something?

Every single time I get a new number I get spammed with videos and pictures -.- I turned off the porn mod thinking that would stop it, but nope. They're just as numerous as before..

Also, you may want to look into the cuckold/cuckold's partner remembering that its not cheating if THEY'RE the ones to suggest a three some.. I got invited to a Threesome, banged the girls, then the next day one of them broke it off because the other one cheated on her with me... ^.-

Also also, I might have to look into developing a plugin for this game to expand upon the S/M part. Seems like a missed opportunity to have sub/dom traits but no way of dominating/submitting. Like, the rape thing. Instead of outright rape, the player/victim could simply be coerced/dominated into fucking the bloke/girl doing it.
 

Etar

Active Member
Jul 17, 2017
815
1,274
So, I was poking around in the ini files and I saw this:
[/Script/Engine.EndUserSettings]
bSendAnonymousUsageDataToEpic=False

Donno if thats turned off by default or if you (@Vinfamy) turned it off in advance, but either way. Thanks, appreciate it. Epic aint exactly a company I trust now a days and I would have been peeved if I saw that was turned on without my knowledge (not to mention here in Europe it would be illegal to turn it on without any European's knowledge).

If it turns out you didnt turn it off/didnt even know about it, then I guess you dodged a bullet, I could easily see the rage of the nerds overcoming you, even if you werent responsible for turning it on. People would see it as you betraying their trust (Even if you didnt know about it).
 
3.30 star(s) 117 Votes