Difference between revisions of "CBlob::getPosition"

From King Arthur's Gold Wiki
Jump to: navigation, search
Line 1: Line 1:
 
<onlyinclude>
 
<onlyinclude>
+
Returns a Vec2f value with current blob's position.
 
</onlyinclude>
 
</onlyinclude>
+
 
 +
This function will give you the current Vec2f world position of the blob.
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
 
Vec2f getPosition()
 
Vec2f getPosition()
 +
</syntaxhighlight>
 +
 +
 +
Example
 +
<syntaxhighlight lang="cpp">
 +
Vec2f pos = this.getBlob().getPosition();
 
</syntaxhighlight>
 
</syntaxhighlight>
 
   
 
   

Revision as of 23:47, 28 September 2012

Returns a Vec2f value with current blob's position.


This function will give you the current Vec2f world position of the blob.

Vec2f getPosition()


Example

Vec2f pos = this.getBlob().getPosition();

Object method of: CBlob