JoPmt commited on
Commit
5302e94
1 Parent(s): d9ffc46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ def add_animated_space_rocks(name):
55
  bpy.context.scene.render.fps = 10
56
  duration = 2
57
  radius=2
58
- space_rock.name = ""+name+"_"+random.randint(1,100)+""
59
  bpy.ops.mesh.primitive_uv_sphere_add(radius=random.uniform(0.03, 0.1), location=(random.uniform(-10, 10), random.uniform(-10, 10), random.uniform(-4, 9)))
60
  space_rock = bpy.context.active_object
61
  space_rock.keyframe_insert(data_path="location", frame=1)
 
55
  bpy.context.scene.render.fps = 10
56
  duration = 2
57
  radius=2
58
+ space_rock.name = ""+name+"_"+str(random.randint(1,100))+""
59
  bpy.ops.mesh.primitive_uv_sphere_add(radius=random.uniform(0.03, 0.1), location=(random.uniform(-10, 10), random.uniform(-10, 10), random.uniform(-4, 9)))
60
  space_rock = bpy.context.active_object
61
  space_rock.keyframe_insert(data_path="location", frame=1)