Search results for query: *

  1. MacGruber

    Question Can I add copyrighted music pack for scenes to vamhub recourse page?

    On load VaM converts into some internal formats (there are 3 different ones, depending on the purpose of use). That's why loading audio in VaM takes so long. However, you can provide audio in form of an AssetBundle, so that conversion is done up-front in Unity Editor. Scene loading times can be...
  2. MacGruber

    Question Can I add copyrighted music pack for scenes to vamhub recourse page?

    Obviously not ;) I would recommend to try find free music you can use, there is plenty around. For example https://www.free-stock-music.com/ is a good source. Got most music for my scenes from there. I think most songs there are under CC BY license only, you just have to credit the author. In...
  3. MacGruber

    Question how to add sound to a scene?

    What's the volume setting of that AptSpeaker atom? Do you have any plugins on that atom or elsewhere that may affect volume? (e.g. AudioAttenuation or AudioReverb)
  4. MacGruber

    Question how to add sound to a scene?

    Origin's way is a bit....cumbersome.... I recommend to use a EventAudioQueueEmpty from LogicBricks. Place it on the AudioSource and it gives you a trigger signal whenever there is no audio playing. So, use it to trigger whatever you use to play audio, like RandomSound, RandomSoundFromAB or...
  5. MacGruber

    Question Window mode

    What does that mean? What happens when you launch your custom BAT file?
  6. MacGruber

    Question Video editor

    Also would recommend the free version of Davinci Resolve. Not sure I would use it for professional use, it crashes occasionally, but for hobbists its definitly decent. You got all the things you need for frame precise cutting, assembling multiple clips, various effects from blends to adding text...
  7. MacGruber

    Question Real Life Pluggins

    Copy & paste from another thread for how to bring a character to "life" by using layered animation. The layers randomly interact with each other, so you don't have repeating patterns or anything like that. Still, this is a LONG way from what you are asking for. Its hugely complicated to do...
  8. MacGruber

    Question Building room with dimensions?

    You likely wanna do this either in Blender (complex) or maybe in Unity engine using ProBuilder (somewhat simpler to use). Check out this tutorial on how to export Unity content to VaM and the ProBuilder video link at the bottom...
  9. MacGruber

    Question What does Local Rotation/Position Grid do?

    Position grid snaps a position to the grid. For example if your grid size is 10cm (= 0.1m) and you position an atom at 0.678 / 2.341 / -0.567 then it would automatically snap to 0.7 / 2.3 / -0.6. Rotation grid works the same, just with rotations, so you snap your rotation to 30 or 45 degree...
  10. MacGruber

    Answered Could someone advise me how to get animations of picking up and using objects to look good?

    If you want to attach a CUA to multiple attachment points, just use multiple ParentHoldLink plugins and turn on the right one each time.
  11. MacGruber

    Answered Packing Problems

    You can, as long as you credit the author and make clear what's theirs. However, if the hair is already in a VAR, you should reference it instead as a dependency. If it isn't, you may also want to consider releasing the hair as a separate VAR, or ask the orginal author to do it.
  12. MacGruber

    Question How to light up an outside scene realistically?

    There is only so much you can do about shadow quality, but at least you can get the rest right: Import your own sky, e.g. some HDRI from https://polyhaven.com/ (see SkyMagic tutorial on what to do) Place a Directional light in the scene so that it matches the position of the sun in your sky...
  13. MacGruber

    Question What is the differance between session plugin and scene plugins?

    No, you would need a specialized plugin to do that.
  14. MacGruber

    Question How to Preventing Specific Atoms from Casting Shadows in VAM ?

    Nope. Again, you very likely just want to change your light setup. Having light sources come in from the sides in addition to global illum should do the trick.
  15. MacGruber

    Question How to Preventing Specific Atoms from Casting Shadows in VAM ?

    You could likely write a plugin (of find/pay someone to do it for you) that goes through all the renderers of the atom and sets "receiveShadows = false" for all of them. However, that is kind of a weird thing to do, unless your characters are partially transparent like for a "hologram" or...
  16. MacGruber

    Answered Plug-in to make person look at object

    Works just fine. Here is some old video of some Mocap Timeline combined with Glance+Gaze:
  17. MacGruber

    Answered Plug-in to make person look at object

    You can use Gaze together with Timeline. Gaze only controls head rotation, not head position. Hence you can tell Timeline to only control head position and not rotation. Here, I mean the "Control rotation" checkbox: https://github.com/acidbubbles/vam-timeline/wiki/Controller-settings-screen
  18. MacGruber

    Question Breast under clothes - question

    AFAIK that is just a multiplier for the matching settings in the breast physics settings somewhere. Meaning you could just change that setting directly, not using the multiplier. The benefit of the multiplier is just that it's stored together with the clothing item. not the character. You could...
  19. MacGruber

    Answered Could someone advise me how to get animations of picking up and using objects to look good?

    Don't know enough about Timeline's parenting feature mentioned by atani. So that may be or not be viable. However, some ages ago I build this example using ParentHoldLink. Make sure to use my modified version, not the original by Blazedust...
  20. MacGruber

    Question How to remove audio in a scene?

    To prevent audio from playing you have to find the trigger connection to the AudioSource that starts it. If you can't find it, open the scene JSON file with a text editor (e.g. Notepad++) and search for the filename. That should give you an idea. Once started audio will keep playing until...
Back
Top Bottom