refactor: update text wrapping mode in RobotBootSequence and clean up CRTRendererFeature

This commit is contained in:
Thibault Pouch
2026-03-13 19:28:03 +01:00
parent f42463176f
commit 64b2d63799
2 changed files with 2 additions and 52 deletions

View File

@@ -257,7 +257,7 @@ public class RobotBootSequence : MonoBehaviour
text.fontSize = 40f;
text.alignment = TextAlignmentOptions.Left;
text.color = BootTextColor;
text.enableWordWrapping = true;
text.textWrappingMode = TextWrappingModes.Normal;
return text;
}