【发布时间】:2016-11-16 04:04:23
【问题描述】:
我是 Unity 3D 的新手,并且正在按照 Udemy 教程学习该平台。 我在课程中开发了一个游戏 GoHippoGo,其中河马的图像在屏幕上移动到触摸点。
虽然当我尝试使用画布和面板等...使游戏适合所有屏幕尺寸时,河马停止了移动!触摸时它只会从屏幕上掉下来(太慢了),而不是移动到触摸点。
我尝试搜索整个互联网,甚至是统一论坛,但找不到解决方案。 我的错误可能很明显,但由于我是新手,请合作:P
谢谢
这是我的 MoveHippo 脚本:
using UnityEngine;
using System.Collections;
public class MoveHippo : MonoBehaviour {
private float lastTouchTime, currentTouchTime;
public float velocityVal;
public float torqueVal;
public float thresholdTime;
void Awake() {
velocityVal = 8.0f;
torqueVal = 200.0f;
thresholdTime = 0.3f;
}
void Update () {
#if UNITY_ANDROID
moveHippoAndroid ();
#endif
#if UNITY_EDITOR
moveHippo();
#endif
}
void moveHippo() { //For testing only in your COMPUTER
Vector3 currentPos, touchedPos, distanceVec;
if (Input.GetMouseButtonDown(0)) {
startRotatingHippoAndStopIt();
}
else if (Input.GetMouseButtonUp(0)) {
currentPos = Camera.main.WorldToScreenPoint (transform.position);
touchedPos = Input.mousePosition;
distanceVec = (touchedPos - currentPos).normalized;
stopRotatingHippoAndMoveIt(distanceVec, velocityVal);
}
}
void moveHippoAndroid() {
Vector3 currentPos, touchedPos, distanceVec;
for (int i = 0; i < Input.touches.Length; i++) {
Touch touch = Input.GetTouch(i);
currentPos = Camera.main.WorldToScreenPoint(transform.position);
touchedPos = touch.position;
distanceVec = (touchedPos - currentPos).normalized;
if (Input.GetTouch(0).phase == TouchPhase.Began) {
startRotatingHippoAndStopIt();
} else if (Input.GetTouch(0).phase == TouchPhase.Ended){
currentTouchTime = Time.time;
if (currentTouchTime - lastTouchTime > thresholdTime) { //No Double Touch detected ...
lastTouchTime = Time.time;
stopRotatingHippoAndMoveIt(distanceVec, velocityVal);
} else if (currentTouchTime - lastTouchTime < thresholdTime){ //Double Touch detected!
lastTouchTime = Time.time;
stopRotatingHippoAndMoveIt(distanceVec, velocityVal*2.0f);
}
}
}
}
void startRotatingHippoAndStopIt() {
// We rorate the hippo...
GetComponent<Rigidbody2D>().fixedAngle = false;
GetComponent<Rigidbody2D>().AddTorque(torqueVal);
// ... and stop it
GetComponent<Rigidbody2D>().velocity=Vector2.zero;
}
void stopRotatingHippoAndMoveIt(Vector3 distanceVec, float velocity) {
// We stop rotating the hippo...
Quaternion hippoQuatern = new Quaternion();
hippoQuatern.eulerAngles = new Vector3(0,0,0);
GetComponent<Rigidbody2D>().fixedAngle = true;
GetComponent<Rigidbody2D>().transform.rotation = hippoQuatern;
// ... and move it.
GetComponent<Rigidbody2D>().velocity = distanceVec*velocity;
}
}
【问题讨论】:
-
MoveHippo 脚本附加到什么上?相机还是河马?
-
MoveHippo 脚本已附加到 Hippo
标签: android canvas unity3d gameobject