diff options
author | chai <chaifix@163.com> | 2021-11-05 09:39:41 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-05 09:39:41 +0800 |
commit | be9870f5c1ba4f6ae8cd9764f1a8ed56ee81ddd5 (patch) | |
tree | 941580ae1480584eed3c9c8c6bfb6ccec847fe65 /Runtime/GUI/TextMeshGenerator.cpp | |
parent | 50dfa4050343a25a5a34816cc276ec6ec9cf33ce (diff) |
*misc
Diffstat (limited to 'Runtime/GUI/TextMeshGenerator.cpp')
-rw-r--r-- | Runtime/GUI/TextMeshGenerator.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Runtime/GUI/TextMeshGenerator.cpp b/Runtime/GUI/TextMeshGenerator.cpp index e69de29..98d3b09 100644 --- a/Runtime/GUI/TextMeshGenerator.cpp +++ b/Runtime/GUI/TextMeshGenerator.cpp @@ -0,0 +1,10 @@ +#include "TextMeshGenerator.h" + +UITextMesh* TextMeshGenerator::GetTextMesh(const UnicodeString& str, Font* font, int pixelSize, int lineHeight, Color32 col32, ETextAnchor anchor, ETextAlignment alignment, bool wordwrap, float preferred) +{ + for (int i = 0; i < m_TextMeshes.size(); ++i) + { + UITextMesh* tm = m_TextMeshes[i]; + + } +} |