Hello there.
I’m trying to create a 2.5d game
The player can throw strawberries from a game object, x = right, y = up, z=away.
I’ve created a plane prefab which is textured with the strawberry image. The plane has been rotated so that it faces the player, standing up, rather flat. x = right, y = up, z=away
This is all fine and when the prefab is in the scene it is displayed as I would like it.
I’ve written a script that will fire the plane prefab from the player game object, which works but, the plane is projected flat.
So I’m having difficulty getting the plane to face the player when fired.
It seems to me that this might be a problem or my understanding of how to instantiate the prefab, in that I’m not able to control the rotation.
Can anybody point me in the right direction on where the problem is coming from and how I might solve this.
Here is the code used on the player game object to project the prefab.
var speed = 3.0;
var PreFab:Transform;
function Update ()
{
//find out if a button is pressed
if(Input.GetButtonDown("Fire1"))
{
//create the prefab
var strawberry = Instantiate(PreFab, transform.position, transform.rotation);
//add force to the prefab
strawberry.rigidbody.AddForce(transform.forward * 1000);
}
}
Kind Regards
Iain