function OnLaunched()
local c = 512;
local x = 0;
local y = 0;
while (c > 0) do
x = math.random(0, 800);
y = math.random(0, 600);
AddNewParticle(math.random(65, 90));
SetNewParticleColor(
256 * math.random(0, 255),
0x00000200);
SetNewParticlePosition(x, y);
SetNewParticleVecl(0, math.random(1, 4));
SetNewParticleAccel(0, math.random(1, 4));
DeliverParticle();
c = c - 1;
end
end
function OnLButtonUp(x, y)
end
function OnParticleKilled(c)
local x = 0;
local y = 0;
while (c > 0) do
x = math.random(0, 800);
y = math.random(0, 600);
AddNewParticle(math.random(65, 90));
SetNewParticleColor(
256 * math.random(0, 255),
0x00000200);
SetNewParticlePosition(x, y);
SetNewParticleVecl(0, math.random(1, 4));
SetNewParticleAccel(0, math.random(1, 4));
DeliverParticle();
c = c - 1;
end
end

沒力了。
No comments:
Post a Comment