Search results for query: *

  1. MacGruber

    Great FPS, untill closing in to atom's face. What could be the culprit?

    Hair I would presume? Hair has a high cost per pixel on screen. So, if most of the screen is filled with hair as you get closer, performance goes down. Try to go for a shorter hair and reduce sim quality in the hairs settings.
  2. MacGruber

    Looking for info regarding billboard effects or particles with image attached

    Yeah, try to find some particle tutorials for Unity 2018.
  3. MacGruber

    Looking for info regarding billboard effects or particles with image attached

    You can import particle effects from Unity Editor into VaM as "CUA" (CustomUnityAsset). You may need some little plugin on that CUA, if your particle effect does need any triggering via VaM's trigger system.
  4. MacGruber

    Worrying message in console

    This shouldn't happen. Not with my plugins. @Thorozar As always, make sure to get packages from the proper source. Don't get packages from other sources that "convientenly" bundle them for you or whatever. Packages are too easily manipulated as there is no protection against injecting something...
  5. MacGruber

    Uncap max presets? Just realized every new preset deletes the oldest. :(

    Presets are just files, there is no real limit. However, note that presets are overriden, if the filename already exists.
  6. MacGruber

    Hello, I would like to ask for some advice please

    Take your bathroom scene and remove any characters, animation or scene logic from it. Anything you don't want in the final scene. Then save it under a new name. Take your bedroom sceen and remove all parts of the enviroment. Every object in VaM is an "atom", so it can be removed. Note that many...
  7. MacGruber

    how to make audio source play indefinitely?

    As @atani said, there is a LogicBrick named "EventAudioQueueEmpty". It gives you a trigger signal whenever the audio finished playing. So have that trigger the RandomSound brick. That way you don't have to caree about the length of audio files.
  8. MacGruber

    Cant upload free scene that is hosted on Patreon (externally)

    Not relevant to the stated problem, but I would strongly recommend to consider uploading to the Hub. Installing your scenes from within VaM (via "Hub-Browse" window) will make it significantly easier for your customers to install your content correctly with all needed dependencies. It would be...
  9. MacGruber

    Drop down menu cut off

    Whatever plugin this is, the plugin creator needs to account for this: Leaving enough space at the bottom, so you can scroll down. For example by adding a "spacer" at the bottom or changing the order or UI elements so the drop down isn't the last one. Possibly using the other type of drop down...
  10. MacGruber

    Plugin prototyping: Easy Pose Biomechanics Rig

    Gave it a quick try....doing both seems to work? hipControl.SetLinkToAtom(personAtomName); hipControl.SetLinkToRigidbodyObject(chestControllerName); if (hipControl.linkToAtomSelectionPopup != null) { hipControl.linkToAtomSelectionPopup.currentValue = personAtomName...
  11. MacGruber

    Plugin prototyping: Easy Pose Biomechanics Rig

    The hipControl does exist just fine. However you try to access the UI, which doesn't exist until you opened it: _hipControl.linkToAtomSelectionPopup Possibly you would want to try calling one or more of those methods on FreeControllerV3 instead of going through the UI: SetLinkToAtom(string...
  12. MacGruber

    Just not working "Buttons"

    Which scene are we talking about here? (Hub-Link please) Where are you located, where is the button? (Screenshot please) Clicking a button in VaM Desktop-Mode works by shooting a ray from the camera position through the mouse cursor. VaM simply takes the first object it hits. Do you maybe have...
  13. MacGruber

    I get compile errors when I copy a clean version.

    For the record, these are not compiler errors. There is something wrong with the various VARs that are listed in your error messages. This one should be pretty clear. VaM is confused by the (1) in the filename. You have that VAR somehow twice. There can only be one. Regarding that...
  14. MacGruber

    I get compile errors when I copy a clean version.

    You question is way to vague and impossible to answer. This can be 1000 different things. What scene are you talking about? What's the (full!) error message you are getting? Which plugins are involved? What are the proper/old and new folder names? What's the full path for each?
  15. MacGruber

    Having a problem with SuperShot

    Nope. PostMagic is just a UI frontend to hidden VaM features. The value range is simply just what VaM supports, can't change that.
  16. MacGruber

    Old version of plugin in dependencies

    For plugins you should always use the specific version or your scene might break. However, plugins are usally tiny, so it's not a problem to keep multiple versions of a plugin.
  17. MacGruber

    Fps drops from 90 to 1 in User Preferences/Performance and Performance 2 tab

    Possibly caused by whatever custom plugin you use there. The "FPS Cap" slider is not a VaM standard thing.
  18. MacGruber

    How do I grab both breasts at the same time? M+KB

    I don't think you can, only in VR.
  19. MacGruber

    Best option for video screen capture on desktop?

    Can confirm, using OBS for recording. Free version of DaVinci Resolve for cutting/editing video.
  20. MacGruber

    Obj textures looks bad after conversion from unity

    Make sure Color space is set to "Linear" in your Unity project settings. If textures then look bad in Unity editor, adjust the sRGB checkbox in the import settings for individual textures.
Back
Top Bottom