Touch Camera Pro
|
Public Member Functions | |
Matrix4x4 | GetMatrix () |
Return the matrix of the camera transform, in order to blend it when switching modes More... | |
void | SetGroundHeightAnimated (float newHeight, bool animate, float duration) |
This let you change the ground height at any moment in order to change at which y position the fingers will be intercepted. This version lets you animate it More... | |
void | SetGroundHeight (float y) |
This let you change the ground height at any moment in order to change at which y position the fingers will be intercepted More... | |
void | RotateFromVector (Vector2 delta) |
Rotate the camera manually More... | |
void | ResetCamera () |
Reset the camera to initial values More... | |
void | SetResetValues (Vector3 offset, Quaternion rotation, float distanceOrSize) |
Set the initial values for the reset function More... | |
void | MoveCameraToInstant (Vector3 targetPosition) |
Moves the Camera offset position on ground to a new position, in 1 frame More... | |
void | MoveCameraToInstant (Vector3 targetPosition, float targetDistance) |
Moves the Camera offset position on ground and distance from it, in 1 frame More... | |
void | MoveCameraToInstant (Vector3 targetPosition, Quaternion targetRotation) |
Moves the Camera offset position on ground and rotation, in 1 frame More... | |
void | MoveCameraToInstant (Vector3 targetPosition, Vector2 targetRotation) |
Moves the Camera offset position on ground and rotation, in 1 frame More... | |
void | MoveCameraToInstant (Vector3 targetPosition, float targetDistance, Vector2 targetRotation) |
Moves the Camera offset position on ground, distance from it and rotation, in 1 frame More... | |
void | MoveCameraToInstant (Vector3 targetPosition, float targetDistance, Quaternion targetRotation) |
Moves the Camera offset position on ground, distance from it and rotation, in 1 frame More... | |
void | MoveCameraTo (Vector3 targetPosition) |
Moves the Camera offset position on ground, animated More... | |
void | MoveCameraTo (Vector3 targetPosition, float targetDistance) |
Moves the Camera offset position on ground, distance from it, animated More... | |
void | MoveCameraTo (Vector3 targetPosition, Quaternion targetRotation) |
Moves the Camera offset position on ground, and rotation, animated More... | |
void | MoveCameraTo (Vector3 targetPosition, Vector2 targetRotation) |
Moves the Camera offset position on ground, and rotation, animated More... | |
void | MoveCameraTo (Vector3 targetPosition, float targetDistance, Vector2 targetRotation) |
Moves the Camera offset position on ground, distance from it and rotation, animated More... | |
void | MoveCameraTo (Vector3 targetPosition, float targetDistance, Quaternion targetRotation) |
Moves the Camera offset position on ground, distance from it and rotation, animated More... | |
void | FocusCamera (Vector3 targetPosition, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCamera (Vector3 targetPosition, float targetDistance, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCamera (Vector3 targetPosition, Quaternion targetRotation, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCamera (Vector3 targetPosition, Vector2 targetRotation, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCamera (Vector3 targetPosition, float targetDistance, Vector2 targetRotation, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCamera (Vector3 targetPosition, float targetDistance, Quaternion targetRotation, bool instant=false) |
Alias of MoveCameraTo More... | |
void | FocusCameraOnGameObject (GameObject go, bool allowYOffsetFromGround=false) |
Focus the camera on a GameObject (distance animation) More... | |
void | FollowGameObject (GameObject go, bool doFocus, bool allowYOffsetFromGround=false) |
Follow a game object More... | |
void | StopFollow () |
Stop follow/focus/moveto animations More... | |
Properties | |
bool | DisableMoves [get, set] |
This blocks the user input moves, in order to animate the camera by script More... | |
Quaternion | FinalRotation [get] |
The final quaternion rotation of the camera transform More... | |
Vector3 | FinalPosition [get] |
The final position of the camera transform More... | |
Vector3 | FinalOffset [get] |
The final offset of the camera's center point on ground This is not the camera position. The center of the camera is projected on the ground, and this is it's position. More... | |
float | FinalDistance [get] |
This is the final distance between the camera's center point on the ground, and the camera transform's position More... | |
Vector2 | PitchAndYaw [get] |
This returns the current Pitch and Yaw rotations of the camera More... | |
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
targetDistance | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Quaternion | targetRotation, | ||
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
targetDistance | |
targetRotation | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Vector2 | targetRotation, | ||
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
targetDistance | |
targetRotation | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
Quaternion | targetRotation, | ||
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
targetRotation | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCamera | ( | Vector3 | targetPosition, |
Vector2 | targetRotation, | ||
bool | instant = false |
||
) |
Alias of MoveCameraTo
targetPosition | |
targetRotation | |
instant |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.FocusCameraOnGameObject | ( | GameObject | go, |
bool | allowYOffsetFromGround = false |
||
) |
Focus the camera on a GameObject (distance animation)
go | The gameObject to get closer to |
allowYOffsetFromGround | Allow offseting the camera from the ground to match the object's pivot y position and height |
Implemented in Exoa.Cameras.CameraModeSwitcher, Exoa.Cameras.CameraOrthoBase, and Exoa.Cameras.CameraPerspBase.
void Exoa.Cameras.ITouchCamera.FollowGameObject | ( | GameObject | go, |
bool | doFocus, | ||
bool | allowYOffsetFromGround = false |
||
) |
Follow a game object
go | The game object to follow |
doFocus | Also focus on it (distance animation) |
allowYOffsetFromGround | Allow offseting the camera from the ground to match the object's pivot y position and height |
Implemented in Exoa.Cameras.CameraOrthoBase, Exoa.Cameras.CameraPerspBase, and Exoa.Cameras.CameraModeSwitcher.
Matrix4x4 Exoa.Cameras.ITouchCamera.GetMatrix | ( | ) |
Return the matrix of the camera transform, in order to blend it when switching modes
Implemented in Exoa.Cameras.CameraModeSwitcher, Exoa.Cameras.CameraOrthoBase, and Exoa.Cameras.CameraPerspBase.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition | ) |
Moves the Camera offset position on ground, animated
targetPosition |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition, |
float | targetDistance | ||
) |
Moves the Camera offset position on ground, distance from it, animated
targetPosition | |
targetDistance |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Quaternion | targetRotation | ||
) |
Moves the Camera offset position on ground, distance from it and rotation, animated
targetPosition | |
targetDistance | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Vector2 | targetRotation | ||
) |
Moves the Camera offset position on ground, distance from it and rotation, animated
targetPosition | |
targetDistance | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition, |
Quaternion | targetRotation | ||
) |
Moves the Camera offset position on ground, and rotation, animated
targetPosition | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraTo | ( | Vector3 | targetPosition, |
Vector2 | targetRotation | ||
) |
Moves the Camera offset position on ground, and rotation, animated
targetPosition | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition | ) |
Moves the Camera offset position on ground to a new position, in 1 frame
targetPosition |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition, |
float | targetDistance | ||
) |
Moves the Camera offset position on ground and distance from it, in 1 frame
targetPosition | |
targetDistance |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Quaternion | targetRotation | ||
) |
Moves the Camera offset position on ground, distance from it and rotation, in 1 frame
targetPosition | |
targetDistance | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition, |
float | targetDistance, | ||
Vector2 | targetRotation | ||
) |
Moves the Camera offset position on ground, distance from it and rotation, in 1 frame
targetPosition | |
targetDistance | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition, |
Quaternion | targetRotation | ||
) |
Moves the Camera offset position on ground and rotation, in 1 frame
targetPosition | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.MoveCameraToInstant | ( | Vector3 | targetPosition, |
Vector2 | targetRotation | ||
) |
Moves the Camera offset position on ground and rotation, in 1 frame
targetPosition | |
targetRotation |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.ResetCamera | ( | ) |
Reset the camera to initial values
Implemented in Exoa.Cameras.CameraIsometricOrtho, Exoa.Cameras.CameraModeSwitcher, Exoa.Cameras.CameraPerspective, Exoa.Cameras.CameraSideScrollOrtho, and Exoa.Cameras.CameraTopDownOrtho.
void Exoa.Cameras.ITouchCamera.RotateFromVector | ( | Vector2 | delta | ) |
Rotate the camera manually
delta | the increment values (pitch, yaw) |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.SetGroundHeight | ( | float | y | ) |
This let you change the ground height at any moment in order to change at which y position the fingers will be intercepted
y |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.SetGroundHeightAnimated | ( | float | newHeight, |
bool | animate, | ||
float | duration | ||
) |
This let you change the ground height at any moment in order to change at which y position the fingers will be intercepted. This version lets you animate it
newHeight | |
animate | |
duration |
Implemented in Exoa.Cameras.CameraModeSwitcher.
void Exoa.Cameras.ITouchCamera.SetResetValues | ( | Vector3 | offset, |
Quaternion | rotation, | ||
float | distanceOrSize | ||
) |
Set the initial values for the reset function
offset | |
rotation | |
distanceOrSize |
Implemented in Exoa.Cameras.CameraPerspective, Exoa.Cameras.CameraModeSwitcher, Exoa.Cameras.CameraPerspBase, Exoa.Cameras.CameraIsometricOrtho, Exoa.Cameras.CameraOrthoBase, Exoa.Cameras.CameraSideScrollOrtho, and Exoa.Cameras.CameraTopDownOrtho.
void Exoa.Cameras.ITouchCamera.StopFollow | ( | ) |
Stop follow/focus/moveto animations
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
getset |
This blocks the user input moves, in order to animate the camera by script
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
get |
This is the final distance between the camera's center point on the ground, and the camera transform's position
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
get |
The final offset of the camera's center point on ground This is not the camera position. The center of the camera is projected on the ground, and this is it's position.
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
get |
The final position of the camera transform
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
get |
The final quaternion rotation of the camera transform
Implemented in Exoa.Cameras.CameraModeSwitcher.
|
get |
This returns the current Pitch and Yaw rotations of the camera
Implemented in Exoa.Cameras.CameraModeSwitcher.