무작위 띄엄띄엄 Blender 무거운 3D 모델
무거웠기 때문에 감각적인 간헐적인 시나리오를 썼다.
# import bpy
import random
def randomSample(reduceRate: float):
objects = list(bpy.data.objects)
targetCount = int(len(objects) * reduceRate)
randomObjects = random.sample(objects, targetCount);
for ob in randomObjects:
ob.select_set(True)
# 存在するオブジェクトの7割を無作為に選択
randomSample(0.7)
그러면 랜덤으로 7할을 선택할 수 있어요.
그렇게 Delete를 하면서 Join이 한 일은 상당히 가벼워졌다.
참고로 한 대상을 격자에 따라 분리할 때
Edit 모드에서
Separate > By Loose Parts
따라서 그물을 연결하지 않은 대상은 모두 장미 대상이 된다.Reference
이 문제에 관하여(무작위 띄엄띄엄 Blender 무거운 3D 모델), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/jujunjun110/articles/62f5961ec4cabb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)