mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 05:54:59 -05:00
change ForceTPose default to false. add tooltip
This commit is contained in:
parent
ff90a4957a
commit
eddac4e1fb
|
|
@ -46,11 +46,13 @@ namespace VRM
|
|||
/// <summary>
|
||||
/// エクスポート時に強制的にT-Pose化する
|
||||
/// </summary>
|
||||
public bool ForceTPose = true;
|
||||
[Tooltip("Option")]
|
||||
public bool ForceTPose = false;
|
||||
|
||||
/// <summary>
|
||||
/// エクスポート時にヒエラルキーの正規化を実施する
|
||||
/// </summary>
|
||||
[Tooltip("Require only first time")]
|
||||
public bool PoseFreeze = true;
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -62,7 +64,8 @@ namespace VRM
|
|||
/// <summary>
|
||||
/// BlendShapeのシリアライズにSparseAccessorを使う
|
||||
/// </summary>
|
||||
public bool UseSparseAccessorForBlendShape = true;
|
||||
[Tooltip("Use sparse accessor for blendshape. This may reduce vrm size")]
|
||||
public bool UseSparseAccessor = true;
|
||||
|
||||
/// <summary>
|
||||
/// BlendShapeのPositionのみをエクスポートする
|
||||
|
|
@ -231,7 +234,7 @@ namespace VRM
|
|||
if (desc == null)
|
||||
{
|
||||
// 初回のVRMエクスポートとみなす
|
||||
ForceTPose = true;
|
||||
ForceTPose = false; // option
|
||||
PoseFreeze = true;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user