> For the complete documentation index, see [llms.txt](https://anything-world.gitbook.io/anything-world/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://anything-world.gitbook.io/anything-world/unity/documentation/anythingworld-api/requestparameter/rotation.md).

# Rotation

**Declarations**

```csharp
public static RequestParameterOption Rotation(Quaternion quaternionRotation)
```

```csharp
public static RequestParameterOption Rotation(Vector3 eulerRotation)
```

```csharp
public static RequestParameterOption Rotation(int x, int y, int z)
```

**Parameters**

| quaternionRotation | Quaternion rotation to be applied to transform.                           |
| ------------------ | ------------------------------------------------------------------------- |
| eulerRotation      | Euler rotation to be applied to transform.                                |
| x, y, z            | Euler rotations in the X, Y and Z axis that will be applied to transform. |

#### Description

Set rotation of object transform.
