SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
EZScreenPlacement Class Reference

Inherits MonoBehaviour, and IUseCamera.

Public Types

enum  HORIZONTAL_ALIGN {
  HORIZONTAL_ALIGN.NONE, HORIZONTAL_ALIGN.SCREEN_LEFT, HORIZONTAL_ALIGN.SCREEN_RIGHT, HORIZONTAL_ALIGN.SCREEN_CENTER,
  HORIZONTAL_ALIGN.OBJECT
}
 Specifies what the object will be aligned relative to on the horizontal axis. More...
 
enum  VERTICAL_ALIGN {
  VERTICAL_ALIGN.NONE, VERTICAL_ALIGN.SCREEN_TOP, VERTICAL_ALIGN.SCREEN_BOTTOM, VERTICAL_ALIGN.SCREEN_CENTER,
  VERTICAL_ALIGN.OBJECT
}
 Specifies what the object will be aligned relative to on the vertical axis. More...
 

Public Member Functions

void PositionOnScreenRecursively ()
 Positions the object, taking into account any object-relative dependencies, making sure the objects to which this object is relative are correctly positioned before positioning this one. More...
 
Vector3 ScreenPosToLocalPos (Vector3 screenPos)
 Calculates a local position from a given screen or object-relative position, according to the current screen-space settings. More...
 
Vector3 ScreenPosToParentPos (Vector3 screenPos)
 Calculates a in the parent's local space from a given screen or object-relative position, according to the current screen-space settings. More...
 
Vector3 ScreenPosToWorldPos (Vector3 screenPos)
 
void PositionOnScreen ()
 Repositions the object using the existing screen-space settings. More...
 
void PositionOnScreen (int x, int y, float depth)
 Positions the object using screen coordinates, according to the relativity settings stored in relativeToScreen. More...
 
void PositionOnScreen (Vector3 pos)
 Positions the object using screen coordinates, according to the relativity settings stored in relativeToScreen. More...
 
void UpdateCamera ()
 Updates the object's position based on the currently selected renderCamera. More...
 
void SetCamera ()
 A no-argument version of SetCamera() that simply re-assigns the same camera to the object, forcing it to recalculate all camera-dependent calculations. More...
 
void SetCamera (Camera c)
 Sets the camera to be used for calculating positions. More...
 

Public Attributes

Camera renderCamera
 The camera with which this object should be positioned. More...
 
Vector3 screenPos = Vector3.forward
 The position of the object, relative to the screen or other object. More...
 
bool ignoreZ = false
 When set to true, the Z component of Screen Pos will be calculated based upon the distance of the object to the render camera, rather than controlling the distance to the render camera. Enable this option, for example, when you want to preserve parent-relative positioning on the Z-axis. More...
 
RelativeTo relativeTo
 Settings object that describes what this object is positioned relative to. More...
 
Transform relativeObject
 The object to which this object is relative. NOTE: Only used if either the vertical or horizontal elements of relativeTo are set to OBJECT (or both). More...
 
bool alwaysRecursive = true
 When true, positioning of the object is always done in a recursive fashion. That is, if this object is relative to any other objects, those objects, should they also hold an EZScreenPlacement component, will be positioned before this one. More...
 
bool allowTransformDrag = false
 When checked, you can simply use the transform handles in the scene view to roughly position your object in the scene, and the appropriate values will be automatically calculated for Screen Pos based on your other settings. If you're having problems with slight rounding errors making small changes to your Screen Pos coordinate, you should probably uncheck this option. This is particularly likely to happen if your camera is rotated at all. More...
 

Properties

Camera RenderCamera [get, set]
 Accessor for the camera that will be used to render this object. Use this to ensure the object is properly configured for the specific camera that will render it. More...
 
Vector3 ScreenCoord [get]
 Retrieves the screen coordinate of the object's current position. More...
 

Detailed Description

A class that eases the process of placing objects on-screen in a screen-relative, or object-relative way, using pixels as units of distance.

Definition at line 19 of file EZScreenPlacement.cs.

Member Enumeration Documentation

Specifies what the object will be aligned relative to on the horizontal axis.

Enumerator
NONE 

The object will not be repositioned along the X axis.

SCREEN_LEFT 

The X coordinate of screenPos will be interpreted as the number of pixels from the left edge of the screen.

SCREEN_RIGHT 

The X coordinate of screenPos will be interpreted as the number of pixels from the right edge of the screen.

SCREEN_CENTER 

The X coordinate of screenPos will be interpreted as the number of pixels from the center of the screen.

OBJECT 

The X coordinate of screenPos will be interpreted as the number of pixels from the object assigned to horizontalObj. i.e. negative values will place this object to the left of horizontalObj, and positive values to the right.

Definition at line 24 of file EZScreenPlacement.cs.

Specifies what the object will be aligned relative to on the vertical axis.

Enumerator
NONE 

The object will not be repositioned along the Y axis.

SCREEN_TOP 

The Y coordinate of screenPos will be interpreted as the number of pixels from the top edge of the screen.

SCREEN_BOTTOM 

The Y coordinate of screenPos will be interpreted as the number of pixels from the bottom edge of the screen.

SCREEN_CENTER 

The Y coordinate of screenPos will be interpreted as the number of pixels from the center of the screen.

OBJECT 

