Table of Contents

Class SceneBoundaryDetails

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

Serializable class containing details for a scene boundary, including origin, size, and point containment logic.

[Serializable]
public class SceneBoundaryDetails
Inheritance
SceneBoundaryDetails
Inherited Members

Fields

BoundaryOrigin

The origin (center) of the boundary in world space.

public Vector3 BoundaryOrigin

Field Value

Vector3

BoundarySize

The size (width, height, depth) of the boundary.

public Vector3 BoundarySize

Field Value

Vector3

Methods

ContainsPoint(Vector3)

Checks if a given point is contained within the boundary.

public bool ContainsPoint(Vector3 point)

Parameters

point Vector3

The point to check.

Returns

bool

True if the point is inside the boundary, false otherwise.