We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32251a5 commit 57f54b9Copy full SHA for 57f54b9
Base.rte/Effects/Pyro/Flame/Flame.lua
@@ -1,5 +1,10 @@
1
function Create(self)
2
-
+ if self.PresetName:find("Short") then
3
+ self.isShort = true;
4
+ end
5
+ if self.Throttle == nil then
6
+ self.Throttle = 0;
7
8
end
9
10
function Update(self)
@@ -46,7 +51,6 @@ function Update(self)
46
51
particle.Lifetime = self.Lifetime * RangeRand(0.6, 0.9);
47
52
particle.Vel = self.Vel + Vector(0, -3) + Vector(math.random(), 0):RadRotate(math.random() * math.pi * 2);
48
53
particle.Pos = Vector(self.Pos.X, self.Pos.Y - 1);
49
- particle.isShort = true;
50
54
MovableMan:AddParticle(particle);
55
56
0 commit comments