public static Vector3 TextVector3(string str1, Vector3 value, int jianGe, ref bool isShow, Action showAction, MyEnumColor color) { Vector3 tmp = value; JianTuoText(str1, jianGe, ref isShow, color, showAction, () => { tmp = MyCreate.InputVector3(tmp); }); return(tmp); }
public static Vector3 TextVector32(string str1, Vector3 value, int jianGe, ref bool isShow, Action showAction) { Vector3 tmp = value; JianTuoText2(" " + str1, jianGe, ref isShow, showAction, () => { tmp = MyCreate.InputVector3(tmp); }); return(tmp); }
/*-------------------------------Text---------------------------------------------------*/ public static Vector3 TextVector3(string str1, Vector3 position, int jianGe) { Vector3 tmp = position; MyCreate.Heng(() => { MyCreate.Text(" " + str1, jianGe); tmp = MyCreate.InputVector3(tmp); }); return(tmp); }