Topic: Segmentation Fault in Editor (Linux)
Anaël,
The segmentation fault reported by SadWolf is related to this one.
This bug is already fixed.
For those who are not using svn, this issue can be fixed by not using the deactivate function :
Replace :
if isAnimationOver(particle) then
deactivate(particle)
end
By:
if isAnimationOver(particle) then
clearForces(particle)
initParticle(particle)
end