# Ballistic Surface

## Public Variables

| Type        | Name                                    | Description                                                                                        | Access     |
| ----------- | --------------------------------------- | -------------------------------------------------------------------------------------------------- | ---------- |
| **bool**    | `m_penetrationEnabled`                  | Enables/disables penetration.                                                                      | Read-Write |
| **float**   | `m_penetrationEnegryConsumptionPercent` | Percent in \[0,1] range defining how much of the bullet's energy will be consumed.                 | Read-Write |
| **float**   | `m_minEnergyToPenetrateInMetrics`       | Minimum energy to penetrate in metric units (Joules).                                              | Read-Write |
| **Vector2** | `m_penetrationDeflectionAngles`         | Penetrated bullet will deflect it's trajectory on x,y,z axes between this vector's x and y values. | Read-Write |
| **bool**    | `m_ricochetEnabled`                     | Enables/disables ricochet.                                                                         | Read-Write |
| **float**   | `m_ricochetEnegryConsumptionPercent`    | Percent in \[0,1] range defining how much of the bullet's energy will be consumed.                 | Read-Write |
| **float**   | `m_minEnergyToRicochetInMetrics`        | Minimum energy to ricochet in metric units (Joules).                                               | Read-Write |
| **Vector2** | `m_ricochetDeflectionAngles`            | Ricocheted bullet will deflect it's trajectory on x,y,z axes between this vector's x and y values. | Read-Write |


---

# 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/api/ballistic-surface.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.
