is interactive vammoan for alt futa a thing yet?
Hi, the VAMMoan plugin currently identifies altfuta person atoms as female, and thus does not react on interactive stimulation of the male genital. This would have to be addressed within the VAMMoan plugin by
@hazmhox.
In my plugins, I use a slightly expanded routine to detect altfuta characters:
public void checkfemale()
{
//Check if atom is female or male
isFemale = geometry.gender == DAZCharacterSelector.Gender.Female;
isMale = geometry.gender == DAZCharacterSelector.Gender.Male;
//Detecting altfuta based on altfuta plugin
pluginID = FindPluginID(containingAtom,"Stopper.AlternativeFutaPenisMaterials");
//Set isFuta if female and has penis
isFuta = isFemale && pluginID != null;
}
private string FindPluginID(Atom atom, string suffix)
{
for (int i = 0; i < 20; i++)
{
var storable = atom.GetStorableByID($"plugin#{i}_{suffix}");
if (storable != null)
{
//SuperController.LogMessage($"FindPlugin: {suffix} - Found: {storable.storeId}");
return storable.storeId;
}
}
return null;
}
Since there are altfuta atoms with both male and female genitals, it's not clear which gender assumption would be most suitable in VAMMoan though!