The Y coordinate of screenPos will be interpreted as the number of pixels from the object assigned to verticalObj. i.e. negative values will place this object above verticalObj, and positive values below.

Definition at line 55 of file EZScreenPlacement.cs.

Member Function Documentation

void EZScreenPlacement.PositionOnScreen ( )

Repositions the object using the existing screen-space settings.

Definition at line 374 of file EZScreenPlacement.cs.

void EZScreenPlacement.PositionOnScreen ( int  x,
int  y,
float  depth 
)

Positions the object using screen coordinates, according to the relativity settings stored in relativeToScreen.

Parameters
xThe number of pixels in the X axis relative to the position specified in relativeToScreen.
yThe number of pixels in the Y axis relative to the position specified in relativeToScreen.
depthThe distance the object should be in front of the camera.

Definition at line 411 of file EZScreenPlacement.cs.

void EZScreenPlacement.PositionOnScreen ( Vector3  pos)

Positions the object using screen coordinates, according to the relativity settings stored in relativeToScreen.

Parameters
posThe X and Y screen coordinates where the object should be positioned, as well as the Z coordinate which represents the distance in front of the camera.

Definition at line 421 of file EZScreenPlacement.cs.

void EZScreenPlacement.PositionOnScreenRecursively ( )

Positions the object, taking into account any object-relative dependencies, making sure the objects to which this object is relative are correctly positioned before positioning this one.

Definition at line 268 of file EZScreenPlacement.cs.

Vector3 EZScreenPlacement.ScreenPosToLocalPos ( Vector3  screenPos)

Calculates a local position from a given screen or object-relative position, according to the current screen-space settings.

Parameters
screenPosThe screen/object-relative position
Returns
The corresponding position in local space.

Definition at line 289 of file EZScreenPlacement.cs.

Vector3 EZScreenPlacement.ScreenPosToParentPos ( Vector3  screenPos)

Calculates a in the parent's local space from a given screen or object-relative position, according to the current screen-space settings.

Parameters
screenPosThe screen/object-relative position
Returns
The corresponding position in the parent object's local space.

Definition at line 300 of file EZScreenPlacement.cs.

Vector3 EZScreenPlacement.ScreenPosToWorldPos ( Vector3  screenPos)

Calculates the world position from a given screen or object-relative position, according to the current screen-space settings.

Parameters
screenPosThe screen/object-relative position
Returns
The corresponding position in world space.

Definition at line 311 of file EZScreenPlacement.cs.

void EZScreenPlacement.SetCamera ( )

A no-argument version of SetCamera() that simply re-assigns the same camera to the object, forcing it to recalculate all camera-dependent calculations.

Definition at line 453 of file EZScreenPlacement.cs.

void EZScreenPlacement.SetCamera ( Camera  c)

Sets the camera to be used for calculating positions.

Parameters
c

Definition at line 463 of file EZScreenPlacement.cs.

void EZScreenPlacement.UpdateCamera ( )

Updates the object's position based on the currently selected renderCamera.

Definition at line 443 of file EZScreenPlacement.cs.

Member Data Documentation

bool EZScreenPlacement.allowTransformDrag = false

When checked, you can simply use the transform handles in the scene view to roughly position your object in the scene, and the appropriate values will be automatically calculated for Screen Pos based on your other settings. If you're having problems with slight rounding errors making small changes to your Screen Pos coordinate, you should probably uncheck this option. This is particularly likely to happen if your camera is rotated at all.

Definition at line 176 of file EZScreenPlacement.cs.

bool EZScreenPlacement.alwaysRecursive = true

When true, positioning of the object is always done in a recursive fashion. That is, if this object is relative to any other objects, those objects, should they also hold an EZScreenPlacement component, will be positioned before this one.

Definition at line 164 of file EZScreenPlacement.cs.

bool EZScreenPlacement.ignoreZ = false

When set to true, the Z component of Screen Pos will be calculated based upon the distance of the object to the render camera, rather than controlling the distance to the render camera. Enable this option, for example, when you want to preserve parent-relative positioning on the Z-axis.

Definition at line 143 of file EZScreenPlacement.cs.

Transform EZScreenPlacement.relativeObject

The object to which this object is relative. NOTE: Only used if either the vertical or horizontal elements of relativeTo are set to OBJECT (or both).

Definition at line 156 of file EZScreenPlacement.cs.

RelativeTo EZScreenPlacement.relativeTo

Settings object that describes what this object is positioned relative to.

Definition at line 149 of file EZScreenPlacement.cs.

Camera EZScreenPlacement.renderCamera

The camera with which this object should be positioned.

Definition at line 129 of file EZScreenPlacement.cs.

Vector3 EZScreenPlacement.screenPos = Vector3.forward

The position of the object, relative to the screen or other object.

Definition at line 134 of file EZScreenPlacement.cs.

Property Documentation

Camera EZScreenPlacement.RenderCamera
getset

Accessor for the camera that will be used to render this object. Use this to ensure the object is properly configured for the specific camera that will render it.

Definition at line 434 of file EZScreenPlacement.cs.

Vector3 EZScreenPlacement.ScreenCoord
get

Retrieves the screen coordinate of the object's current position.

Definition at line 543 of file EZScreenPlacement.cs.


The documentation for this class was generated from the following file: