The idea is to hit the space key and have the sphere cycle through all of the vertex points of the plain.
I'm pretty sure I've done stuff like this before, but DBP just seems to hate me today.
Why doesn't this work? Am I losing my marbles?
`MAKE PLAIN
make object plain 1,1,1
set object wireframe 1,1
lock vertexdata for limb 1,0
Total=get vertexdata vertex count()
`MAKE SPHERE
Vert=0
make object sphere 2,.1
position object 2,get vertexdata position x(Vert),get vertexdata position y(Vert),get vertexdata position z(Vert)
backdrop on
DO
set cursor 0,0
print "Space Key To Change Vertex"
print
print "Vertex: ";Vert;"/";Total-1
if spacekey()=1 then inc Vert:if Vert>(Total-1) then Vert=0:position object 2,get vertexdata position x(Vert),get vertexdata position y(Vert),get vertexdata position z(Vert)
while spacekey()=1:ENDWHILE
LOOP
666GO†O666