• Hi Guest!

    We are extremely excited to announce the release of our first Beta for VaM2, the next generation of Virt-A-Mate which is currently in development.
    To participate in the Beta, a subscription to the Entertainer or Creator Tier is required. Once subscribed, download instructions can be found here.

    Click here for information and guides regarding the VaM2 beta. Join our Discord server for more announcements and community discussion about VaM2.
Benchmark

Plugins + Scripts Benchmark

Download [27.04 MB]
I have a similar situation, I click on any of the launch options, the interface just disappears (where the launch buttons are) and nothing happens in the scene
Same issue, but I got it working on a "CLEAN" install updated to the latest version 12, meaning no additional vars, no session plugin, nothing but the essential. Give it a try.
 
Same issue, but I got it working on a "CLEAN" install updated to the latest version 12, meaning no additional vars, no session plugin, nothing but the essential. Give it a try.
yes you are right. as soon as i removed all session plugins everything started working. thanks
 
as soon as i removed all session plugins everything started working. thanks
It would be interesting to know WHICH Session plugin was causing this.
Normally the Benchmark plugin is supposed to TELL you that you got session plugins and that you need to remove them. Maybe there is some plugin that does weird stuff breaking this check somehow?

TL;DR: Please give me a list of your session plugins....or better, try yourself which one is causing this.
 
It would be interesting to know WHICH Session plugin was causing this.
Normally the Benchmark plugin is supposed to TELL you that you got session plugins and that you need to remove them. Maybe there is some plugin that does weird stuff breaking this check somehow?

TL;DR: Please give me a list of your session plugins....or better, try yourself which one is causing this.
1743744550618.png


1743744559530.png


I know it's not UI Assist, probably one of the other ones.
 
It would be interesting to know WHICH Session plugin was causing this.
Normally the Benchmark plugin is supposed to TELL you that you got session plugins and that you need to remove them. Maybe there is some plugin that does weird stuff breaking this check somehow?

TL;DR: Please give me a list of your session plugins....or better, try yourself which one is causing this.
yes, if you don't remove this plugin from the session plugins, then even the message doesn't appear
 
Thanks for your help @MaximusVelikii and @VAMSOY. Issue is indeed caused by @CheesyFX 's plugin. It stores NULL data into the scene JSON for some reason. That causes JSONClass.ToString to throw an exception when Benchmark is trying to check scene integrity. Member variables sceneLightConfig and lightshowConfig are not initialized properly, so they can be just NULL.
C#:
// FocusOnMe_ScenePlugin.cs

public override JSONClass GetJSON(bool includePhysical = true, bool includeAppearance = true, bool forceStore = false)
{
    JSONClass jc = base.GetJSON(includePhysical, includeAppearance, forceStore);
    jc["LightMeUp"]["SceneLightConfig"] = sceneLightConfig;
    jc["LightMeUp"]["LightshowConfig"] = lightshowConfig;
    needsStore = true;
    return jc;
}

Will try to push an update to Benchmark soon™ that works around this and show an appropriate error message. However, this should be fixed on @CheesyFX 's side. Actually I'm not sure why it doesn't cause issues when saving any VaM scene.
 

Similar threads

Back
Top Bottom