FPS Tutorial 1-What do I drop "Explosion" onto in the inspector window for the "Missile"

Okay, I can not figure out where to drag and drop the "Explosion" prefab in the inspector window of the "Missile". From page 12. There does not seem to be any place that will allow me to place the Explosion on to.So... Where is the Missile explosion Variable ?

Nowwecanassigntheexplosiontothemissile: EnsuringthatMissileprefabisselected,fillintheExplosionvariablebydragging theExplosionobjectintheProjectpanelontotheMissilesExplosionvariablein theInspectorpanel. Please tell me what I am missing! Thanks

I've never followed the tutorial, but I'm assuming it would be a user created variable in the script component of the Missile prefab.

i am having the exact same problem... i did the code correctly... as far as i can see but the explotion variable slot will not show up

var explosion : GameObject;

function OnCollisionEnter( collision : Collision ) { var contact : ContactPoint = collision.contacts[0];

var rotation = Quaternion.FromToRotation( Vecter3.up, contact.normal );
var instantiatedExplosion : GameObject = Instantiate(
    explosion, contact.point, rotation );

    Destroy( gameObject );

}

the problem for me was that i had to go to component → scripts → projectile when i had missile prefab selected. This added a projectile script with an explosion variable that was empty. Then I was able to drag in the explosion prefab. Hopefully that helps.