.. MoveTo

.. default - domain::js

.. include:: /includes/standard.rst

===========================
MoveTo (of :class:`Motion`)
===========================

.. class:: MoveTo

	Defined in Cycle.sc.

	
	MoveTo is the simplest of movers. It moves an Actor to a destination, then stops.
	If the Actor needs to maneuver around room obstacles, :class:`PolyPath` should be used instead.
	
	Example usage::
	
		; Move a bird to (200, 37), then call the cue() method on us.	
		(bird setMotion: MoveTo 200 37 self)


Subclasses: :class:`RegionPath`.

.. blockdiag::
	:alt: class diagram
	:width: 600

	diagram {
		default_fontsize = 16
		Motion -> Wander
		Motion -> DPath
		Motion -> MoveTo
		Motion -> Approach
		Motion -> Orbit
		Motion -> Follow
		Motion -> PolyPath
		Motion -> Track
		Motion -> Chase
		Motion -> Jump
		Jump -> JumpTo
		PolyPath -> PChase
		PolyPath -> PFollow
		PolyPath -> MoveFwd
		MoveTo -> RegionPath
		DPath -> RelDPath
		MoveTo [color=greenyellow]
	}

Properties
==========

Inherited from :class:`Motion`:

========= =============================================================
Property  Description                                                  
========= =============================================================
client    The :class:`Actor` to which this is attached.                
caller    The object that will get cue()'d when the motion is complete.
x                                                                      
y                                                                      
dx                                                                     
dy                                                                     
b-moveCnt                                                              
b-i1                                                                   
b-i2                                                                   
b-di                                                                   
b-xAxis                                                                
b-incr                                                                 
completed                                                              
xLast                                                                  
yLast                                                                  
name                                                                   
========= =============================================================


Methods
==========

.. function:: onTarget()
	:noindex:



