don't hide error during particle file load

This commit is contained in:
Darren Ranalli 2007-05-08 19:32:11 +00:00
parent 14fef89ca9
commit cd313b4cbe
1 changed files with 2 additions and 1 deletions

View File

@ -200,7 +200,8 @@ class ParticleEffect(NodePath):
try:
exec data
except:
self.notify.error('loadConfig: failed to load particle file: '+ repr(filename))
self.notify.warning('loadConfig: failed to load particle file: '+ repr(filename))
raise
def accelerate(self,time,stepCount = 1,stepTime=0.0):
for particles in self.getParticlesList():