当有人触摸触摸板(三星 Gear VR)时,我尝试编写一个脚本来更改天空盒。我对触摸板输入进行了一些研究,发现它应该像鼠标一样工作。我已经这样做了:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class skyboxSwitcher : MonoBehaviour {
public List<Material> boxes = new List<Material>();
private int index = 0;
void Update() {
if (Input.GetMouseButtonDown(0))
switchBox();
}
public void switchBox() {
if (boxes.Count > 0) {
index++;
if (index >= boxes.Count) {
index = 0;
}
RenderSettings.skybox = boxes[index];
}
}
}
但它不起作用。我阅读了文档并尝试了其他一些输入,但仍然得到相同的结果。也许有人已经有同样的问题?谢谢 :)