From 6c97f5b2d17bcb33b5badddf32ded0702c79c5dd Mon Sep 17 00:00:00 2001 From: 0tickpulse <62788361+0tickpulse@users.noreply.github.com> Date: Sun, 23 Mar 2025 21:01:13 +0800 Subject: [PATCH 1/3] Docs for meglook --- docs/command/meglook.mdx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/command/meglook.mdx diff --git a/docs/command/meglook.mdx b/docs/command/meglook.mdx new file mode 100644 index 0000000..92e2a5a --- /dev/null +++ b/docs/command/meglook.mdx @@ -0,0 +1,32 @@ +--- +sidebar_custom_props: + description: Causes the model look at a location. +--- + +# `meglook` + +```js +meglook [entity:] [/pitch:/head_yaw:/body_yaw:] +``` + +Makes the model look towards the location. +Similar to the [Denizen look command](https://meta.denizenscript.com/Docs/Commands/look). + +## Arguments + +| Argument | Input | Required | Default | Description | +| ------------ | ----------------- | -------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------- | +| entity | EntityTag | yes | | The entity that should look. | + +The following arguments are mutually exclusive; select one of them: + +| Argument | Input | Required | Default | Description | +| ------------ | ----------------- | -------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------- | +| location | LocationTag | yes (if not using pitch/yaw) | | The location to look at. | +| pitch | ElementTag | yes (if not using location) | | The pitch to look with. | +| head_yaw | ElementTag | yes (if not using location) | | The head yaw to look with. | +| body_yaw | ElementTag | yes (if not using location) | | The body yaw to look with. | + +## See Also + +- Command: [`look`](https://meta.denizenscript.com/Docs/Commands/look) From efb3cedaac5e78d0ea4724872873aa68c3f7021a Mon Sep 17 00:00:00 2001 From: 0tickpulse <62788361+0tickpulse@users.noreply.github.com> Date: Mon, 7 Apr 2025 22:53:56 +0800 Subject: [PATCH 2/3] Fix broken font in heading when building --- docs/index.mdx | 2 +- src/css/custom.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/index.mdx b/docs/index.mdx index 72d5f02..1c3d0d1 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -5,7 +5,7 @@ title: Megizen
-# Megizen +# Megizen
diff --git a/src/css/custom.css b/src/css/custom.css index 01bfda9..ca6091a 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -75,3 +75,9 @@ td { font-weight: normal; font-style: normal; } + +.megizenTitle { + font-family: "CA Gingermint", sans-serif; + color: var(--ifm-color-primary); + text-align: center; +} From 5a4140d27294d2951bfebc1bb06bb776a5caa9f3 Mon Sep 17 00:00:00 2001 From: 0tickpulse <62788361+0tickpulse@users.noreply.github.com> Date: Mon, 7 Apr 2025 22:54:57 +0800 Subject: [PATCH 3/3] Revert "Fix broken font in heading when building" This reverts commit efb3cedaac5e78d0ea4724872873aa68c3f7021a. --- docs/index.mdx | 2 +- src/css/custom.css | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/index.mdx b/docs/index.mdx index 1c3d0d1..72d5f02 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -5,7 +5,7 @@ title: Megizen
-# Megizen +# Megizen
diff --git a/src/css/custom.css b/src/css/custom.css index ca6091a..01bfda9 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -75,9 +75,3 @@ td { font-weight: normal; font-style: normal; } - -.megizenTitle { - font-family: "CA Gingermint", sans-serif; - color: var(--ifm-color-primary); - text-align: center; -}