Difference between revisions of "B2.MouseJoint:setTarget"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
 
=== Description ===
 
=== Description ===
 
Updates the target point.
 
Updates the target point.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
b2.MouseJoint:setTarget(x,y)
 
b2.MouseJoint:setTarget(x,y)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 18:22, 12 July 2023


Available since: Gideros 2011.6
Class: b2.MouseJoint

Description

Updates the target point.

b2.MouseJoint:setTarget(x,y)

Parameters

x: (number) x coordinate of the target point
y: (number) y coordinate of the target point




LiquidFun