Re: FX:setlight weirdness
Posted: Tue Sep 18, 2012 3:19 am
Thanks, this worked for me.Lmaoboat wrote:...

Thanks, this worked for me.Lmaoboat wrote:...
Here's a much better one:Isaac wrote:Thanks, this worked for me.Lmaoboat wrote:...
Code: Select all
function turnon()
spawn("fx", 1, 3, 10, 3, "light1")
light1:setLight(1,1,1,10,6, 360000, true)
end
function turnoff()
light1:setLight(1,1,1,10,6, 0.1, true)
end
Study the code above (the post above yours). Use the Spawn function in your code; spawn the Fx where (and when) you want it, don't place it there by hand in the editor.Blichew wrote:I still don't get those FXs,
this is the error I'm getting when I try to setLight from a function:
needless to say there's a FX item nearby with an ID skFxRoom. I've also tried using findEntity("skFxRoom"):setLight(...)
any help would be appreciated
I realize this is a bit old, but I wanted to add a note about something I discovered:Lmaoboat wrote:setLight seems to just add upon itself every time it's use instead replace the last setting, so to turn a light off, you need to give it the opposite value:I wouldn't use this too much though, turning it off and on a lot seems to cause fps drop.Code: Select all
spawn("fx", 1, 3, 10, 3, "light1") light1:setLight(0,0,0,10,6, 360000, true) function turnon() light1:setLight(1,1,1,10,6, 360000, true) end function turnoff() light1:setLight(-1,-1,-1,10,6, 360000, true) end