Denizen Script Meta Documentation Search


Learn about how Denizen works in The Beginner's Guide.
Showing 8 search results for vivecraft out of 3939 meta-documentation entries...

Partial Name Match Results



ObjectType


NameViveCraftPlayerTag
Prefixvivecraft@
Base TypeElementTag
Identity FormatThe identity format for ViveCraftPlayerTag is the UUID of the relevant player.
DescriptionA ViveCraftPlayerTag represents a player which is in VR.
RequiresDepenizen, ViveCraft
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/objects/vivecraft/ViveCraftPlayerTag.java#L23

Tag


Name<PlayerTag.is_vivecraft>
ReturnsElementTag(Boolean)
DescriptionReturns whether the player is running on VR or not.
Generated Example
- if <player.is_vivecraft>:
    - narrate "it was true!"
- else:
    - narrate "it was false!"
RequiresDepenizen, ViveCraft
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/vivecraft/ViveCraftPlayerProperties.java#L12
Name<PlayerTag.vivecraft>
ReturnsViveCraftPlayerTag
DescriptionReturns the ViveCraftPlayerTag for this player.
Generated Example
- narrate <player.vivecraft>
RequiresDepenizen, ViveCraft
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/properties/vivecraft/ViveCraftPlayerProperties.java#L23
Name<ViveCraftPlayerTag.active_hand>
ReturnsElementTag
DescriptionReturns the active hand of the ViveCraftPlayer. Returns either right or left.
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/objects/vivecraft/ViveCraftPlayerTag.java#L127
Name<ViveCraftPlayerTag.is_seated>
ReturnsElementTag(Boolean)
DescriptionReturns whether the ViveCraftPlayer sits or not.
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/objects/vivecraft/ViveCraftPlayerTag.java#L137
Name<ViveCraftPlayerTag.position[head/left/right]>
ReturnsLocationTag
DescriptionReturns a LocationTag of the given position.
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/objects/vivecraft/ViveCraftPlayerTag.java#L147
Name<ViveCraftPlayerTag.rotation[head/left/right]>
ReturnsQuaternionTag
DescriptionReturns a QuaternionTag of the rotation of the input player part.
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/objects/vivecraft/ViveCraftPlayerTag.java#L176

Semi-Strong Match Results



Command


NameViveMirror
Syntaxvivemirror [<npc>] [mirror:<vivecraftplayer>] (targets:{player}/<player>|...)
Short DescriptionMirrors a ViveCraftPlayers pose to the npc, once.
Full DescriptionMirrors a ViveCraftPlayers pose to the npc, once.

Ideally should run every tick.

Specify a vivecraftplayer that will be mirrored to the NPC.
Optionally, specify a list of targets to show the NPCs pose to (targets must be in VR to see the effect).
Related TagsNone
Usage Example
# Use to mirror the current players pose.
- vivemirror <npc> mirror:<player.vivecraft>
Usage Example
# Use to show your dancing skills to other players.
- vivemirror <npc> mirror:<player.vivecraft> targets:<server.online_players>
GroupDepenizen
RequiresDepenizen, ViveCraft
Sourcehttps://github.com/DenizenScript/Depenizen/blob/master/src/main/java/com/denizenscript/depenizen/bukkit/commands/vivecraft/ViveMirrorCommand.java#L28