Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Maya MEL 脚本中将整数打印到字符串中?
事实证明,您可以+在 Maya 嵌入式语言中使用来连接字符串和整数对象。
+
例如:
int $i ; string $s ; for( $i = 0; $i < 5; $i++ ) { $s = "ooh" + $i ; print $s ; }
还有格式命令