یونیتی:چرخش یک ابجکت وقتی ماوس روی آن قرار می گیرد:(کد سیشارپ)
چهارشنبه, ۶ اسفند ۱۳۹۳، ۰۵:۱۶ ق.ظ
چرخش یک ابجکت وقتی ماوس روی آن قرار می گیرد:
public float rotationSpeed = 50f;
public GameObject target;
private bool rotate = false;
void OnMouseDown() {
rotate = !rotate; //this line toggles the bool "rotate" every time the object is clicked
}
void Update() {
if(rotate) {
target.transform.Rotate (new Vector3(0, Time.deltaTime, 0) * rotationSpeed );
}
}
۹۳/۱۲/۰۶