mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-08 20:12:11 +00:00
* Refactor some of the code, multiple bug fixes * Fix something stupid * More bug fixes * LOTS OF STUFF * Make the sniper alot stronger and other changes * Prevent Players from respawning in the middle of a match * Fix stupid mistake * Small update * More updates * Remove minimap access.. and downgrade the sniper class
20 lines
852 B
Markdown
20 lines
852 B
Markdown
# Textures API
|
|
|
|
## Usage
|
|
|
|
To use a texture in your mod, find the texture you want by looking at one of
|
|
the files in `/src/texture`, and append its path to `xcompat.textures`.
|
|
|
|
If a texture isn't supported for the current game, xcompat creates a solid
|
|
color texture using texture modifiers as a fallback, ensuring compatibility.
|
|
|
|
## Example
|
|
|
|
| Path | Result in Minetest Game |
|
|
| - | - |
|
|
| xcompat.textures.wool.white | `"wool_white.png"` |
|
|
| xcompat.textures.wood.apple.planks | `"default_wood.png"` |
|
|
| xcompat.textures.wood.jungle.leaves | `"default_jungleleaves.png"` |
|
|
| xcompat.textures.glass.pane | `"default_glass.png"` |
|
|
|
|
For games like Minetest and Mineclonia, see the file `/src/textures/minetest.lua`.
|