Sprite Factory

ReadMe
Release Notes
Overview
Using the Editor
Upgrading

Concepts
Sprites
Master Sprites
Sprite Groups
Colliders
Locators
Material Sets
SpriteUpdater
SpriteCamera

Advanced
Working in Multiple Projects

Classes
Runtime Classes

Videos
Overview
Creating Sprites
Sprite Inspector
Frame Events
Collision System
Locator System
Material Sets

Links
Sprite Factory Site
Web Documentation
Support
Contact

SpriteFactory.Sprite.Locator.TransformPoint

C#: Vector3 TransformPoint (Vector3 position)
JS: function TransformPoint (position : Vector3) : Vector3

Description
Transforms position from local space to world space.

Note that the returned position is affected by scale. Use TransformDirection if you are dealing with directions.


C#: Vector3 TransformPoint (float x, float y, float z)
JS: function TransformPoint (x : float, y : float, z : float) : Vector3

Description
Transforms the position x, y, z from local space to world space.

Note that the returned position is affected by scale. Use TransformDirection if you are dealing with directions.

See Also
InverseTransformPoint
TransformDirection
InverseTransformDirection