Search results for query: *

  1. mrmr32

    Get a character base textures?

    I don't want to modify it, I want to load it into DecalMaker to transition between two different characters. That's why I need the url to the texture, not the texture.
  2. mrmr32

    Get a character base textures?

    Hi, I'm trying to get all the textures (diffuse, decal, specular, gloss and bump from the head, torso, limbs and genitals) from a character (for example, "Olympia"). I need the path to the image, not the image itself. Still, if I get the `Texture2D` I can save it into a temporal folder (but it...
  3. mrmr32

    Have you tried chat GPT to write unity code??????

    All the image distorsion made on UVSwapper was entirely made by GPT, so yeah it's pretty useful. Still, not perfect (had to debug 2 hours because he missed a single line of code).
  4. mrmr32

    Adding a texture to DecalMaker programmatically

    I had no idea about the CallAction method. Thanks, it worked.
  5. mrmr32

    Adding a texture to DecalMaker programmatically

    Hi, I have to add a texture to DecalMaker, by @Chokaphi using a script. Right now what I'm doing is to get the original JSON, and adding to the array a new JSON class with the path. You can check the code below for reference. public static void LoadOriginTexturesIntoDecalMaker(JSONClass...
  6. mrmr32

    Edit plugins

    As @MacGruber already said, you don't need anything special, just Notepad++ will work. I usually use Visual Studio because it will highlight VAM's classes (I can't find the tutorial where they show how to import them, but there's one out there). To learn how to code first you'll need to know...
  7. mrmr32

    Reading a .json file inside my own package

    Hi, I have to read a .json with information that I'll include before building the plugin. I've read files before, but they were physical files; not files inside a package. I've tried to do something similar to the .cslist syntax and I've come with this solution...
  8. mrmr32

    Pay a fee to customize the tracker plugin

    Oh OK, then I was the one that didn't understand what you had in mind.
  9. mrmr32

    Pay a fee to customize the tracker plugin

    Hi, I'm also interested in this because I should get my SlimeVR trackers in about 4 months. If no one contacts you by that date I'll do it myself. Have you tried if Embody works? They state that "It allows easy and precise full-body tracking using Vive trackers", maybe it works with SlimeVR too.
  10. mrmr32

    Adding the "Actions on trigger" menu in plugin GUI

    I decided to use Macgruber_Utils.cs. Easier to use, cleaner GUI, and you can see how it is used in the plugin itself. Thanks for all, you saved me!
  11. mrmr32

    How to make http requests?

    Even with using UnityEngine.Networking; that error raises... and the method does exists in Unity 2018.1... I'm afraid you'll need to do it the tedious way and use System.Net.
  12. mrmr32

    Adding the "Actions on trigger" menu in plugin GUI

    I want to add actions when a internal script event happens, and I thought using the already existing VAM trigger GUI will be the easiest way to do it. In particular I need this part of the CollisionTrigger/LookAtTrigger (add actions & edit them): I've been searching for almost a week now, and...
Back
Top Bottom