C4D创建面之后,无法进行自动化法线对齐,尝试用python去写一个。
import c4d #Welcome to the world of Python def main(): state=c4d.BaseContainer() inputState = c4d.gui.GetInputState(c4d.BFM_INPUT_MOUSE, c4d.BFM_INPUT_MOUSELEFT, state) if inputState == True : print state.GetInt32(c4d.BFM_INPUT_X)
类似官方手册的例子,打印x坐标
后来试了下,应该用注册热键的方式来做
时间: 2024-10-10 19:07:19