English


Profile Picture

Unity Auto Setup

Posted By Victor.Soupday 4 Years Ago
Rated 5 stars based on 12 votes.
1
...
44
45
46
47
48
...
58

Unity Auto Setup

Author
Message
Victor.Soupday
Victor.Soupday
Posted 2 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 569, Visits: 9.0K
dan.goyette (8/18/2023)
Victor.Soupday (8/17/2023)
The fix, supposedly, is to set both normals to Import, and then enable Legacy Blend Shape Normals in the model importer. But this cannot be set automatically via code, it can only be done by hand.


That's really helpful. Thanks for pointing it out. I tried enabling that, and things do look fine with respect to both the character and outfit normals. I'm not sure if I'll notice some issue eventually with this setup, but for now it works.
As for not being able to set "Legacy Blend Shape Normals" in code, that's an interesting oversight by Unity, unless they're deprecating this setting and don't want to encourage its use... However, I can at least confirm that if you manually enable this once, it remains set from that point on. So at least it doesn't need to be manually re-ticked every time I run the CC/iC importer. But it does mean I've made an edit to the importer to allow it to leave "Normals" set to "Import" instead of "Calculate". I'm not sure if there's a general way for the tool to make that optional, though I would admit that starts getting a little confusing. 

Thanks for the easy fit. 


A potential solution: from https://forum.unity.com/threads/legacy-blend-shape-normals-missing-on-modelimporter.1166324/#post-8903016
so...

public static void ForceLegacyBlendshapeNormals(ModelImporter importer)
{
    string pName = "legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes";
    PropertyInfo prop = importer.GetType().GetProperty(pName, 
                                                        BindingFlags.Instance | 
                                                        BindingFlags.NonPublic | 
                                                        BindingFlags.Public);
    prop.SetValue(importer, true);
}


I didn't realise you could do that. (I keep forgetting about reflection)
And it seems to work, I can set all the normals to import and finally see the back of this problem.
marius.rubo
marius.rubo
Posted 2 Years Ago
View Quick Profile
New Member

New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)

Group: Forum Members
Last Active: 2 Years Ago
Posts: 2, Visits: 6
I have a problem with wrinkles in Unity URP. Everything works nicely in the Editor outside of Playmode, but in Playmode, the wrinkles do not show. The following things do work though:
- ValueSets in WrinkleManager continue to update correctly
- headMaterial.GetVector("_WrinkleValueSet1AL") returns the correct values
- The wrinkles show correctly if I manually change values in the Inspector, e.g., on "Wrinkle Value Set 1A Left"
It's really just the the values set in "headMaterial.SetVector("_WrinkleValueSet1AL", valueSets[0]);" etc. never actually do anything in PlayMode. I have tried changing every option in the Material's advanced options, with no effect. 
What could the problem be here?

dan.goyette
dan.goyette
Posted 2 Years Ago
View Quick Profile
Veteran Member

Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)Veteran Member (765 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 83, Visits: 379
Here's a situation I'm finding myself in, but I'm not sure if there's a way for the importer to gracefully handle this. I have a few different characters who share common outfit. (A special suit that many characters wear.) The textures for the suits are identical between the different characters, but the textures are all effectively duplicated as they come into Unity.

I'm not expecting to be able to prevent those textures from being added to the project, but ideally all of the materials would use the same textures, to avoid the memory usage of duplicating the textures. I can manually drop/drop textures, but there are a lot of them, and they'll get cleared out if I ever reimport the character.

Again, I'm not really sure how the importer could cope with a situation like this, but I figured I'd mention it in case the topic had ever come up before.


On second thought, nevermind all that. I should just write my own little editor script for doing complicated things like this. I should expect the importer to handle every weird use-case I can think up.
Victor.Soupday
Victor.Soupday
Posted 2 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 569, Visits: 9.0K
marius.rubo (8/25/2023)
I have a problem with wrinkles in Unity URP. Everything works nicely in the Editor outside of Playmode, but in Playmode, the wrinkles do not show. The following things do work though:
- ValueSets in WrinkleManager continue to update correctly
- headMaterial.GetVector("_WrinkleValueSet1AL") returns the correct values
- The wrinkles show correctly if I manually change values in the Inspector, e.g., on "Wrinkle Value Set 1A Left"
It's really just the the values set in "headMaterial.SetVector("_WrinkleValueSet1AL", valueSets[0]);" etc. never actually do anything in PlayMode. I have tried changing every option in the Material's advanced options, with no effect. 
What could the problem be here?



It could be the material instancing on some build platforms. I think the inspector might be updating all instances of the material and runtime hasn't got the correct material instance.

Can you replace the Start() function in the WrinkleManger.cs script to:


void Start()
{
    updateTimer = 0f;
    CheckInit();
    if (Application.isPlaying)
    {
        SkinnedMeshRenderer smr = GetComponent<SkinnedMeshRenderer>();
        if (smr != null)
        {
            foreach(Material mat in smr.materials)
            {
                if (mat.IsKeywordEnabled("BOOLEAN_USE_WRINKLE_ON") &&
                    mat.IsKeywordEnabled("BOOLEAN_IS_HEAD_ON"))
                {
                    Debug.Log("Using runtime head material: " + mat.name);
                    headMaterial = mat;
                    break;
                }
            }
        }
    }
}

See if that fixes it.
marius.rubo
marius.rubo
Posted 2 Years Ago
View Quick Profile
New Member

New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)New Member (2 reputation)

