From f1a81572de22d92b01124ad112b861c534469846 Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Thu, 4 Mar 2021 15:21:45 -0500 Subject: [PATCH] Add spectral arrow information --- developer_documentation.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/developer_documentation.md b/developer_documentation.md index b175297..a87bc6c 100644 --- a/developer_documentation.md +++ b/developer_documentation.md @@ -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" +] +```