How do we change the segmentsH and segmentsW values after a mesh has been created. This does not work:
sphere = new SphereGeometry(1024,48,48)
mesh = new Mesh(sphere)
// later..
sphere.segmentsH = sphere.segmentsW = 42 // this has no effect?
Change Mesh / Geometry Segments?Software: Away3D 4.x |
||
Lucid, Member
Posted: 04 April 2012 09:41 AM Total Posts: 93 How do we change the segmentsH and segmentsW values after a mesh has been created. This does not work: sphere = new SphereGeometry(1024,48,48) // later.. sphere.segmentsH = sphere.segmentsW = 42 // this has no effect? |
||
pallzoltan, Newbie
Posted: 04 April 2012 11:55 AM Total Posts: 20 [ # 1 ] i think you’d have to recreate the geometry |