02-09-2025, 04:40 PM
Tinkering again
, added control variables (rotate and forward), they take change in angle (degrees) and forwards distance (in current direction). There are a lot of controls with the interaction stuff I was working on I did a full set of tests and I think fixed a couple issues recently introduced may all be OK now.
The following is example using the new controls.

The following is example using the new controls.
Code:
LDNetwork.SendWebRequest(urlSet+"&animate="+dir) 'Valid values of dir are 0, 90, 180 & 270
'New methods - note we can rotate by other angles and longer distances
LDNetwork.SendWebRequest(urlSet+"&rotate="+(dir-data["angle"])) 'dir is new absolute angle
Program.Delay(1000)
LDNetwork.SendWebRequest(urlSet+"&forward=1")