Talk:Anonymous Functions: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>NXTBoy No edit summary |
>Trappingnoobs No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 7: | Line 7: | ||
end</pre> | end</pre> | ||
{{User:NXTBoy/sig|date=14:55, 27 December 2011 (UTC)}} | {{User:NXTBoy/sig|date=14:55, 27 December 2011 (UTC)}} | ||
:There's a way around that, though, just take the zombies variable out of the local scope<div style="border-top: 1px solid #AAA; color:#000000; font-size:10px">Trappingnoobs <span style="color:skyblue">(Writer)</span><span style="color:red"> Have I done something bad? Good? Tell me on my [[User_talk:Trappingnoobs|talk page]]</span><span style="color:grey;float:right"> 22:07, 28 December 2011 (UTC)</span></div> |
Latest revision as of 22:07, 28 December 2011
"however this should be avoided in code that runs more than once." I'd never thought of that. So many of my scripts would, say, loop all the zombies in the game and connect events to them anonymously, whereas as you've pointed out there it'd've been much more efficient to point to a single function.
Trappingnoobs (Writer) Have I done something bad? Good? Tell me on my talk page 21:46, 26 December 2011 (UTC)
for _, zombie in ipairs(zombies) do zombie.Torso.Touched:connect(function(by) zombie.Head:remove() --You can still refer to zombie - not possible otherwise end) end
- There's a way around that, though, just take the zombies variable out of the local scopeTrappingnoobs (Writer) Have I done something bad? Good? Tell me on my talk page 22:07, 28 December 2011 (UTC)