export namespace Utils { export function pos2vec2(pos: string): cc.Vec2 { let arr = pos.split(','); return cc.v2(Number(arr[0]), -Number(arr[1])); } }