VSE is a companion plugin for Vivecraft, the VR mod for Java Minecraft. VSE is for Spigot servers and adds several enhancements for VR players.
- Vivecraft players will see other Vivecraft players head and arm movements.
- Support for Vivecraft 2-handed archery.
- Assign permission groups for VR players.
- Fixes projectiles and dropped items from VR players.
- Shrinks Creeper explosion radius for VR players from 3 to 1.75m (Configurable)
- Option to limit server to Vivecraft players only.
See the config.yml for all available configuration options.
Download from the Releases page. Please ensure you download the correct version of the plugin as they are not backwards compatible.
Install as you would any other Spigot/Bukkit plugin by placing the jar in the /plugins folder.
VSE provides Spigot metadata on Player
objects so other plugins can provide special support for handed interactions or somesuch. If you aren’t sure what metadata is, check the Spigot documentation. The API supports multiple plugins using the same metadata key, so make sure you filter to our specific plugin name (Vivecraft-Spigot-Extensions
).
Every player has a head and two hands (obviously), each of which have a 6DOF position and rotation. There are also some tertiary values so you can determine how to properly handle a particular player. The full set of available keys is as follows:
Key(s) | Value |
---|---|
head.pos , righthand.pos , lefthand.pos |
Location representing the absolute position in the world of the VR object. Also includes the direction for convenience. |
head.dir , righthand.dir , lefthand.dir |
Vector representing the forward direction of the VR object. This is gimbal locked; if you want up or right vectors, use the rot value below. |
head.rot , righthand.rot , lefthand.rot |
Array of 4 floats, representing a quaternion with the order w,x,y,z . You’ll need a Quaternion class to deal with this properly, but it’s much more flexible than the dir value. Feel free to use the one in this repository. |
seated |
Boolean representing the player is in seated mode. This mode disables hand tracking and places the VR hands to the sides of the head, to allow for keyboard and mouse play in VR. |
height |
Float representing whether the player's calibrated height, which mainly affects how tall they appear to other players. |
activehand |
String representing which hand (left or right) last performed some actions. Currently throwing projectiles such as snowballs. |