You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Tools/maxscript/cryKey/AddToExportList.ms

13 lines
300 B
Plaintext

max utility mode
UtilityPanel.OpenUtility CryEngine_2_Exporter
for obj in selection do
(
ExprtArr = csexport.export.get_node_list()
for x = 1 to ExprtArr.count do
(
if ExprtArr[x] == obj then deleteItem ExprtArr x
)
append ExprtArr obj
csexport.export.set_node_list ExprtArr
)
max modify mode