File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/routes/docs/[...4]rigs/[...3]controlling-a-rig-instance Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Before we can control a Rig Instance, we need to be able to select it. The follo
21
21
22
22
## Moving and Rotating the Rig Instance
23
23
24
- Similar to how we control normal entities in Minecraft, we can move and rotate Rig Instances using the ` tp ` command.
24
+ Similar to how we control normal entities in Minecraft, we can move and rotate Rig Instances using the ` tp ` or ` rotate ` command.
25
25
26
26
``` rust title=Move a Rig Instance 5 blocks towards positive X | copy
27
27
execute as @ e [type = item_display ,tag = aj . <export_namespace >. root] at @ s run \
@@ -30,7 +30,12 @@ execute as @e[type=item_display,tag=aj.<export_namespace>.root] at @s run \
30
30
31
31
``` rust title=Rotate a Rig Instance 90 degrees | copy
32
32
execute as @ e [type = item_display ,tag = aj . <export_namespace >. root] at @ s run \
33
- tp @ s ~ ~ ~ ~90 ~
33
+ rotate @ s ~90 ~
34
+ ```
35
+
36
+ ``` rust title=Move a Rig Instance 5 blocks upwards and rotate it 90 degrees | copy
37
+ execute as @ e [type = item_display ,tag = aj . <export_namespace >. root] at @ s run \
38
+ tp @ s ~ ~5 ~ ~90 ~
34
39
```
35
40
36
41
## Controlling Animation Playback
You can’t perform that action at this time.
0 commit comments