Class WindowPosition
Window position and size data structure.
Implements
Inherited Members
Namespace: Unity.AI.MCP.Editor.Tools.Parameters
Assembly: Unity.AI.MCP.Editor.dll
Syntax
public record WindowPosition : IEquatable<WindowPosition>
Properties
Height
Gets or sets the height of the window.
Declaration
[McpDescription("Height")]
public float Height { get; set; }
Property Value
| Type | Description |
|---|---|
| float |
Width
Gets or sets the width of the window.
Declaration
[McpDescription("Width")]
public float Width { get; set; }
Property Value
| Type | Description |
|---|---|
| float |
X
Gets or sets the X coordinate of the window.
Declaration
[McpDescription("X coordinate")]
public float X { get; set; }
Property Value
| Type | Description |
|---|---|
| float |
Y
Gets or sets the Y coordinate of the window.
Declaration
[McpDescription("Y coordinate")]
public float Y { get; set; }
Property Value
| Type | Description |
|---|---|
| float |