Group: Forum Members
Last Active: 2 Years Ago
Posts: 2, Visits: 6
Brilliant, that did it!
babyfoothero
babyfoothero
Posted 2 Years Ago
View Quick Profile
Senior Member

Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)Senior Member (265 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 22, Visits: 492
Hello,
- Is it possible to export a character "instaLOD" version --without the original -- But import it in unity with automatic created colliders ?

70% of original size (was 720x409) - Click to enlarge

I dont want to discard the original at all cost, but it give a result file of 150-180 Mo / Per character, - with lowest textures resolution possible. And i try to decimate this.
(not looking for cloth physics, but for the embed colliders)

Thanks for help !
Victor.Soupday
Victor.Soupday
Posted 2 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 569, Visits: 9.0K
babyfoothero (8/28/2023)
Hello,
- Is it possible to export a character "instaLOD" version --without the original -- But import it in unity with automatic created colliders ?
I dont want to discard the original at all cost, but it give a result file of 150-180 Mo / Per character, - with lowest textures resolution possible. And i try to decimate this.
(not looking for cloth physics, but for the embed colliders)

Thanks for help !


Yes. Press this button:

70% of original size (was 720x409) - Click to enlargehttps://forum.reallusion.com/uploads/images/999d8faf-c359-4654-b3f5-3b4a.png

It will add the colliders to the lod character.

Edit: But you will need to make the lod character using the Optimize and Decimate function from the Character Menu in CC4. The Instalod export just junks all the collider data but the optimize and decimate keeps it all.
sirsquish
sirsquish
Posted 2 Years Ago
View Quick Profile
Senior Member

Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 29, Visits: 565
Hi,
Is it worth getting the skin-gen tool in CC4 and does it work with auto-setup? I have a number of Daz characters that I import, some of the skins I've noticed loose detail, like freckles etc. They are there just a lot less "pronounce".  Adding 16+ skin layers wouldn't be great for unity I'm guessing, so I assume I'd need to flatten the materials. I assume that the export flattens materials anyway? I'm mainly worried the importer is dropping details from Daz to CC. Or is the skin details lost from the baking process ? I was also thinking I could re-add the skin effects using skin gen. or add better ones.

I assume it's not possible to export the Daz body/face Morphs?  - What I found strange was that clothes kept the ability to have morphs, but not the body. In game, I swap the exported models - I use Daz exported models if they need body morphs applied, but otherwise use CC because the characters look better.

Also, just wanted to say that this exporter is awesome and thanks for all your hard work!





Victor.Soupday
Victor.Soupday
Posted 2 Years Ago
View Quick Profile
Distinguished Member

Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)Distinguished Member (5.8K reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 569, Visits: 9.0K
sirsquish (9/26/2023)
Hi,
Is it worth getting the skin-gen tool in CC4 and does it work with auto-setup? I have a number of Daz characters that I import, some of the skins I've noticed loose detail, like freckles etc. They are there just a lot less "pronounce".  Adding 16+ skin layers wouldn't be great for unity I'm guessing, so I assume I'd need to flatten the materials. I assume that the export flattens materials anyway? I'm mainly worried the importer is dropping details from Daz to CC. Or is the skin details lost from the baking process ? I was also thinking I could re-add the skin effects using skin gen. or add better ones.

I assume it's not possible to export the Daz body/face Morphs?  - What I found strange was that clothes kept the ability to have morphs, but not the body. In game, I swap the exported models - I use Daz exported models if they need body morphs applied, but otherwise use CC because the characters look better.

Also, just wanted to say that this exporter is awesome and thanks for all your hard work!


The skingen layers are flattened on export, so it's safe to use for the export pipelines, and is useful for improving the details on Daz characters.

Daz details are tricky. You may need up the resolution of the baked skin textures as some Daz characters use really high res textures. The FBX exported from Daz only contains the diffuse, opacity and normal maps. If you want to include the roughness, emission and bump map details you would probably need to generate and edit an import profile that lists all the textures to be sure of baking them all.

A lot of Daz characters also have HD morphs that add extra details and mesh adjustments to the heavily subdivided mesh (which is entirely unsuitable for real time rendering performance). As the topology of the character is remapped from Daz to CC3+, all those HD morphs and blend shapes are lost. Clothing topology is unaltered which is why they can keep the morphs.
sirsquish
sirsquish
Posted 2 Years Ago
View Quick Profile
Senior Member

Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)Senior Member (251 reputation)

Group: Forum Members
Last Active: 4 days ago
Posts: 29, Visits: 565

"Daz details are tricky. You may need up the resolution of the baked skin textures as some Daz characters use really high res textures. The FBX exported from Daz only contains the diffuse, opacity and normal maps. If you want to include the roughness, emission and bump map details you would probably need to generate and edit an import profile that lists all the textures to be sure of baking them all."

https://www.reallusion.com/character-creator/skingen-premium/uv-transfer.html

Could the UV transfer tool transfer the extra maps over after a bake ?

1
...
44
45
46
47
48
...
58



Reading This Topic

0 active, 0 guests, 0 members, 0 anonymous.
No members currently viewing this topic!