Diciembre 29, 2013, 12:43:17 AM Ultima modificación: Diciembre 29, 2013, 12:44:50 AM por esbxp
 Tengo esto :

myPath = path_add()
path_set_closed(myPath, true)
path_set_precision(myPath, 4)

index = 0
do {
  xp = CRND( 800 )   //. Random entre 1 y 800
  yp = CRND( 600 )   //. Random entre 1 y 600
  path_add_point(myPath, xp, yp, 100);

  show_debug_message("Path: " + string(xp) +","+ string(yp))

  index += 1
} until (index >= 10)

path_assign(object_index, myPath)

path_start(myPath, 4, 2, false)   //. Error en la Ejecucion


Pero da error en la Ejecución,  alguien sabe como se enlaza al objeto el PATH ...