U3D点击按钮控制物体上下左右移动,并变化按钮⽂本1、创建控制物体上下左右移动的C#脚本:“move”
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class move : MonoBehaviour //调⽤“move”脚本
{
bool start = fal; //布尔函数判断是否两种状态
// U this for initialization
void Start ()
{
start = fal; //将开始点击状态赋值为否
}
// Update is called once per frame
void Update ()
{
if (start == true) //检测到点击按键
if (Input.GetKey(KeyCode.UpArrow)) //上键
{
transform.eulerAngles = new Vector3(0, 0, 0); //欧拉⾓:确定定点转动刚体位置的3个⼀组独⽴⾓参量
//vector3代表三维空间
transform.position += transform.forward * 10; //进给量:10
}
if (Input.GetKey(KeyCode.LeftArrow))
{
情感故事
transform.eulerAngles = new Vector3(0, 270, 0);
transform.position += transform.forward * 10;
}
if (Input.GetKey(KeyCode.DownArrow))
{
transform.eulerAngles = new Vector3(0, 180, 0);
transform.position += transform.forward * 10;
}
if (Input.GetKey(KeyCode.RightArrow))
别人夸奖怎么谦虚回应
{
transform.eulerAngles = new Vector3(0, 90, 0);
transform.position += transform.forward * 10;
}
}
public void OnButtonClick()
{
start = !start; //赋予点击”开始“按钮时的状态是否变化(点击”开始“按钮可以移动,再点击不能移动)
}
}
2、创建控制点击按钮⽂本发⽣变化的C#脚本:”BText“
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;//调⽤UI
public class BText : MonoBehaviour
{
public Text Bt;
梦见很多蚊子//以下为原来的代码不⽤管
// U this for initialization
void Start ()
{
}
// Update is called once per frame
void Update ()
{
倒桩技巧}
//简单的条件语句判断
public void OnButtonClick()
{
if (Bt.text == "开始")
制动气室{
< = "结束";
保护地栽培
}
el
{
< = "开始";
}
}
}
3、操作具体步骤:玉米斗
3.1、“move”控制cube的移动,将其添加到cube上;
“BText”控制Button的变化,将其添加到Button上。
三国演义典故3.2、添加Button⾥的点击事件:
第⼀步将cube托进对象⾥,选择上⾯脚本⾥调⽤的函数。即实现点击按钮cube可以移动,再次点击按钮cube不能移动。
第⼆步将Button托进对象⾥,选择上⾯脚本⾥调⽤的函数。即实现点击按钮Button的⽂本发⽣变化,为“开始”和“结束”。
3.3、运⾏即可看到效果