• Hi Guest!

    Please be aware that we have released another critical security patch for VaM. We strongly recommend updating to version 1.22.0.10 using the VaM_Updater found in your installation folder.

    Details about the security patch can be found here.

Search results for query: *

  1. MacGruber

    [HELP] Does anyone know how to fix this lighting issue?

    It's caused by badly modeled geometry and/or texture coordinates, in this case in your clothing. For example a triangle with zero area because two or all three vertices are identical. That causes PostMagic to produce these artifacts. So, fix your clothing...or tell the creator to fix it and it...
  2. MacGruber

    Someone request more realistic skin in my video

    This. People on SexLikeReal don't know this is (or could be) real-time rendered in VR and actually interactive. And its a game engine that is a century old in tech-terms. So don't take their comments too seriously. But as Hazmhox said, light is everything. In an ideal world you would use...
  3. MacGruber

    Question Scene opening performance and optimization?

    You can't compare that as its a very different thing. VaM is designed to be customizable and easy to use. Yes, yes...people find VaM complicated but it's trivial compared to actual game dev. In contrast, AAA games are usually extremely optimized, with data being prepared, compressed and arranged...
  4. MacGruber

    Question Scene opening performance and optimization?

    If you got a scene that loads for multiple minutes, it might be because it has lots of audio files that aren't properly handled. Some scenes have hundreds or thousands of voice lines, sfx audio, etc. If those are loaded from individual audio files, loading can easily take multiple minutes as...
  5. MacGruber

    recommendation on gaze replacement

    Dude. Read my post above. Don't change what atom Gaze is looking at...animate that atom instead. Make the person look at its EyeTargetControl or some Empty atom and just animate that. Much more control over what is happening!
  6. MacGruber

    Plugins + Scripts Life

    The whole point of Life is to sync breathing audio to the animation. So, nope. That said, some years back I started working on a way to play speech audio via Life, which would interrupt the breathing in the correct manner then play the speech line and go back to breathing. Lots of edge cases to...
  7. MacGruber

    can't use System.Threading.Tasks

    Various things such as networking and file access are locked out from use for security reasons. Makes it harder for malicious people to make VaM plugins containing malware. Likely Threading is among those things being locked out, too.
  8. MacGruber

    Plugins + Scripts MacGruber Essentials

    Quoting the description:
  9. MacGruber

    Plugins + Scripts MacGruber Essentials

    There is a 2-part tutorial on video recording among my other tutorials here. You should probably watch both, but the second part mentions SuperVideo: https://hub.virtamate.com/resources/macgrubers-video-tutorials.7313/ Note that SuperVideo does not record video, that's done with external tools...
  10. MacGruber

    Question How to make solid object connection?

    @DemoniKsataNa666 All the nodes have one control and one non-control. Like lHandControl and lHand. Imagine the controls being attached to the non-controls via springs. You use the controls to "puppeteer" the body...but the actual body is located at the other nodes.
  11. MacGruber

    Question How to make solid object connection?

    In your screenshot you are linking to the hand control....not the hand. That's your problem. ParentHoldLink definitely works, although I would of course recommend my slightly improved version that is included in Essentials collection.
  12. MacGruber

    Question Attempt to load new assetbundle while another is already being loaded

    Possibly it's an AssetBundle loaded by some plugin. These are sometimes used for larger custom UI or shaders. If the scene worked before, maybe it's one of the session plugins.
  13. MacGruber

    I want to know how much my hardware upgrade will impact the frame rate.

    Look at the benchmark thread and try to find people with similar CPU and GPU. https://hub.virtamate.com/threads/benchmark-result-discussion.13131/
  14. MacGruber

    [C#] How can I make filterless small ComboBox ? (Done)

    Well, lets say your Popup is placed right at the bottom, maybe the last element. In that case even with scrollbar there might not be enough space. Hence adding a spacer as the last UI element just allows you to scroll the plugin UI further down. Just a simple workaround for VaM's UI limitations.
  15. MacGruber

    How list all morphs

    Look at the Life plugin => Internal\MacGruber_DriverBreathing.cs => InitAnimation() Using the GenerateDAZMorphsControlUI object you should be able to get a list of morphs via any of these: List<DAZMorph> GetMorphs() List<string> GetMorphDisplayNames() List<string> GetMorphUids()
  16. MacGruber

    All "Free" Resources must be hosted on the Hub

    This is a response to this announcement by @AshAuryn : https://hub.virtamate.com/threads/all-free-resources-must-be-hosted-on-the-hub.60972/ Uh, not everything has a VAR? Would about things like guides? Those might have PDFs or ZIP files attached...or just the resource description is the...
  17. MacGruber

    [C#] How can I make filterless small ComboBox ? (Done)

    Just as a note, in some situations it can help to just add a Spacer element to the bottom of your UI. public static UIDynamic SetupSpacer(MVRScript script, float height, bool rightSide) { UIDynamic spacer = script.CreateSpacer(rightSide); spacer.height = height; return spacer; }
  18. MacGruber

    Plugins + Scripts LogicBricks

    yes. From your description, it should just work. Maybe the issue is with Timeline? You try to trigger something visible...like toggling visibly of some Shape atom.
  19. MacGruber

    Plugins + Scripts MacGruber Essentials

    The problem is most likely VRAM, not RAM. So, memory of your graphics card. In the UI the plugin shows you how much VRAM it eats, that can be up to around 6GB, depending on the settings, if I remember correctly. That VRAM usage is on top on whatever VAM needs for your scene and what other...
Back
Top Bottom