Advertisement
Guest User

gmh error

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.60 KB | None | 0 0
  1. global proc GMH2_setHotKey_command()
  2. {
  3. nameCommand
  4. -annotation "ThunderCloud_GMH2_Hotkey"
  5. -command "source \"ThunderCloud/GMH2_6/GMH2_starter.mel\";"
  6. ThunderCloud_GMH_command;
  7. hotkey -k "!" -ctl -name "ThunderCloud_GMH_command";
  8. hotkey -k "!" -ctl -name "";
  9. hotkey -k "!" -ctl -name "ThunderCloud_GMH_command";
  10.  
  11. }
  12.  
  13. global proc GMH2_command()
  14. {
  15. GMH2_setHotKey_command();
  16. global string $g_GMH2Dir = "ThunderCloud/GMH2_6/"; //relative path of GMH2_6 from Maya script folder
  17.  
  18. print "\n ===================================\n";
  19. print "loading GMH2 \n";
  20.  
  21. print "loading PDD Mel Library scripts\n";
  22. source "ThunderCloud/PDDMelLib/PDDMelLib_header.mel";
  23. print "loading GMH2 scripts\n";
  24.  
  25.  
  26. string $scripts[] = {
  27. // misc
  28. "misc/GMH_utilities_proc.mel"
  29. ,"misc/GMH_display.mel"
  30. //style system
  31. ,"GMHStyleSystem/GMH2_CreateBrush.mel"
  32. ,"GMHStyleSystem/GMH2_createStyleMainGroup.mel"
  33. ,"GMHStyleSystem/GMH2_createGMHStyleSystem.mel"
  34. ,"GMHStyleSystem/GMH2_CreateHairSystem.mel"
  35. ,"GMHStyleSystem/GMH2_deleteGMHstyleSystem.mel"
  36. ,"GMHStyleSystem/GMH2_publishSubAttrToStyleMainGroup.mel"
  37. // preset
  38. ,"presetsLoader/GMH2_presetMan.mel"
  39. // surface
  40. ,"GMHSurface/GMH_CurvesToPFXStrokes.mel"
  41. ,"GMHSurface/GMH2_PFXStrokeToCurves.mel"
  42. ,"GMHSurface/GMH2_CurveToMayaHair.mel"
  43. ,"GMHSurface/GMH2_CreateGMHSurface.mel"
  44. ,"GMHSurface/GMH_setBaseSurfaceAttrs.mel"
  45. ,"GMHSurface/GMH_createGMHMainGroup.mel"
  46. ,"GMHSurface/GMH2_deleteGMHMainGroup.mel"
  47. ,"GMHSurface/GMH_RotateSurface.mel"
  48. ,"GMHSurface/GMH2_polyToCurve.mel"
  49. ,"GMHSurface/GMH2_strokeToPoly.mel"
  50. ,"GMHSurface/GMH2_ApplySecondaryGMHSurface.mel"
  51. // edit
  52. ,"GMHStyleSystem/edit/GMH2_connectNucleus.mel"
  53. ,"GMHSurface/edit/GMH2_GMHSurfaceAttributeEdit.mel"
  54. ,"GMHSurface/edit/GMH2_GMHSurfaceAttributeReset.mel"
  55. ,"GMHSurface/edit/GMH2_convertToFolicle.mel"
  56. ,"GMHSurface/edit/GMH2_setGMHSurfaceSimulationState.mel"
  57. ,"GMHSurface/edit/GMH2_editPressureRamp.mel"
  58. ,"GMHSurface/edit/GMH_HideShowFolliclesCurves.mel"
  59. // material
  60. ,"GMHMaterial/GMH2_shaderMan.mel"
  61. //export
  62. ,"export/GMH2_exportCurve_source.mel"
  63. ,"export/GMH2_exportMesh_source.mel"
  64. //baking
  65. ,"baking/GMH2_bakeMan.mel"
  66. //UV
  67. ,"baking/GMH2_UVMan.mel"
  68.  
  69. //GUI
  70.  
  71. ,"UI/GMH2_GUICreateGMHSurfaceUVButton.mel"
  72. ,"UI/GMH2_GUIbaking_UVPreviewSlotMan.mel"
  73. ,"UI/GMH2_GUICreateBakingButtons.mel"
  74. ,"UI/GMH2_GUICreateExportButtons.mel"
  75. ,"UI/GMH2_GUIcreate_GMHStyleTable.mel"
  76. ,"UI/GMH2_GUIcreate_GMHSurfaceTable.mel"
  77. ,"UI/GMH2_GUI_utilities_proc.mel"
  78. ,"UI/GMH2_createGMHSurfaceEditButtons.mel"
  79. ,"UI/GMH2_createGMHDynamicButtons.mel"
  80. ,"UI/GMH2_createGMHMaterialUI.mel"
  81. ,"UI/GMH2_GUI.mel"
  82. ,"UI/GMH2_GUICreateStyleSystemUVButton.mel"
  83. };
  84.  
  85. // GMH2 create GMH Style system scripts ;
  86. for ($eachScript in $scripts)
  87. {
  88. string $path = $g_GMH2Dir+$eachScript;
  89. eval (" source \""+$path+"\";");
  90.  
  91. }
  92.  
  93. print "Starting GMH2 \n";
  94.  
  95. create_GMHwindow(1);
  96. }
  97.  
  98. GMH2_command();
  99.  
  100. ===================================
  101. loading GMH2
  102. loading PDD Mel Library scripts
  103. loading PDDMelLib files
  104. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: pickWalk -d down; string $nodeShape = PDD_currentSelectionName(1);
  105. //
  106. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_Node.mel" line 40.74 : Redeclaration of variable "$nodeShape" shadows previous declaration at line 37. Previous value will be overwritten by explicit initializer. //
  107. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: string $selections[] = `ls-sl`;
  108. //
  109. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_Naming.mel" line 290.35 : Redeclaration of variable "$selections" shadows previous declaration at line 287. Previous value will be overwritten by explicit initializer. //
  110. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: string $path = PDD_getValidScriptPath($path);
  111. //
  112. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_file.mel" line 270.47 : Redeclaration of variable "$path" shadows previous declaration at line 268. Previous value will be overwritten by explicit initializer. //
  113. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: string $path = $paths[0];
  114. //
  115. // Warning: file: C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_header.mel line 27: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/PDDMelLib/PDDMelLib_UILayout_userPathThumbnailWindow.mel" line 16.29 : Redeclaration of variable "$path" shadows previous declaration at line 10. Previous value will be overwritten by explicit initializer. //
  116. loading GMH2 scripts
  117. // Warning: line 89: string $styleMainGroup = PDD_currentSelectionName($debugFlag);
  118. //
  119. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHStyleSystem/GMH2_createStyleMainGroup.mel" line 23.76 : Redeclaration of variable "$styleMainGroup" shadows previous declaration at line 22. Previous value will be overwritten by explicit initializer. //
  120. // Warning: line 89: ... string $expression = `expression -s ($HairSystem[0]+".clumpWidth = "+$HairSystem[0]+".GMHClumpWidth*"+$Ha //
  121. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHStyleSystem/GMH2_createGMHStyleSystem.mel" line 52.189 : Redeclaration of variable "$expression" shadows previous declaration at line 49. Previous value will be overwritten by explicit initializer. //
  122. // Warning: line 89: string $hairSystem = PDD_shapeName($hairSystem);
  123. //
  124. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHStyleSystem/GMH2_publishSubAttrToStyleMainGroup.mel" line 4.52 : Redeclaration of variable "$hairSystem" shadows previous declaration at line 2. Previous value will be overwritten by explicit initializer. //
  125. // Warning: line 89: int $key =0; for ($eachAttribute in $attributeNames)
  126. //
  127. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 57.16 : Redeclaration of variable "$key" shadows previous declaration at line 37. Previous value will be overwritten by explicit initializer. //
  128. // Warning: line 89: string $tmps[]; $tmps[0]= $scaleDataName;
  129. //
  130. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 111.27 : Redeclaration of variable "$tmps" shadows previous declaration at line 109. Previous value will be retained. //
  131. // Warning: line 89: int $key =0; for ($eachAttribute in $attributeNames)
  132. //
  133. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 133.16 : Redeclaration of variable "$key" shadows previous declaration at line 37. Previous value will be overwritten by explicit initializer. //
  134. // Warning: line 89: string $fileName = (basename($fileName,("_GMHPolyStyleSystem.GPD")));
  135. //
  136. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 193.78 : Redeclaration of variable "$fileName" shadows previous declaration at line 192. Previous value will be overwritten by explicit initializer. //
  137. // Warning: line 89: string $fileName = (basename($fileName,(".GPD")));
  138. //
  139. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 194.59 : Redeclaration of variable "$fileName" shadows previous declaration at line 192. Previous value will be overwritten by explicit initializer. //
  140. // Warning: line 89: int $counter =0;
  141. //
  142. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/presetsLoader/GMH2_presetMan.mel" line 276.16 : Redeclaration of variable "$counter" shadows previous declaration at line 250. Previous value will be overwritten by explicit initializer. //
  143. // Warning: line 89: string $hairSystemDAGName=substituteAllString ($HairSystem,"Shape","");
  144. //
  145. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_CurveToMayaHair.mel" line 78.84 : Redeclaration of variable "$hairSystemDAGName" shadows previous declaration at line 74. Previous value will be overwritten by explicit initializer. //
  146. // Warning: line 89: int $debugFlag = 0;
  147. //
  148. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_CreateGMHSurface.mel" line 7.23 : Redeclaration of variable "$debugFlag" shadows previous declaration at line 5. Previous value will be overwritten by explicit initializer. //
  149. // Warning: line 89: string $mainGroup = CreateGMHMainGroup($name,$debugFlag);
  150. //
  151. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_CreateGMHSurface.mel" line 53.69 : Redeclaration of variable "$mainGroup" shadows previous declaration at line 26. Previous value will be overwritten by explicit initializer. //
  152. // Warning: line 89: int $index = 0;
  153. //
  154. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH_setBaseSurfaceAttrs.mel" line 57.22 : Redeclaration of variable "$index" shadows previous declaration at line 38. Previous value will be overwritten by explicit initializer. //
  155. // Warning: line 89: string $historiesNode_tmp[] = `subdToNurbs -ch 1 -aut on -ot 0 $GMH2_subDMesh`;
  156. //
  157. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_polyToCurve.mel" line 24.86 : Redeclaration of variable "$historiesNode_tmp" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  158. // Warning: line 89: string $mesh = PDD_currentSelectionName(1);
  159. //
  160. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_strokeToPoly.mel" line 20.47 : Redeclaration of variable "$mesh" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  161. // Warning: line 89: select $eachGrowCurve; string $leadCurves[] = PDD_NodesFromConnection("GMH_OutputCurves","out",1);
  162. //
  163. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_ApplySecondaryGMHSurface.mel" line 63.116 : Redeclaration of variable "$leadCurves" shadows previous declaration at line 48. Previous value will be overwritten by explicit initializer. //
  164. // Warning: line 89: string $baseSurface = PDD_NodeFromConnection("GMH_outPolySurfaceShape","out",1);
  165. //
  166. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/GMH2_ApplySecondaryGMHSurface.mel" line 101.88 : Redeclaration of variable "$baseSurface" shadows previous declaration at line 92. Previous value will be overwritten by explicit initializer. //
  167. // Warning: line 89: string $surface = PDD_NodeFromConnection("GMH_outPolySurfaceShape","in",1);
  168. //
  169. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/edit/GMH2_GMHSurfaceAttributeEdit.mel" line 31.79 : Redeclaration of variable "$surface" shadows previous declaration at line 4. Previous value will be overwritten by explicit initializer. //
  170. // Warning: line 89: string $surface = PDD_NodeFromConnection("GMH_outPolySurfaceShape","in",1);
  171. //
  172. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/GMHSurface/edit/GMH2_GMHSurfaceAttributeReset.mel" line 35.79 : Redeclaration of variable "$surface" shadows previous declaration at line 4. Previous value will be overwritten by explicit initializer. //
  173. // Warning: line 89: string $tmps[] =`duplicate $strokeGeoLists`;
  174. //
  175. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/baking/GMH2_bakeMan.mel" line 46.48 : Redeclaration of variable "$tmps" shadows previous declaration at line 24. Previous value will be overwritten by explicit initializer. //
  176. // Warning: line 89: string $tmps[] = ` polyEditUV -pu 0 -pv 0 -su ($scale) -sv 1 `;
  177. //
  178. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/baking/GMH2_UVMan.mel" line 399.66 : Redeclaration of variable "$tmps" shadows previous declaration at line 393. Previous value will be overwritten by explicit initializer. //
  179. // Warning: line 89: string $tmps[] =` polyEditUV -u $distanceToMove -v 0` ;
  180. //
  181. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/baking/GMH2_UVMan.mel" line 405.58 : Redeclaration of variable "$tmps" shadows previous declaration at line 393. Previous value will be overwritten by explicit initializer. //
  182. // Warning: line 89: string $command = "GMH2_setAndCreateUVOfGMHSurfaceHairTube_multiCommandUI(2)";
  183. //
  184. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUICreateGMHSurfaceUVButton.mel" line 28.82 : Redeclaration of variable "$command" shadows previous declaration at line 26. Previous value will be overwritten by explicit initializer. //
  185. // Warning: line 89: int $counter =0;
  186. //
  187. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIbaking_UVPreviewSlotMan.mel" line 113.21 : Redeclaration of variable "$counter" shadows previous declaration at line 97. Previous value will be overwritten by explicit initializer. //
  188. // Warning: line 89: int $counter = 0;
  189. //
  190. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIbaking_UVPreviewSlotMan.mel" line 259.21 : Redeclaration of variable "$counter" shadows previous declaration at line 250. Previous value will be overwritten by explicit initializer. //
  191. // Warning: line 89: ... + "PDD_createIntSliderEnum_Command(\"GMH2TextureBakingHeightSlider\",{\"128 px\",\"256 px\",\"512 px\ //
  192. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUICreateBakingButtons.mel" line 49.182 : Redeclaration of variable "$command" shadows previous declaration at line 42. Previous value will be overwritten by explicit initializer. //
  193. // Warning: line 89: ... string $command = "PDD_createIntSliderEnum_Command(\"GMH2TextureBakingHeightSlider\",{\"128 px\",\"256 px\",\"512 px\",\" //
  194. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUICreateBakingButtons.mel" line 54.177 : Redeclaration of variable "$command" shadows previous declaration at line 42. Previous value will be overwritten by explicit initializer. //
  195. // Warning: line 89: );
  196. //
  197. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUICreateBakingButtons.mel" line 64.28 : Redeclaration of variable "$command" shadows previous declaration at line 42. Previous value will be overwritten by explicit initializer. //
  198. // Warning: line 89: ... string $command = "PDD_createIntSliderEnum_Command(\"samplingQualitySlider\",{\"preview\",\"low\",\"medium\",\"high\"});" //
  199. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUICreateBakingButtons.mel" line 68.128 : Redeclaration of variable "$command" shadows previous declaration at line 42. Previous value will be overwritten by explicit initializer. //
  200. // Warning: line 89: string $command = "createNameWindow (\"RenameGMHStyleWindow\",\"Rename GMH style\");";
  201. //
  202. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 23.97 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  203. // Warning: line 89: ... string $command = ("string $GMHStyleSystem[] = `textScrollList -query -selectItem GMHStyleList`; for ($obj in $GMHS //
  204. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 26.184 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  205. // Warning: line 89: string $command = "GMH2_loadPreset_command;";
  206. //
  207. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 29.56 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  208. // Warning: line 89: string $command = "GMH2_savePreset_command();";
  209. //
  210. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 32.58 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  211. // Warning: line 89: string $command = ("updateGUI(1);");
  212. //
  213. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 39.47 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  214. // Warning: line 89: ... string $command = "string $GMHStyleSystem[] = `textScrollList -query -selectItem GMHStyleList`;select $GMHStyleSyst //
  215. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 63.135 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  216. // Warning: line 89: ... string $command = "string $GMHStyleSystem[] = `textScrollList -query -selectItem GMHStyleList`;SelectHairSystemShap //
  217. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 66.151 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  218. // Warning: line 89: ... string $command = "string $GMHStyleSystem[] = `textScrollList -query -selectItem GMHStyleList`;SelectBrushNode($GMH //
  219. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHStyleTable.mel" line 69.145 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  220. // Warning: line 89: ... + "{select $eachObj; applySecondaryGMHHairSystem($eachObj,$GMHsystem[0],0);} select $selections; //
  221. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 25.147 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  222. // Warning: line 89: string $command = ("GMH2_deleteGMHSurface_command;updateGUI(0);");
  223. //
  224. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 30.78 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  225. // Warning: line 89: string $command = "GMH2_deleteOrphanMainGrp_commandUI";
  226. //
  227. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 35.66 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  228. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){select $eachObj;GMH_RotateSurface //
  229. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 54.167 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  230. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){select $eachObj;GMH_reverseSurfac //
  231. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 57.168 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  232. // Warning: line 89: string $command = "GMH2_selectRootVertex_multiCommandUI();";
  233. //
  234. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUIcreate_GMHSurfaceTable.mel" line 60.72 : Redeclaration of variable "$command" shadows previous declaration at line 16. Previous value will be overwritten by explicit initializer. //
  235. // Warning: line 89: string $GMHShaderLists[] = GMH2_getGMH2ShaderLists();
  236. //
  237. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUI_utilities_proc.mel" line 77.73 : Redeclaration of variable "$GMHShaderLists" shadows previous declaration at line 74. Previous value will be overwritten by explicit initializer. //
  238. // Warning: line 89: string $command =( "deleteUI "+ $namewindow );
  239. //
  240. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUI_utilities_proc.mel" line 228.54 : Redeclaration of variable "$command" shadows previous declaration at line 195. Previous value will be overwritten by explicit initializer. //
  241. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){select $eachObj;GMH_RotateSurface //
  242. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 17.167 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  243. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){select $eachObj;GMH_reverseSurfac //
  244. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 20.168 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  245. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){GMH2_GMHSurfaceAttributeEdit($eac //
  246. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 23.205 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  247. // Warning: line 89: ... string $command = ("string $selections[] = `ls-sl`; for ($eachObj in $selections){GMH2_GMHSurfaceAttributeEdit($eac //
  248. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 27.208 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  249. // Warning: line 89: string $command = ("GMH2_editPressureRampGMHSurface()");
  250. //
  251. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 30.68 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  252. // Warning: line 89: string $command = ("string $selections[] = `ls-sl`;GMH_ShowFolliclesCurves($selections); updateGUI(0)");
  253. //
  254. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 34.116 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  255. // Warning: line 89: string $command = ("string $selections[] = `ls-sl`;GMH_HideFolliclesCurves($selections); updateGUI(0)");
  256. //
  257. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 37.116 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  258. // Warning: line 89: string $command = "GMH2_selectRootVertex_multiCommandUI();";
  259. //
  260. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHSurfaceEditButtons.mel" line 40.72 : Redeclaration of variable "$command" shadows previous declaration at line 14. Previous value will be overwritten by explicit initializer. //
  261. // Warning: line 89: string $command = ("GMH2_disconnectNucleus_multiCommand");
  262. //
  263. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHDynamicButtons.mel" line 18.70 : Redeclaration of variable "$command" shadows previous declaration at line 13. Previous value will be overwritten by explicit initializer. //
  264. // Warning: line 89: string $command = ("GMH_UI_convertToFolicles();");
  265. //
  266. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHDynamicButtons.mel" line 35.62 : Redeclaration of variable "$command" shadows previous declaration at line 13. Previous value will be overwritten by explicit initializer. //
  267. // Warning: line 89: string $command = ("GMH2_setGMHSurfaceSimulationState\"static\"");
  268. //
  269. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHDynamicButtons.mel" line 43.78 : Redeclaration of variable "$command" shadows previous declaration at line 13. Previous value will be overwritten by explicit initializer. //
  270. // Warning: line 89: string $command = ("GMH2_setGMHSurfaceSimulationState\"passive\"");
  271. //
  272. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHDynamicButtons.mel" line 48.79 : Redeclaration of variable "$command" shadows previous declaration at line 13. Previous value will be overwritten by explicit initializer. //
  273. // Warning: line 89: string $command = ("GMH2_setGMHSurfaceSimulationState\"dynamic\"");
  274. //
  275. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHDynamicButtons.mel" line 53.79 : Redeclaration of variable "$command" shadows previous declaration at line 13. Previous value will be overwritten by explicit initializer. //
  276. // Warning: line 89: string $command = ("GMH2_removeGMHShader_command();");
  277. //
  278. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 24.65 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  279. // Warning: line 89: string $command = ("GMH2_removeMaterialOveride_command();");
  280. //
  281. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 33.71 : Redeclaration of variable "$command" shadows previous declaration at line 20. Previous value will be overwritten by explicit initializer. //
  282. // Warning: line 89: string $command = "GMH2_assignShaderToGMHSurface_command(2)";
  283. //
  284. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 119.65 : Redeclaration of variable "$command" shadows previous declaration at line 117. Previous value will be overwritten by explicit initializer. //
  285. // Warning: line 89: ... string $command ="GMH2_editHairNum(\""+$GMH2Textures[0]+"\",\"base\",(`intSliderGrp -q -v baseHairNumControl` //
  286. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 197.131 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  287. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseShape_ctrl\",\"floatSliderGrp\",\"" //
  288. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 200.164 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  289. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseWidth_ctrl\",\"floatSliderGrp\",\"" //
  290. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 203.165 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  291. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseTwist_ctrl\",\"floatSliderGrp\",\"" //
  292. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 206.165 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  293. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseRootThinningRange_ctrl\",\"floatSli //
  294. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 209.185 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  295. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseRootThinningBias_ctrl\",\"floatSlid //
  296. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 212.183 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  297. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseTipThinningRange_ctrl\",\"floatSlid //
  298. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 216.183 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  299. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseTipThinningBias_ctrl\",\"floatSlide //
  300. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 220.181 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  301. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseDiffuserShadowFallOff_ctrl\",\"floa //
  302. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 223.196 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  303. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureBaseHairDIffuseShadowSide_ctrl\",\"floa //
  304. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 226.193 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  305. // Warning: line 89: ... string $command ="GMH2_editHairNum(\""+$GMH2Textures[0]+"\",\"secondary\",(`intSliderGrp -q -v secondaryHairN //
  306. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 249.141 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  307. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryShape_ctrl\",\"floatSliderGrp\ //
  308. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 252.174 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  309. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryWidth_ctrl\",\"floatSliderGrp\ //
  310. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 255.175 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  311. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryTwist_ctrl\",\"floatSliderGrp\ //
  312. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 258.175 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  313. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryRootThinningRange_ctrl\",\"flo //
  314. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 261.195 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  315. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryRootThinningBias_ctrl\",\"floa //
  316. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 264.193 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  317. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryTipThinningRange_ctrl\",\"floa //
  318. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 268.193 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  319. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryTipThinningBias_ctrl\",\"float //
  320. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 272.191 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  321. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryDiffuserShadowFallOff_ctrl\",\ //
  322. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 275.206 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  323. // Warning: line 89: ... string $command = "GMH2_updateAttributeFromSlider_command(\"GMH2TextureSecondaryHairDIffuseShadowSide_ctrl\",\ //
  324. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_createGMHMaterialUI.mel" line 278.203 : Redeclaration of variable "$command" shadows previous declaration at line 174. Previous value will be overwritten by explicit initializer. //
  325. // Warning: line 89: string $imagePath = PDD_getValidScriptPath($g_GMH2Dir+"graphic/ThunderCloudLogo.png");
  326. //
  327. // Warning: line 89: "C:/Users/Joels/Documents/maya/2018/scripts/ThunderCloud/GMH2_6/UI/GMH2_GUI.mel" line 148.99 : Redeclaration of variable "$imagePath" shadows previous declaration at line 138. Previous value will be overwritten by explicit initializer. //
  328. Starting GMH2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement