# Wind Vector

The wind vector affects how the bullet travels, which can be set in the Environment Properties asset. Select the Environment Properties asset we have created for this tutorial (it is referenced in Sniper and Ballistics object), then change the **wind vector** to **90, 0,0.**

![Wind vector set to 90, 0, 0](/files/-MaO1PFBGZbr7elsDE0n)

If we play the game and fire now, we will see the bullet landing to the right of our aim center.

![Bullet hitting to the right of our aim center, also dropping.](/files/-MaO1f2KBRqWa9SZ0_fS)

If we set the zero distance to **500** as shown in the previous section, we will not see any bullet drop, but the wind will still affect the bullet. It is possible to dynamically change the wind vector by reaching to the **SniperAndBallisticsSystem.instance.GlobalEnvironmentProperties.WindVector** value. An example of this can be found under the folder **InanEvin>Realistic Sniper and Ballistics>src>Utility,** see the **WindRandomizer.cs** script.

Setting zero distances compensates for the bullet drop, and a scope system shall compensate for the wind vector. Ideally, we can write a scope system that will show us where the bullet will land depending on the current wind vector. The Dynamic Scope System in RSB does exactly this, which will be explained in the later sections.

{% hint style="danger" %}
Let's **reset** the wind vector to **0,0,0** before continuing the sections.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rsb.inanevin.com/getting-started/wind-vector.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
