Changes
Page history
Revert "added ClearTarget mechanic"
authored
Oct 02, 2025
by
Lxlp
This reverts commit 1f8283a3389908f340de3fcb5bc030ebbd4ae456.
Show whitespace changes
Inline
Side-by-side
skills/mechanics/look.md
0 → 100644
View page @
38502e7a
## Description
Causes the entity to look at its target. Can be used to make cool effects or creepy ones depending on how creative you get with it.
## Attributes
| Attribute | Aliases | Description | Default |
|-----------|-----------|----------------------------------------------------------------------|---------|
| headOnly | ho | Only the mob's head is facing the target | false |
| force | f | Forces the mob to look at the target (even works with no AI) | false |
| forcepaper | fp | Whether to use Paper's method to force the mob to look at the target | false |
| immediately | immediate, i | Immediately causes the mob to turn towards the target with no turning animation. | true |
## Examples
The skill below causes the mob to immediately force it's head to face
the target immediately. Giving it a creepy effect as only the head will
stare for a short bit before the body catches up and turns around as
well.
```
yaml
CreepyStare
:
Skills
:
-
look{headOnly=true;immediately=true} @Target
```
<!--TAGS-->
<!--tag:Movement:Rotation-->