Waypoint = []
for i in range(len(Waypoints)):
vPos = App.TGPoint3()
vFwd = App.TGPoint3()
vUp = App.TGPoint3()
vPos.SetXYZ(Waypoints['PosX'], Waypoints['PosY'], Waypoints['PosZ'])
vFwd.SetXYZ(Waypoints['FwdX'], Waypoints['FwdY'], Waypoints['FwdZ'])
vUp.SetXYZ( Waypoints['UpX'] , Waypoints['UpY'] , Waypoints['UpZ']
There's 1
sConstructionLocation = pConstructionShip.GetName() + ' Constructing Location' + str(DockNumber)
kThis = App.Waypoint_Create(sConstructionLocation, sSetName, None)
kThis.SetStatic(1)
kThis.SetNavPoint(0)
kThis.SetTranslate(vPos)
There's 2
Yh thx for that,ill try to rember that,here's the 2 piece of code that i THINK might have sumthing to do with it.