gpt4 book ai didi

python - Maxscript Python 添加修饰符

转载 作者:行者123 更新时间:2023-11-28 18:37:25 24 4
gpt4 key购买 nike

我正在用 python 编写 maxscript,以下代码会引发类型错误:

import MaxPlus

res = MaxPlus.Core.GetRootNode()
#This is just as example that I use the first child.
child = MaxPlus.INode.GetChild(res,0)

morpherFP = MaxPlus.FPValue()
MaxPlus.Core.EvalMAXScript("Morpher()", morpherFP)
morpher = MaxPlus.FPValue.Get(morpherFP)

MaxPlus.INode.AddModifier(child, morpher)

我总是从 MaxScript Listener 收到以下错误:

type 'exceptions.TypeError' in method 'INode_AddModifier', argument 2 of type 'Autodesk::Max::Modifier'"

而morpher的类型是Animatable(Morpher),Animatable是Modifier的子类。有人可以帮我解决这个问题吗?

提前致谢

最佳答案

我想我找到了一个可能的解决方案(我唯一知道的是 MaxScript Listener 不会抛出错误):

import MaxPlus

res = MaxPlus.Core.GetRootNode()
#I use the first child as example
child = MaxPlus.INode.GetChild(res,0)
morpher = MaxPlus.Factory.CreateObjectModifier(MaxPlus.ClassIds.Morpher)
MaxPlus.INode.AddModifier(child, morpher)
# the following also seems to work aka it does not throw any errors
child.InsertModifier(morpher,1)

如果它不正确或者有更简单或更容易理解的方法,请告诉我。

关于python - Maxscript Python 添加修饰符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31180088/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com