Unity 3D - Lighting - Torches - HELP!

I am making torches in Unity3d. I have made my wooden mesh and everything. I have also created a fire using the particle system. WHY WON’T MY FIRE LIGHT UP THE SURROUNDING AREA?
The fire is lit up, but the small surrounding areas are still pitch black! Please give a solution! Reply soon!

Did You attach Light Source ?? :slight_smile:

How are you activating the torch? I assume it is a point light, try something like this:

var torchLight : Light; //Add the light source to the torch in Inspector
private var torchActive : boolean = false;

function Update () {
    if (Input.GetKeyDown(KeyCode.T)) ToggleTorch();
}

function ToggleTorch () {
    torchActive=!torchActive;
    torchLight.enabled = torchActive;
}