getSideVector method
Implementation
Vector3 getSideVector() {
object.getWorldDirection( targetPosition );
targetPosition.y = 0;
targetPosition.normalize();
targetPosition.cross( object.up );
return targetPosition;
}
Vector3 getSideVector() {
object.getWorldDirection( targetPosition );
targetPosition.y = 0;
targetPosition.normalize();
targetPosition.cross( object.up );
return targetPosition;
}