Class DoorLineGrid3D
A simple data class that holds information about a single door line.
Inheritance
System.Object
DoorLineGrid3D
Assembly: cs.temp.dll.dll
Syntax
public class DoorLineGrid3D : IDoorLine
Constructors
DoorLineGrid3D(Vector3Int, Vector3Int, Int32, Int32, DoorHandlerGrid3D, Vector3Int, DoorSocketBase, DoorDirection)
Declaration
public DoorLineGrid3D(Vector3Int from, Vector3Int to, int width, int height, DoorHandlerGrid3D doorHandler, Vector3Int directionVector, DoorSocketBase socket, DoorDirection direction)
Parameters
Properties
Direction | Direction of the door when it comes to entrances/exits.
Each door is undirected by default, meaning it can serve both as an entrance and an exit.
|
DirectionVector | Direction vector of the door.
If you go clockwise on the outline of the room template and assign a direction to each side of polygon,
the direction of the door is equal to the direction of the polygon side to which it belongs.
|
DoorHandler | |
From | The first tile of the door.
|
Height | Width of the door (number of tiles).
|
Socket | Socket of the door, can be null.
|
To | The last tile of the door.
|
Width | Width of the door (number of tiles).
|
Direction
Direction of the door when it comes to entrances/exits.
Each door is undirected by default, meaning it can serve both as an entrance and an exit.
Declaration
public DoorDirection Direction { get; }
Property Value
DirectionVector
Direction vector of the door.
If you go clockwise on the outline of the room template and assign a direction to each side of polygon,
the direction of the door is equal to the direction of the polygon side to which it belongs.
Declaration
public Vector3Int DirectionVector { get; }
Property Value
Type |
Description |
Vector3Int |
|
DoorHandler
Declaration
public DoorHandlerGrid3D DoorHandler { get; }
Property Value
From
The first tile of the door.
Declaration
public Vector3Int From { get; }
Property Value
Type |
Description |
Vector3Int |
|
Height
Width of the door (number of tiles).
Declaration
public int Height { get; }
Property Value
Type |
Description |
System.Int32 |
|
Socket
Socket of the door, can be null.
Declaration
public DoorSocketBase Socket { get; }
Property Value
To
The last tile of the door.
Declaration
public Vector3Int To { get; }
Property Value
Type |
Description |
Vector3Int |
|
Width
Width of the door (number of tiles).
Declaration
public int Width { get; }
Property Value
Type |
Description |
System.Int32 |
|
Methods
Get3DBounds(Boolean) | Computes the bounds of the door in the 3D space.
Mostly used for gizmo purposes.
|
GetFacingDirection() | Gets the facing direction of the door.
"Facing" means the direction that points outside the current room.
|
Get3DBounds(Boolean)
Computes the bounds of the door in the 3D space.
Mostly used for gizmo purposes.
Declaration
public BoundsInt Get3DBounds(bool includeRepeat = true)
Parameters
Type |
Name |
Description |
System.Boolean |
includeRepeat |
|
Returns
Type |
Description |
BoundsInt |
|
GetFacingDirection()
Gets the facing direction of the door.
"Facing" means the direction that points outside the current room.
Declaration
public Vector3Int GetFacingDirection()
Returns
Type |
Description |
Vector3Int |
|
Explicit Interface Implementations
IDoorLine.Length
Declaration
int IDoorLine.Length { get; }
Returns
Type |
Description |
System.Int32 |
|
Implements