MCPcopy Create free account
hub / github.com/cocos/cocos-engine / strToVAlign

Function strToVAlign

cocos/tiledmap/tmx-xml-parser.ts:59–69  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

57}
58
59function strToVAlign (value): VerticalTextAlignment {
60 const vAlign = Label.VerticalAlign;
61 switch (value) {
62 case 'center':
63 return vAlign.CENTER;
64 case 'bottom':
65 return vAlign.BOTTOM;
66 default:
67 return vAlign.TOP;
68 }
69}
70
71function strToColor (value: string): Color {
72 if (!value) {

Callers 1

_parseObjectGroupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected