예제 #1
0
        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);
        }
예제 #2
0
        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);
        }
예제 #3
0
        /*-------------------------------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);
        }