我想使用MotionBuilder 2013 API将消息从C++记录到MotionBuilder控制台。

我想显示一条消息,显示“Hello”的打印位置。或者,如果在Motion Builder中的其他地方不可能做到这一点。该消息已在python中显示为带有打印语句。

在Maya中,您使用:MGlobal::displayInfo(msg);
在3ds Max中,您可以使用:

the_listener->edit_stream->wputs(wcharConverter);
the_listener->edit_stream->flush();

有运动生成器版本吗?我已经搜索了api,但似乎找不到该调用。 http://docs.autodesk.com/MB/MB2013/ENU/MotionBuilder-SDK-Documentation/index.html

最佳答案

您尝试过FBTrace("Message")吗?

在以下位置 checkin 文档:C++ API->模块->跟踪实用程序功能

07-24 12:42