Change CalculateTangents to false as default and calculate normals/tangents by default if missing

This commit is contained in:
Wojtek Figat
2021-07-22 10:24:24 +02:00
parent 383ea4d603
commit 3a5c212985
3 changed files with 5 additions and 5 deletions

View File

@@ -117,8 +117,8 @@ namespace FlaxEditor.Content.Import
/// <summary>
/// True if calculate model tangents, otherwise will import them.
/// </summary>
[EditorOrder(40), DefaultValue(true), EditorDisplay("Geometry"), Tooltip("Enable model tangent vectors recalculating")]
public bool CalculateTangents { get; set; } = true;
[EditorOrder(40), DefaultValue(false), EditorDisplay("Geometry"), Tooltip("Enable model tangent vectors recalculating")]
public bool CalculateTangents { get; set; } = false;
/// <summary>
/// Calculated normals smoothing angle.