2013年10月25日金曜日

Blender : Script : Bugs

メンテはしてないけど、2.69RCで発見したこと
import bpy
from bpy import *

context.object
とすると現在のObjectを正しくフォーカス出来ない

bpy.context.object
とすると正常にフォーカスできる



I found those in 2.69RC, though I have not maintain my codes yet.

With
import bpy
from bpy import *

If writing
context.object
It can't catch current object.

But
bpy.context.object
It can catch current object exactly.