> For the complete documentation index, see [llms.txt](https://docs.infimagames.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infimagames.com/product/low-poly-shooter-pack/guides-and-faq/faq.md).

# FAQ

Here you will find answers to some of the most common LPSP related questions!

***

### Settings & Customization

<details>

<summary><strong>How can I increase the player's movement speed?</strong></summary>

You can adjust the movement speed values in the **Settings\_Movement** data table located in the **Data/Weapons/Settings** folder.&#x20;

This table contains all the relevant data for movement speeds.

</details>

<details>

<summary><strong>How can I make my Character take damage?</strong></summary>

To make your character take damage, you can use the functionality from inside the **BP\_LPSP\_Damageable** Blueprint by copying and pasting it into your blueprint.&#x20;

This will enable your character blueprint to take damage from projectiles and other sources.

</details>

<details>

<summary><strong>How can I modify the weapon sway/lag?</strong></summary>

To adjust the amount of sway (also known as "**Lag**" in the asset), navigate to:

**LowPolyShooterPack/Data/Weapons/Animations/DT\_LPSP\_WEP\_Settings\_Animation.DT\_LPSP\_WEP\_Settings\_Animation**' data table.&#x20;

Modify the variables that include "**Lag**" in their name.&#x20;

There is one for each state the character can be in, so you can make more specific adjustments.

</details>

<details>

<summary><strong>Where is the value for bullet point damage indicated?</strong></summary>

To adjust the damage, modify the projectile blueprints located in the **InfimaGames/LowPolyShooterPack/Usable/Projectiles/** folder.&#x20;

Each projectile blueprint contains a component called **Utility Explosion Component** that holds the settings and values for the damage-related aspects.

</details>

<details>

<summary><strong>How can I enable simultaneous melee and sprinting for my character?</strong></summary>

To enable your player character to run or sprint while performing a melee attack, you need to modify the melee attack's abilities.&#x20;

Follow these steps:

* Go to the **InfimaGames/LowPolyShooterPack/Data/Weapons/DT\_LPSP\_CH\_Abilities.DT\_LPSP\_CH\_Abilities** file.

<div align="left"><figure><img src="/files/VdMav43QBBMBTqUopqkl" alt=""><figcaption></figcaption></figure></div>

* Open the file and click on any row.

<div align="left"><figure><img src="/files/Oh7kmurRcZn7vruGBtii" alt=""><figcaption></figcaption></figure></div>

* Find the **Ability Knife** variable and open it to see its different variables.

<figure><img src="/files/7xdfiuaQhZcN6daf2Ex1" alt=""><figcaption></figcaption></figure>

* Click on Edit All next to Tags Removed. This will allow you to remove the **Character.Abilities.Allowed.Run** tag, which will enable the character to run while performing a melee attack.

<figure><img src="/files/uZUHXBNphgL3QyxFD4Ri" alt=""><figcaption></figcaption></figure>

<div align="left"><figure><img src="/files/7NoaT44mSGSvUbUXM6S1" alt=""><figcaption></figcaption></figure></div>

* If you want this to work for all weapons, make sure to do this for all rows in that data table. And that’s basically it!

</details>

<details>

<summary><strong>How do I  make the third-person character always face forward while moving?</strong></summary>

Here's how to make the third-person character always face forward while moving around, regardless of whether the player is aiming or not.

* Go to **LowPolyShooterPack/Core/Characters** and open **BPSC\_LPSP\_TP\_Looks**.

<figure><img src="/files/IEWMcsjECeEL0Kf6KOdM" alt=""><figcaption></figcaption></figure>

* Find the **Update Root Yaw Moving** function.

<figure><img src="/files/sO4SU2ILm7W9ww34GZQK" alt=""><figcaption></figcaption></figure>

* Modify the function like the following:

<figure><img src="/files/PJTyBwgUmnRSvBhHq2e8" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/ZdImNi8B1iabvben6Ed6" alt=""><figcaption></figcaption></figure>

</details>

<details>

<summary><strong>How can I improve the firing animations? Where is the logic for the added bounce and motion in the firing animations, and how can I replicate it?</strong></summary>

Recoil is a separate procedural aspect of the game engine, and is not part of the animation.&#x20;

However, you can modify the visual recoil in this file: **InfimaGames/LowPolyShooterPack/Data/Weapons/Settings/DT\_LPSP\_WEP\_Settings.uasset.**&#x20;

Specifically, you can adjust the **Recoil Properties** variable.

</details>

<details>

<summary><strong>Is there a blueprint for a knife that can be equipped?</strong></summary>

We don't have a blueprint for a weapon knife.&#x20;

However, we do have a blueprint for the prop itself, which is simply placed on the map and has no functionality.&#x20;

All the logic for knife damage can be found in the **Anim Notify Blueprint** located at **InfimaGames/LowPolyShooterPack/Core/Notifies/BP\_LPSP\_AN\_Melee.uasset**.

</details>

### Technical&#x20;

<details>

<summary><strong>Why is the gun mesh clipping through the camera in my project, and how do I fix it?</strong></summary>

The issue you're experiencing might be related to your **Project Settings**.&#x20;

Check the "**Near Clip Plane**" setting first, changing the value to be lower than the default usually fixes camera clipping.

If that's not the issue, try modifying the **Separate View Alpha** parameter in the **MaterialParameterCollection'/Game/InfimaGames/AnimatedLowPolyWeapons/Materials/MPC\_FOV.MPC\_FOV**' file in your project until it resolves the issue (setting the value to **1.0** usually works).

</details>

<details>

<summary><strong>Why does the player interface (HUD) appear on the main menu before the game starts?</strong></summary>

This is likely due to the default game mode being played. This is because no game mode has been assigned, so the project automatically uses our default mode.

</details>

<details>

<summary><strong>How does the weapon sway in the asset work?</strong></summary>

**Our weapon sway is achieved by using spring interpolation and tracking the change in mouse position over frames.**&#x20;

Each frame, we add the result of the player's mouse and keyboard movements (after passing them through spring interpolation) to the location of the ik\_hand\_gun bone.

</details>

<details>

<summary><strong>Is the character rigged to the Epic Mannequin skeleton?</strong></summary>

Yes, it's rigged to the UE4 Mannequin skeleton.

</details>

<details>

<summary><strong>The source files are included in the asset, but they don't seem to contain the animations, what's up with that?</strong></summary>

The original animations were made using an older custom rig and had to be "converted" manually in order to work with the&#x20;Mannequin rig. This unfortunately made the animations hard to edit and not very useful to include in&#x20;the source files.

</details>

<details>

<summary><strong>How to redirect animations from LPSP-LPAMG?</strong></summary>

You can use the "retarget to skeleton" option that appears when you right-click on an animation. If you're using UE5, there are some tutorials available, as it's a bit more complicated. However, there's nothing specific about redirecting animations from our assets compared to any other animation in the engine.

</details>

### Project Info

<details>

<summary><strong>What naming convention did you use for the project?</strong></summary>

We base our naming conventions heavily off *Michael Allar's Style Guide*. We did this because it is currently one of, if not the most, popular style guides for the Unreal Engine, and it makes sense once you've read through it.

**Check it out here:** <https://github.com/Allar/ue5-style-guide>

</details>

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.infimagames.com/product/low-poly-shooter-pack/guides-and-faq/faq.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.
