Skip to content

Instantly share code, notes, and snippets.

@pmarinr
Created January 23, 2014 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmarinr/8575831 to your computer and use it in GitHub Desktop.
Save pmarinr/8575831 to your computer and use it in GitHub Desktop.
CannonController
using UnityEngine;
using System.Collections;
public class CannonController : MonoBehaviour {
private Vector3 mouse_pos;
private Vector3 object_pos;
private float angle;
// Use this for initialization
void Start () {
}
void Update(){
}
void FixedUpdate () {
//
mouse_pos = Input.mousePosition;
mouse_pos.z = 0.0f;
object_pos = Camera.main.WorldToScreenPoint(transform.position);
mouse_pos.x = mouse_pos.x - object_pos.x;
mouse_pos.y = mouse_pos.y - object_pos.y;
angle = Mathf.Atan2(mouse_pos.y, mouse_pos.x) * Mathf.Rad2Deg - 90;
Vector3 rotationVector = new Vector3 (0, 0, angle);
transform.rotation = Quaternion.Euler(rotationVector);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment