使用注释对脚本进行说明。提供有关变量代表什么和代码的每一部分所执行操作的注释。这样在以后维护代码更容易。
一行中双斜杠 (//) 之后的所有内容都将视为注释,将被 MEL 忽略(当然,双斜杠位于字符串内时除外)。
// This is a comment. print(5 + 10); // This is a comment too.
您可以通过将任意一块代码使用 /* 和 */ 包围起来使其成为注释而不执行。
/* This is a multi-line comment. You can type as much text in here as you want. */
不能嵌套无格式的注释:
/* This is a comment. /* Sorry, you can't put a comment inside a comment. */ You'll get a syntax error here. */
这种注释标记在动画表达式中不适用。在这种表达式中只能使用 // 作为注释标记。
注意
提供一个包含未结束的注释(/* 注释 [无结尾的 */])的 MEL 脚本将导致 Maya 进入无限循环,只能由操作系统终止。
,