Page 1 of 1
How do I make this light effect? [Solved]
Posted: Sat May 23, 2015 12:12 am
by jojo3450
Is there a way to get the light effect beam light as seen here

Re: Light effect
Posted: Sat May 23, 2015 10:27 am
by hunpeter12
You can do it with .odf lights. Look in the BF2_lightning.doc in BF2_ModTools/documentation. You will find what you need there.
Re: Light effect
Posted: Sat May 23, 2015 1:00 pm
by jojo3450
k thanks
Re: Light effect
Posted: Sat May 23, 2015 3:44 pm
by jojo3450
is there a way to add more light to the same .msh
Code: Select all
AttachOdf = "dea1_light_panel_green"
AttachToHardPoint = "hp_light"
AttachToHardPoint = "hp_light1"
//AttachEffect = "prop_panelspark"
//AttachToHardPoint = "hp_panel"
//AttachToHardPoint = "hp_panel1"
I added AttachToHardPoint = "hp_light1" so that it can also be added but doesn't work, how can I add more lights to a .msh
Re: Light effect
Posted: Sat May 23, 2015 3:51 pm
by hunpeter12
I think you should add it for every hard point like this:
Code: Select all
AttachOdf = "dea1_light_panel_green"
AttachToHardPoint = "hp_light"
AttachOdf = "dea1_light_panel_green"
AttachToHardPoint = "hp_light1"
Re: Light effect
Posted: Sat May 23, 2015 4:29 pm
by jojo3450
thanks it worked