• 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.

Script Screenshot For Plugin Save/Load

CodeyChaos

New member
Joined
Jul 2, 2023
Messages
13
Reactions
2
Thanks to using MacGruber_IdlePoserUI.cs as a guide, I'm scripting a save system for my plugin that saves in the usual VaM way. The only thing missing is the screenshot option that usually pops up, like when saving a scene for example. Just wondering if there's another plugin out there that could show me how this would be scripted?
 
Just put
C#:
SuperController.singleton.DoSaveScreenshot(path+".jpg");
at the end of your save method. 'path' has to be the path to your json file without the extension. See ShakeIt.cs for a refeernce.
 
To load set the filter in Supercontroller.singleton.GetMediaPathDialog() to "json". The jpegs corresponding to the actual json should be automatically presented to you.
 
Back
Top Bottom