From 4b652abe1d76f1bcbe5d7583a8986256f50c483d Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 1 Nov 2021 19:30:44 +0800 Subject: -LuaBindClass::RegisterNativeClass --- Runtime/GUI/TextMesh.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Runtime/GUI/TextMesh.h (limited to 'Runtime/GUI/TextMesh.h') diff --git a/Runtime/GUI/TextMesh.h b/Runtime/GUI/TextMesh.h new file mode 100644 index 0000000..7f37e5e --- /dev/null +++ b/Runtime/GUI/TextMesh.h @@ -0,0 +1,24 @@ +#pragma once + +enum ETextAnchor +{ + TextAnchor_UpperLeft, + TextAnchor_UpperCenter, + TextAnchor_UpperRight, + TextAnchor_MiddleLeft, + TextAnchor_MiddleCenter, + TextAnchor_MiddleRight, + TextAnchor_LowerLeft, + TextAnchor_LowerCenter, + TextAnchor_LowerRight, + TextAnchor_DontCare +}; + +enum ETextAlignment { + TextAlignment_Left, + TextAlignment_Center, + TextAlignment_Right, + TextAlignment_Auto, +}; + + -- cgit v1.1-26-g67d0