Search Unity

UMA - Unity Multipurpose Avatar on the Asset Store!

Discussion in 'Assets and Asset Store' started by FernandoRibeiro, Dec 24, 2013.

  1. CYM

    CYM

    Joined:
    Aug 5, 2013
    Posts:
    20
    Is UMA support the LOD?
     
  2. umutozkan

    umutozkan

    Joined:
    Oct 30, 2015
    Posts:
    406
    It does. There is an UMASimpleLOD script. There should be a sample scene with it. It does texture LOD and mesh LOD (if you select the switch slots option) but you need LOD slots. Default UMA package doesn't have slots.

    o3n UMA Races have an LOD package on UAS though.
     
    Jaimi likes this.
  3. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    SecretAnorak has a complete tutorial for using the bone builder and integrating with Opsive:

     
    hopeful likes this.
  4. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    Make sure you have set the correct Animator Controller for the race (or the default) in the "race animation controllers" section of the DynamicCharacterAvatar.
     
  5. Xype

    Xype

    Joined:
    Apr 10, 2017
    Posts:
    339
    thanks! Easiest workaround ever.
     
  6. A1T

    A1T

    Joined:
    Mar 19, 2018
    Posts:
    3
    Hi. I have some problems with building texture atlas. Overlay looks fine as original textures. In gamemode textures changed and i cant understand this(normal map: random shuffle channels; albedo - darker then original), but other assets works fine. Unity 2018.2.10f1 and UMA 2.7
     

    Attached Files:

  7. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    There was a bug I fixed when saving texture atlases to disk. This also affected the textures if the "Convert Render Textures" option is selected. This is fixed in the current Develop branch on github (waiting for 2.8 RC to be released - in a week or so). This could affect you differently - if you're not converting render textures, then it could be that saving and looking at the textures is wrong. If you are converting, then they come out miscolored.

    But your normal map looks completely wrong. like the color channels are flipped. There is a section of code where it does flip RGB->BGR if you have "convert render textures" selected, and you are on a Mac (due to a unity bug). If that is the case, perhaps it is no longer needed?

    Anyway - here's things to check: Is your texture marked as a normal map in the import settings? Is the channel marked as a normal map in the UMAMaterial? Do you have "Convert Render Textures" turned on in the Generator settings? Are you on a Mac?
     
    hopeful and A1T like this.
  8. A1T

    A1T

    Joined:
    Mar 19, 2018
    Posts:
    3
    1. Yes, texture marked as normal map.
    2. UMAMaterial normal map marked as normalmap.
    3. By default "Convert Render Testures" disabled and turning on/off doesn't help(
    4. No, Windows 10
     
  9. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    If you're dumping the textures out and looking at them, first thing to do is fix the bug with dumping textures. in UMALoadSaveMenuItems.cs, replace the "GetRTPixels" function with this one:

    Code (CSharp):
    1.       static public Texture2D GetRTPixels(RenderTexture rt)
    2.       {
    3.  
    4.          // Remember currently active render texture
    5.          RenderTexture currentActiveRT = RenderTexture.active;
    6.  
    7.          // Set the supplied RenderTexture as the active one
    8.          RenderTexture.active = rt;
    9.  
    10.          // Create a new Texture2D and read the RenderTexture image into it
    11.          Texture2D tex = new Texture2D(rt.width, rt.height,TextureFormat.ARGB32,false,true);
    12.          tex.ReadPixels(new Rect(0, 0, tex.width, tex.height), 0, 0);
    13.  
    14.          // Restore previously active render texture
    15.          RenderTexture.active = currentActiveRT;
    16.          return tex;
    17.       }
    All that really does is turn on the HDR flag. Without that, the textures will all come out way darker and be slightly off color.

    Other than that, can you post a picture of the UMAMaterial?
     
  10. A1T

    A1T

    Joined:
    Mar 19, 2018
    Posts:
    3
    Problem solved with changing 32bit images to 16bit
     
    Last edited: Oct 1, 2018
    hopeful likes this.
  11. GeekosaurusR3x

    GeekosaurusR3x

    Joined:
    Nov 22, 2013
    Posts:
    15
    Hello guys, I'm trying to implement a new race into my project but i have a warning :

    Code (CSharp):
    1. Could not claim shared submesh buffer of size: 309336
    2. UnityEngine.Debug:LogWarning(Object)
    3. UMA.UMAMeshData:GetSubmeshBuffer(Int32, Int32) (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAMeshData.cs:407)
    4. UMA.SkinnedMeshCombiner:CombineMeshes(UMAMeshData, CombineInstance[], BlendShapeSettings) (at Assets/UMA/Core/StandardAssets/UMA/Scripts/SkinnedMeshCombiner.cs:64)
    5. UMA.UMADefaultMeshCombiner:UpdateUMAMesh(Boolean, UMAData, Int32) (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMADefaultMeshCombiner.cs:170)
    6. UMA.UMAGeneratorBuiltin:UpdateUMAMesh(Boolean) (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAGeneratorBuiltin.cs:282)
    7. UMA.UMAGeneratorBuiltin:HandleDirtyUpdate(UMAData) (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAGeneratorBuiltin.cs:226)
    8. UMA.UMAGeneratorBuiltin:OnDirtyUpdate() (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAGeneratorBuiltin.cs:265)
    9. UMA.UMAGeneratorBuiltin:Work() (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAGeneratorBuiltin.cs:132)
    10. UMA.UMAGeneratorBuiltin:Update() (at Assets/UMA/Core/StandardAssets/UMA/Scripts/UMAGeneratorBuiltin.cs:97)
    11.  
    And there is noMesh Avatar into my scene. With standard body it's working

    I have flolowed the tutorials from Secret Anorak and i have split my body mesh into Head and Body

    Did you have an idea ?
     
  12. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    What size is your mesh (number of vertexes, triangles)? Currently UMA only supports meshes with up to 64K verts and tris (for compatibility with old UMA).
     
    Faydaen likes this.
  13. GeekosaurusR3x

    GeekosaurusR3x

    Joined:
    Nov 22, 2013
    Posts:
    15
    Hum ok
    my body part have 68k tris and my unified body have 108k

    I will try to look how decrease number of tris.

    Thank you :)
     
  14. hopeful

    hopeful

    Joined:
    Nov 20, 2013
    Posts:
    5,684
    Might turn this into a check box where a check enforces the 64k limit?
     
  15. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    Yeah, we should probably just warn them right off, or detect it and switch over to 32 bit mesh buffers. :)
     
    hopeful likes this.
  16. hopeful

    hopeful

    Joined:
    Nov 20, 2013
    Posts:
    5,684
    An automatic switch when detected would be fine by me. :)
     
  17. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    All - we've released a Release Candidate of UMA 2.8:

    https://github.com/umasteeringgroup/UMA/releases/tag/Release-28-rc

    The minumum version of Unity for this release is 2017.1.

    Highlights of the 2.8 release are as follows:


    UMA 2.8 Release Candidate

    General Changes

    The minumum supported release of Unity is now Release 2017.1
    Reworked Blendshapes, improved API, optimized.
    Improved performance in expression player.
    Ability to set texture properties on the UMMaterial (aniso level, trilinear filtering, mipmap bias).
    Ability to downsample textures at atlas build time (in UMAMaterial).
    Ability to hide any slot from a wardrobe (not just base slots)
    Improved Physics Avatar.
    UMAMeshData is now clonable
    Fixed issue with removed slots when using MeshHideAssets
    Cleaned up error reporting for duplicate bones
    Support for UWP build using IL2CPP
    Updated queue on hair shader and materials for improved look against skyboxes
    Added Timeline Clips for Race, Colors, DNA, and Wardrobe
    Mouse orbitor now takes a bone to look at (instead of a bone path)
    and many more bug fixes and optimizations

    Editor Improvements
    Add race updater to update base race overlays to new materials
    UMAGenerator atlas size is now a dropdown list
    Added progress bar when adding items to Global Lib via drag/drop or rebuild.
    Added Re-orderable list to Dynamic DNA
    Lot of enhancements to the Mesh Hide system:
    • - Ability to view and export UV map (With alpha for selected polys)
    • - Ability to select base slots from dropdown.
    • - Symmetry paint mode

    Ability to create wardrobe recipes from hierarchy and slot builder
    Tags editor to mass tag UMA assets (and remove UMA tags)
    Copy/Paste DCA Wardrobe
    Add progress bars to global library
    Added TPose inspector
    Menu item to create Dynamic DNA
    Ability to edit edit multiple SlotdataAsset and OverlayDataAsset in the inspector
    Morph DNA editor added

    Scenes
    Help text added to most scenes
    DCA Sample accessory mounting scene added
    Fixed small issue with not found colors in Asset Bundle scene
    Timeline sample scene showing how to morph, recolor, change sex, and change wardrobe.
     
    Last edited: Oct 3, 2018
    Flegy, Firlefanz73, Hitch42 and 5 others like this.
  18. hopeful

    hopeful

    Joined:
    Nov 20, 2013
    Posts:
    5,684
    1000 likes! I'm always so glad to see improvements to UMA. You guys are doing a great job!!! :D
     
    Jaimi likes this.
  19. Jschilz1

    Jschilz1

    Joined:
    Jul 18, 2016
    Posts:
    47
    Jaimi Thanks for your help a few days ago it got me to the right direction regarding the Animator.

    That being said i am having another issue and this has to do with a tutorial i am working on from Udemy. I am learning more about AI and creating my own animations to work with UMA in the future and i am using his models and then adding the same codes to the UMA so i can see them work side by side and try to fully understand some more about Animations and State-machines as i cont to Learn. I am However running into an issue with my codes working perfectly with a mixamo character but when i use the same codes on my Uma i can see my animations working but the Nav agent which is driving some of my AI and code driving other parts are not working properly with the UMA Character. Im adding a video and seeing if anyone can point me in the right direction.
    I am using my turns in my code im not sure if this helps any but this is i believe the script handling this event(In the Update section between 102-120 is the turning area)
    if i change my turn on spot threshold then i can get him to turn but he has to stop and turn not continuous motion. the stop and turn is what he does in the beginning, And it doesnt look as good if he has to drop to a different state to turn rather than turning as he is running or walking , so the issue is in that section i believe and it works with a Mixamo character with same code and animation but not with the UMA character

    Code (CSharp):
    1. using UnityEngine;
    2. using System.Collections;
    3.  
    4. // ----------------------------------------------------------------
    5. // CLASS    :    AIZombieState_Patrol1
    6. // DESC        :    Generic Patrolling Behaviour for a Zombie
    7. // ----------------------------------------------------------------
    8. public class AIZombieState_Patrol1 : AIZombieState
    9. {
    10.     // Inpsector Assigned
    11.     [SerializeField] float               _turnOnSpotThreshold    = 80.0f;
    12.     [SerializeField] float               _slerpSpeed            = 5.0f;
    13.  
    14.     [SerializeField] [Range(0.0f, 3.0f)] float     _speed            = 1.0f;
    15.  
    16.     // ------------------------------------------------------------
    17.     // Name    :    GetStateType
    18.     // Desc    :    Called by parent State Machine to get this state's
    19.     //            type.
    20.     // ------------------------------------------------------------
    21.     public override AIStateType GetStateType()
    22.     {
    23.         return AIStateType.Patrol;
    24.     }
    25.  
    26.     // ------------------------------------------------------------------
    27.     // Name    :    OnEnterState
    28.     // Desc    :    Called by the State Machine when first transitioned into
    29.     //            this state. It initializes the state machine
    30.     // ------------------------------------------------------------------
    31.     public override void        OnEnterState()        
    32.     {
    33.         Debug.Log ("Entering Patrol State");
    34.         base.OnEnterState ();
    35.         if (_zombieStateMachine == null)
    36.             return;
    37.  
    38.         // Configure State Machine
    39.         _zombieStateMachine.NavAgentControl (true, false);
    40.         _zombieStateMachine.seeking = 0;
    41.         _zombieStateMachine.feeding = false;
    42.         _zombieStateMachine.attackType = 0;
    43.  
    44.         // Set Destination
    45.         _zombieStateMachine.navAgent.SetDestination( _zombieStateMachine.GetWaypointPosition( false ) );
    46.  
    47.         // Make sure NavAgent is switched on
    48.         _zombieStateMachine.navAgent.Resume ();
    49.     }
    50.  
    51.  
    52.     // ------------------------------------------------------------
    53.     // Name    :    OnUpdate
    54.     // Desc    :    Called by the state machine each frame to give this
    55.     //            state a time-slice to update itself. It processes
    56.     //            threats and handles transitions as well as keeping
    57.     //            the zombie aligned with its proper direction in the
    58.     //            case where root rotation isn't being used.
    59.     // ------------------------------------------------------------
    60.     public override AIStateType OnUpdate ()
    61.     {
    62.         // Do we have a visual threat that is the player
    63.         if (_zombieStateMachine.VisualThreat.type==AITargetType.Visual_Player)
    64.         {
    65.             _zombieStateMachine.SetTarget ( _zombieStateMachine.VisualThreat );
    66.             return AIStateType.Pursuit;
    67.         }
    68.  
    69.         if (_zombieStateMachine.VisualThreat.type==AITargetType.Visual_Light)
    70.         {
    71.             _zombieStateMachine.SetTarget ( _zombieStateMachine.VisualThreat );
    72.             return AIStateType.Alerted;
    73.         }
    74.  
    75.         // Sound is the third highest priority
    76.         if (_zombieStateMachine.AudioThreat.type==AITargetType.Audio)
    77.         {
    78.             _zombieStateMachine.SetTarget (_zombieStateMachine.AudioThreat );
    79.             return AIStateType.Alerted;
    80.         }
    81.  
    82.         // We have seen a dead body so lets pursue that if we are hungry enough
    83.         if (_zombieStateMachine.VisualThreat.type==AITargetType.Visual_Food)
    84.         {
    85.             // If the distance to hunger ratio means we are hungry enough to stray off the path that far
    86.             if ( (1.0f- _zombieStateMachine.satisfaction) > (_zombieStateMachine.VisualThreat.distance/_zombieStateMachine.sensorRadius)  )
    87.             {
    88.                 _stateMachine.SetTarget ( _stateMachine.VisualThreat );
    89.                 return AIStateType.Pursuit;
    90.             }
    91.         }
    92.  
    93.         // If path is still be computed then wait
    94.         if (_zombieStateMachine.navAgent.pathPending)
    95.         {
    96.             _zombieStateMachine.speed = 0;
    97.             return AIStateType.Patrol;
    98.         }
    99.         else
    100.             _zombieStateMachine.speed = _speed;
    101.  
    102.         // Calculate angle we need to turn through to be facing our target
    103.         float angle = Vector3.Angle (_zombieStateMachine.transform.forward, (_zombieStateMachine.navAgent.steeringTarget - _zombieStateMachine.transform.position));
    104.  
    105.         // If its too big then drop out of Patrol and into Altered
    106.         if (angle > _turnOnSpotThreshold)
    107.         {
    108.             return AIStateType.Alerted;
    109.         }
    110.  
    111.         // If root rotation is not being used then we are responsible for keeping zombie rotated
    112.         // and facing in the right direction.
    113.         if (!_zombieStateMachine.useRootRotation)
    114.         {
    115.             // Generate a new Quaternion representing the rotation we should have
    116.             Quaternion newRot = Quaternion.LookRotation (_zombieStateMachine.navAgent.desiredVelocity);
    117.  
    118.             // Smoothly rotate to that new rotation over time
    119.             _zombieStateMachine.transform.rotation = Quaternion.Slerp( _zombieStateMachine.transform.rotation, newRot, Time.deltaTime * _slerpSpeed);
    120.         }
    121.  
    122.         // If for any reason the nav agent has lost its path then call the NextWaypoint function
    123.         // so a new waypoint is selected and a new path assigned to the nav agent.
    124.         if (_zombieStateMachine.navAgent.isPathStale ||
    125.             !_zombieStateMachine.navAgent.hasPath   ||
    126.             _zombieStateMachine.navAgent.pathStatus!=UnityEngine.AI.NavMeshPathStatus.PathComplete)
    127.         {
    128.             _zombieStateMachine.navAgent.SetDestination(_zombieStateMachine.GetWaypointPosition ( true ));
    129.         }
    130.  
    131.  
    132.         // Stay in Patrol State
    133.         return AIStateType.Patrol;
    134.     }
    135.  
    136.  
    137.  
    138.     // ----------------------------------------------------------------------
    139.     // Name    :    OnDestinationReached
    140.     // Desc    :    Called by the parent StateMachine when the zombie has reached
    141.     //            its target (entered its target trigger
    142.     // ----------------------------------------------------------------------
    143.     public override void     OnDestinationReached ( bool isReached )
    144.     {
    145.         // Only interesting in processing arricals not departures
    146.         if (_zombieStateMachine == null || !isReached)
    147.             return;
    148.  
    149.         // Select the next waypoint in the waypoint network
    150.         if (_zombieStateMachine.targetType == AITargetType.Waypoint)
    151.             _zombieStateMachine.navAgent.SetDestination (_zombieStateMachine.GetWaypointPosition ( true ));
    152.     }
    153.  
    154.     // -----------------------------------------------------------------------
    155.     // Name    :    OnAnimatorIKUpdated
    156.     // Desc    :    Override IK Goals
    157.     // -----------------------------------------------------------------------
    158.     /*public override void         OnAnimatorIKUpdated()
    159.     {
    160.         if (_zombieStateMachine == null)
    161.             return;
    162.  
    163.         _zombieStateMachine.animator.SetLookAtPosition ( _zombieStateMachine.targetPosition + Vector3.up );
    164.         _zombieStateMachine.animator.SetLookAtWeight (0.55f );
    165.     }*/
    166. }
     
    Last edited: Oct 4, 2018
  20. kenamis

    kenamis

    Joined:
    Feb 5, 2015
    Posts:
    387
    @Jschilz1 briefing looking at your code, it looks like you're relying on no root motion for turning. Do you have "useRootMotion" on, on the UMA animator by any chance?
     
  21. Jschilz1

    Jschilz1

    Joined:
    Jul 18, 2016
    Posts:
    47
    My Character Animator has Apply root motion as Handled by script. Did not see a spot for UMA specific animator showing anything about root motion here is what i see in the inspector. the only difference between the two characters in the above video would be the UMA Dynamic Avatar and the bones created by the bone creator, everything else is exactly the same. On the animations i have a script to tell it to use root position not the rotation cause the rotation is being handled by the nav mesh direction as you see in the added screenshot Inspector.png
     
  22. kenamis

    kenamis

    Joined:
    Feb 5, 2015
    Posts:
    387
    I sent you a private message where we can work on this issue. I doubt it has anything specific to do with UMA except for maybe needing to wait for an event/callback from uma generation.
     
  23. rshnbs

    rshnbs

    Joined:
    Jul 21, 2018
    Posts:
    2
    Hello, I've created a new race by following steps of Secret Anorak's tutorials. First I created character on Adobe Fuse and imported it to Mixamo and then to Blender. I converted to UMA and now I'm trying to use LipSync Lite on my new avatar but it doesn't work. So what am I missing and what should I do to fix this?

     
  24. nsmith1024

    nsmith1024

    Joined:
    Mar 18, 2014
    Posts:
    870
    Anybody knows how to use VRIK (FinalIK) with UMA ( and VRTK) ? i tried following the steps here

    http://umawiki.secretanorak.com/3rd_party_integration

    But I just got these errors

    NullReferenceException: Object reference not set to an instance of an object
    RootMotion.FinalIK.IKSolverVR+Arm.Stretching () (at Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVRArm.cs:220)
    RootMotion.FinalIK.IKSolverVR+Arm.Solve (Boolean isLeft) (at Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVRArm.cs:324)
    RootMotion.FinalIK.IKSolverVR.Solve () (at Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVR.cs:442)
    RootMotion.FinalIK.IKSolverVR.OnUpdate () (at Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolverVR.cs:291)
    RootMotion.FinalIK.IKSolver.Update () (at Assets/Plugins/RootMotion/FinalIK/IK Solvers/IKSolver.cs:61)
    RootMotion.FinalIK.IK.UpdateSolver () (at Assets/Plugins/RootMotion/FinalIK/IK Components/IK.cs:27)
    RootMotion.SolverManager.LateUpdate () (at Assets/Plugins/RootMotion/Shared Scripts/SolverManager.cs:113)
     
  25. raeldor

    raeldor

    Joined:
    Jul 8, 2013
    Posts:
    55
    Hi,

    Firstly, thanks for the great work. It's obvious a lot of effort has gone in here and there's surprisingly few currently supported assets that accomplish this.

    I've only just started working with UMA 2, so I'm sure this is something I'm doing wrong, but I created a basic female, which seems to be working, but when I add the expression player nothing seems to be happening. I can see the sliders moving, but the face remains the same, and moving the sliders manually seems to have no effect. I have the override check boxes on. Am I missing a step?

    Also, I see a jaw open/close, but not a mouth open/close option. Given that humans can accomplish this, how can I get this level of control in UMA? Also, is there a reason there isn't inner and outer brow control? Seems pretty essential for conveying emotion.

    Thanks
    Ray
     
  26. raeldor

    raeldor

    Joined:
    Jul 8, 2013
    Posts:
    55
    Well, that's a little confusing. It seems there's an 'Expression Player' and a 'UMA Expression Player', both of which seem identical. Seems to be working now, though where is the default 'talking' animation coming from and how do I stop it? :) Would appreciate some pointers on the other feedback when you have time. Thank you. Oh, also a cheek up/down seems useful too, as sometimes when people smile their cheeks go up and their eyes squint a little.
     
    Last edited: Oct 7, 2018
  27. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    The "ExpressionPlayer" is the base object for the UMAExpressionPlayer. The UMAExpressionPlayer enables blinking and eye darting (saccades), and is automatically assigned to the character based on the race (if the race has one).

    The Expression clips are simply animation clips. The demo you are seeing is the "Facial Animation Demo" animation, and is part of the example "Locomotion with head" animator controller (it's on a separate layer).

    You should be able to create your own expressions by creating a "Bone Pose" for the expression, and then adding it to the ExpressionSet. To do this, you will need to add a PoseName to the ExpressionPlayer, and then regenerate the ExpressionSet, and add all the boneposes back, and add yours. The UI could be a little friendlier here.

     
    raeldor and hopeful like this.
  28. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    These look like something isn't setup right in AnyIK. I suggest to put in a support ticket:

    http://www.o3n.org/my-tickets/


     
  29. GeekosaurusR3x

    GeekosaurusR3x

    Joined:
    Nov 22, 2013
    Posts:
    15
    Hi, sorry to bother you again but i'm facing another problems.

    I use another body but this time i'm missing part of face :
    face.jpg
    But my face slot mesh look right :
    facemesh.png
    And finally my recipe with all my slots :
    recipe.png

    I'm not sure what i'm doing wrong as my log window is empty.

    Edit :
    I'm on unity 2018.1.6f1 with UMA 2.8RC1

    Edit² :
    After messing with the materials i discover there are 2 materials on the head in blender :
    Blender face.png Face mesh inspector.png
    look like the face material is not applied.

    Does Uma support multi material ?

    Edit^3:
    Never mind, i have found my answer.
    I missed adding sub mesh slots
     
    Last edited: Oct 10, 2018
    kenamis likes this.
  30. kt5881

    kt5881

    Joined:
    Jul 26, 2014
    Posts:
    21
    Hi guys,

    I am trying to have the UMA play the animation that I've found in mixamo.

    I've found the FBX (male-Apose) in the UMA folder and uploaded on Mixamo before downloading the entire animation.

    The animation FBX was set to generic, which I've changed to Humanoid.

    Once I have the new animation play by the avatar, there are slight differences between the UMA and the Mixamo animation that I originally checked.

    How do I solve this?
     

    Attached Files:

    • 1.PNG
      1.PNG
      File size:
      106.9 KB
      Views:
      864
    • 2.PNG
      2.PNG
      File size:
      259.1 KB
      Views:
      851
  31. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    Try changing the TPose on the race to the mecanim friendly one.

     
  32. dxxcb

    dxxcb

    Joined:
    Nov 18, 2015
    Posts:
    12
    hi i want add my fbx character to UMA, i have humanoid mesh, i extracted T-pose and i wnat to create Slot . And i have error. I need help pls
     
  33. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    It looks like the Bone Hierarchy isn't setup.

    Take a look at these videos - They show how to create a new race, and get it all setup correctly:

    https://www.youtube.com/playlist?list=PLkDHFObfS19yjYoQsMR0dCGjCLsrF1dB4
     
  34. magique

    magique

    Joined:
    May 2, 2014
    Posts:
    4,030
    One of the best features of Mixamo Fuse is that you can take any clothing and put it on any character whether male or female. But systems like UMA and Morph3D need to have specific outfits for male and female and when using optional 3rd party base morphs like o3n only custom outfits work there, which eliminates all existing wardrobe possibilities.

    Is there any chance there might be a character editor in the future where we could use all available outfits on any of the base characters? This is the main reason I don't use UMA.
     
  35. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    It's possible we will be looking at runtime refits (we keep talking about it), but not in the short term. However, keep in mind that Fuse is an offline solution.

    For offline refits, there are several solutions already: Blender (and all the tools that it has). And also SKINN VM from CWMANLY (who is active on the UMA Slack).


     
  36. magique

    magique

    Joined:
    May 2, 2014
    Posts:
    4,030
    Yes, I know and that's perfectly fine.

    Blender is definitely not an option for me as I would need 3D modeling skills, which I don't have. I wasn't aware of SKINN VM, but it looks promising. I'll have to investigate that further. Thanks for the tip.
     
  37. umutozkan

    umutozkan

    Joined:
    Oct 30, 2015
    Posts:
    406
    Hi guys, there is a question about manipulating colors of a custom material at o3n races forum page here.

    Is there a way to achieve it with the current version of UMA?
     
  38. GeekosaurusR3x

    GeekosaurusR3x

    Joined:
    Nov 22, 2013
    Posts:
    15
    HI guys.

    Is there a way to doing it myself can you point me the direction of the scripts ?
    I'm stuck with hight poly mesh and actually can't lower them.

    Thank you
     
    FrankiePal and hopeful like this.
  39. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    It would be in the combiner. If you're going down this route, it's probably best to just make every mesh it generates 32 bit. Look in UMADefaultMeshCombiner.cs, SkinnedMeshCombiner.cs and probably in UMASlotProcessUtil.cs
     
  40. SonGoku10c

    SonGoku10c

    Joined:
    Dec 9, 2017
    Posts:
    77
    I need some help with creating new cloths with Marvelous Designer. I created the fbx file and imported it into Blender. (I watched the Marvelous Designer Youtube Video). But I can't get it to work with posing and co. You said in the video that you said in a previous video how to continue now with riging and that stuff, but I can't find that video. So I looked in the fast part, slowed it down to 0.25 speed and tried to copy everything (added Armatur and tried the weight thing). I ended with this result:
     

    Attached Files:

  41. GeekosaurusR3x

    GeekosaurusR3x

    Joined:
    Nov 22, 2013
    Posts:
    15
    Thank you for the tips.

    I have already looked and find the MAX_VERTEX_COUNT const in "UMAMeshData.cs"
     
    FrankiePal likes this.
  42. GKotlidas

    GKotlidas

    Joined:
    Jul 28, 2012
    Posts:
    12
    Hello everyone :)
    For someone who wants to start using UMA, I'm a lot confused :(
    I have plenty of questions about UMA and I do not know where to ask them.
    Should I ask them here?

    From what I understand, there are 3 different versions of UMA.
    UMA Version 1
    UMA
    Version 2
    and UMA Version 2.5

    The tutorials video at Youtube, in which order should I watch them?
    The playlist UMA 101 - Getting Started with UMA at Youtube, is it outdated?


    Inside the content-pack-master.zip there's "ContentPack_1.1.0.1" and "ContentPack_2.7.0.0".
    At the Youtube-tutorial, the creator says, he will be using the content from "ContentPack_2.7.0.0".
    Can I use the *.fbx file from v1.1.01 and the texture(s) only from .v2.7.0.0 ?
    We don't know how to use Blender. In our team, we only know Maya.
     
  43. hopeful

    hopeful

    Joined:
    Nov 20, 2013
    Posts:
    5,684
    UMA is a project which has been around for many years and many Unity versions. I think it was first released around Unity version 4.3? Something like that. So ... a lot of things have changed in the UMA code for compatibility with Unity, and many improvements have been made.

    If you are using the latest versions of Unity, you'll want to use the latest versions of UMA. Version 2.8 is being prepared for release, so if you want to start playing with that, you can find it on github. (This is mentioned a little higher up on this page, here.)
     
  44. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208

    UMA 101 is the right place to get started. It's up to date with UMA 2.7.

    It shows how to use UMA in Unity.

    UMA 201 shows how to use Blender to make new content.

    UMA 301 shows how to create new races from scratch (including non-human UMAs).

    On the content, Only the updated files are changed in the 2.7 folder. The original FBX in the 2.7 folder can be used for Maya.
     
    hopeful likes this.
  45. Jschilz1

    Jschilz1

    Joined:
    Jul 18, 2016
    Posts:
    47
    Jaimi, Thanks again for all of yalls help, its nice to see people taking the time to help,and very refreshing.

    I was wondering if you or anyone else can give a brief walk-through on how to import your hair from blender properly into Unity. Is there anything specific we need to attach it to in Blender, what is needed in the scene and so on so that when i do get it into Unity i can make the Recipe. This is my first attempt at hair and while SA has great video for bringing in clothing Hair is something completely different so any help or advice is very much appreciated,

    I did notice that the Vertex groups on your blender Face has a Hair group for front, back. ponytail, etc.. but nothing is highlighted when you select are we suppose to use those, and if so in what way.

    Thanks,
     
    Last edited: Oct 13, 2018
  46. hopeful

    hopeful

    Joined:
    Nov 20, 2013
    Posts:
    5,684
    Hair should be just another slot. Have you looked at the hair that is in UMA already?

    Or are you trying to do something different with hair ... like cloth hair?
     
  47. Jschilz1

    Jschilz1

    Joined:
    Jul 18, 2016
    Posts:
    47
    Hopeful,
    Just trying to learn different methods and wanted to make some longer hair for Male for example Indians(long hair , Mohawks etc...) so taking things one step at a time and learning the process. It isnt so much how to make the slot in Unity but how to attach properly in Blender and Export it properly to Unity so that i can make the slot
     
  48. Jaimi

    Jaimi

    Joined:
    Jan 10, 2009
    Posts:
    6,208
    SecretAnorak has a video showing how to export correctly from Blender - Look at #5 here on UMA 201:

    http://secretanorak.com/uma-201-creating-content

    For hair, I had best results when using DynamicBone. When I created the "Boneytail" slot, I add a chain of pony tail bones tied to the head. I rigged the hair to the head bones like normal (copying the weights, etc - like in the other videos), then specifically weighted the pony tail to the new chain bones. Exported, and imported into Unity.

    Using unity physics worked great in 5.x, but they changed physics and broke the boneytail at some point. I haven't yet bothered to fix it. But honestly, I liked the way Dynamicbone worked better, so I personally wouldn't use the Unity Physics for that.
    VertexMotion might be another good solution.
     
    hopeful likes this.
  49. Jschilz1

    Jschilz1

    Joined:
    Jul 18, 2016
    Posts:
    47
    Thanks ill try that , i saw his video on that i just wasnt sure if hair was done the same way as there isnt much in a way of tutorials on Hair but thanks for the direction
     
  50. Flegy

    Flegy

    Joined:
    Jan 5, 2017
    Posts:
    30
    Is possible use UMA or UMA DK lite to equip weapon into the hand? Also, how can I close character hand when the weapon is in hand?