cube.py
import bpy
for x in range(1,9):
for y in range(1,9):
bpy.ops.mesh.primitive_cube_add(location=(x*10, y*10, 1))
うっかり生成し過ぎるとPCが落ちます。モデリングが面倒な時にお使いください。
Go to list of users who liked
More than 5 years have passed since last update.
import bpy
for x in range(1,9):
for y in range(1,9):
bpy.ops.mesh.primitive_cube_add(location=(x*10, y*10, 1))
うっかり生成し過ぎるとPCが落ちます。モデリングが面倒な時にお使いください。
Register as a new user and use Qiita more conveniently
Go to list of users who liked