Hi,i want to move a gameobject(Sphere) along with my mouse cursor, is it possible, plz help
Yes,possible.
You should get you mouse position in every frame(Update).and set your object position to the mouse position.
if you can not do it,say to write code for you dear friend.
var Sphere :GameObject;
function Update ()
{
var ray : Ray = Camera.main.ScreenPointToRay (Input.mousePosition );
gameObject.transform.position=Input.mousePosition ;
}
is dis correct, its just a try, m very new to unity…plz help