global proc spooWorldSetup() { //Create 2000X2000 poly plane with 32X32 divisions polyPlane -w 1024 -h 1024 -sx 32 -sy 32 -ax 0 1 0 -tx 1 -ch 1; //rename "polyPlane" to "worldGrid" string $sel[] = `ls -sl`; rename $sel "heightMap_world"; //Set Active Cameras Near and Far Clip Planes so you can tsee the mesh string $currentPanel = `getPanel -withFocus`; string $cam1 = `modelPanel -q -camera $currentPanel`; string $cam2[] = `listRelatives -allDescendents -fullPath $cam1`; getAttr ($cam2[0] + ".farClipPlane"); setAttr ($cam2[0] + ".farClipPlane") 99999; getAttr ($cam2[0] + ".nearClipPlane"); setAttr ($cam2[0] + ".nearClipPlane") 1; select heightMap_world; SmoothProxy; setAttr "polySmoothProxy1.method" 1; setAttr "polySmoothProxy1.linearLevel" 1; setAttr "polySmoothProxy1.keepHardEdge" 1; FrameSelected; SculptPolygonsToolOptions; }