home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2002 April / GSSH42002.iso / EDITOREN / DS / gmax / gmax_help.exe / help / maxscript.chm / jpg / editor_intro.jpg < prev    next >
Joint Photographic Experts Group Image  |  2001-08-28  |  36KB  |  579x332  |  16-bit (9,527 colors)
Labels: text | electronics | screenshot | display | software | web page | operating system | number | computer icon | website | font
OCR: W" animverts.ms - MAXScript X File Edit Search Help -- create a sphere, convert it to a mesh, and animate all vertices s=sphere radius: 100 converttoMesh s animatevertex s #all -- on each frame, move each vertex around randomly animate on 1 for v=1 to s. numverts do - v_pos_track="$"+s. name+". Vertex_"+(v as string) +". controller" v_pos=execute (v_pos_track ) at time 0 v_pos_last=v_pos.value for t = lf to 20f do 1 at time t v_pos. value=v_pos_last+ (random [-5 ,- 5 ,- 5] [5,5,5]) v_pos_last=v_pos. value -- 1