回答編集履歴
2
誤字の修正
test
CHANGED
@@ -30,8 +30,8 @@
|
|
30
30
|
|
31
31
|
こちらの動画やドキュメントが参考になりますので是非ご覧ください。
|
32
32
|
|
33
|
-
[Maya Python入門 #6 『renameコマンドを使って、名前を変更しよう!』](https://www.youtube.com/watch?v=HR3uURNLdJk)
|
33
|
+
・[Maya Python入門 #6 『renameコマンドを使って、名前を変更しよう!』](https://www.youtube.com/watch?v=HR3uURNLdJk)
|
34
34
|
|
35
|
-
[Maya Python入門 #2 『lsコマンドを使って、選択内容を取得しよう!』](https://www.youtube.com/watch?v=XsVoOGS3JNU&t=510s)
|
35
|
+
・[Maya Python入門 #2 『lsコマンドを使って、選択内容を取得しよう!』](https://www.youtube.com/watch?v=XsVoOGS3JNU&t=510s)
|
36
36
|
|
37
|
-
[Mayaドキュメント](https://help.autodesk.com/view/MAYAUL/2020/JPN/?guid=__CommandsPython_index_html)
|
37
|
+
・[Mayaドキュメント](https://help.autodesk.com/view/MAYAUL/2020/JPN/?guid=__CommandsPython_index_html)
|
1
誤字の修正
test
CHANGED
@@ -12,14 +12,26 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
oriLoc = cmds.ls(selection=True)
|
15
|
+
oriLoc = cmds.ls(selection = True)
|
16
16
|
|
17
17
|
addName = "_Rig"
|
18
18
|
|
19
|
+
nameList = []
|
20
|
+
|
19
21
|
for duLoc in oriLoc:
|
20
22
|
|
21
|
-
nameLs
|
23
|
+
nameList.append(duLoc + addName)
|
22
24
|
|
23
|
-
cmds.spaceLocator(name=nameLs
|
25
|
+
cmds.spaceLocator(name = nameList)
|
24
26
|
|
25
27
|
```
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
こちらの動画やドキュメントが参考になりますので是非ご覧ください。
|
32
|
+
|
33
|
+
[Maya Python入門 #6 『renameコマンドを使って、名前を変更しよう!』](https://www.youtube.com/watch?v=HR3uURNLdJk)
|
34
|
+
|
35
|
+
[Maya Python入門 #2 『lsコマンドを使って、選択内容を取得しよう!』](https://www.youtube.com/watch?v=XsVoOGS3JNU&t=510s)
|
36
|
+
|
37
|
+
[Mayaドキュメント](https://help.autodesk.com/view/MAYAUL/2020/JPN/?guid=__CommandsPython_index_html)
|