massive number of fixes, removed compilation error, logs, negative scale issues, serialization issues ETC

This commit is contained in:
2024-11-25 15:15:55 +01:00
parent 48d565f77e
commit 8d766ed470
48 changed files with 1442 additions and 2434 deletions

View File

@@ -107,7 +107,7 @@ namespace PixelCrushers.DialogueSystem
protected Color originalColor { get; set; }
private string m_accumulatedText = string.Empty;
public string accumulatedText { get { return m_accumulatedText; } set { m_accumulatedText = value; } }
private Animator m_animator = null;
//private Animator m_animator = null;
protected Animator animator { get { if (m_animator == null && portraitImage != null) m_animator = portraitImage.GetComponent<Animator>(); return m_animator; } }
private bool m_isDefaultNPCPanel = false;
public bool isDefaultNPCPanel { get { return m_isDefaultNPCPanel; } set { m_isDefaultNPCPanel = value; } }