1
0
mirror of https://github.com/GeyserMC/GeyserOptionalPack.git synced 2025-12-19 14:59:14 +00:00

Add spectral arrow information

This commit is contained in:
Camotoy
2021-03-04 15:21:45 -05:00
committed by GitHub
parent f9748e3bfb
commit f1a81572de

View File

@@ -104,3 +104,13 @@ In Java Edition, when a shulker is invisible, their "box" will be invisible. In
{ "base": "!(q.is_invisible && q.is_bribed)" }
]
```
### Spectral arrow entities
The glowing effect and the spectral arrow item and entities do not exist on Bedrock Edition. However, as the spectral arrow entity is just a retexture of a normal arrow, so by defining a new texture for the arrow entity and setting a query we can tell Bedrock to replace the texture in the render controller:
```json
"textures": [
"query.is_bribed ? texture.spectral : texture.default"
]
```