From 8670e3075ab34acd294e87d5b8b372dc1dd51d70 Mon Sep 17 00:00:00 2001 From: fuseya <> Date: Sat, 9 Mar 2002 00:03:32 +0000 Subject: [PATCH] fixed typo --- direct/src/particles/Particles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/particles/Particles.py b/direct/src/particles/Particles.py index 2f7cd0c605..fcbacf03e3 100644 --- a/direct/src/particles/Particles.py +++ b/direct/src/particles/Particles.py @@ -419,9 +419,9 @@ class Particles(ParticleSystem.ParticleSystem): file.write((targ + '.emitter.setLocation(Point3(%.4f, %.4f, %.4f))\n' % (point[0], point[1], point[2]))) elif (self.emitterType == "RectangleEmitter"): file.write('# Rectangle parameters\n') - bound = self.emitter.getMinBound() + point = self.emitter.getMinBound() file.write((targ + '.emitter.setMinBound(Point2(%.4f, %.4f))\n' % (point[0], point[1]))) - bound = self.emitter.getMaxBound() + point = self.emitter.getMaxBound() file.write((targ + '.emitter.setMaxBound(Point2(%.4f, %.4f))\n' % (point[0], point[1]))) elif (self.emitterType == "RingEmitter"): file.write('# Ring parameters\n')