bc-minecraft-bedrock-command
Version:
A typescript package library that handles commands for minecraft bedrock
660 lines • 42.6 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.camera = void 0;
const parameter_type_1 = require("../../types/parameter-type");
/**The camera command */
exports.camera = [
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'attach to entity', type: parameter_type_1.ParameterType.boolean, required: true },
{ text: 'entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'clear', type: parameter_type_1.ParameterType.keyword, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'detach from entity', type: parameter_type_1.ParameterType.boolean, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fade', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'color', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'red', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
{ text: 'green', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
{ text: 'blue', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fade', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'time', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'fade in seconds', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'hold seconds', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'fade out seconds', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'color', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'red', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
{ text: 'green', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
{ text: 'blue', type: parameter_type_1.ParameterType.integer, required: true, options: { minimum: 0, maximum: 255 } },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fade', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'time', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'fade in seconds', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'hold seconds', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'fade out seconds', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fade', type: parameter_type_1.ParameterType.keyword, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fov clear', type: parameter_type_1.ParameterType.unknown, required: true },
{ text: 'fov ease time', type: parameter_type_1.ParameterType.float, required: false },
{ text: 'fov ease type', type: parameter_type_1.ParameterType.easing, required: false },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'fov set', type: parameter_type_1.ParameterType.unknown, required: true },
{ text: 'fov value', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'fov ease time', type: parameter_type_1.ParameterType.float, required: false },
{ text: 'fov ease type', type: parameter_type_1.ParameterType.easing, required: false },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'remove_target', type: parameter_type_1.ParameterType.keyword, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'default', type: parameter_type_1.ParameterType.keyword, required: false },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'default', type: parameter_type_1.ParameterType.keyword, required: false },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'look at entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'lookAtPosition x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'look at entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'lookAtPosition x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'ease', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'ease time', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'ease type', type: parameter_type_1.ParameterType.easing, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'look at entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'lookAtPosition x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'look at entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'facing', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'lookAtPosition x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'lookAtPosition z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'pos', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'position x', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position y', type: parameter_type_1.ParameterType.coordinate, required: true },
{ text: 'position z', type: parameter_type_1.ParameterType.coordinate, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'rot yaw', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'rot pitch', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'x rot', type: parameter_type_1.ParameterType.rotation, required: true },
{ text: 'y rot', type: parameter_type_1.ParameterType.rotation, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'set', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'preset', type: parameter_type_1.ParameterType.cameraPresets, required: true },
{ text: 'view_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y view offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'entity_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y entity offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z entity offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'target_entity', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'entity', type: parameter_type_1.ParameterType.selector, required: true },
],
},
{
name: 'camera',
documentation: 'Issues a camera instruction',
permission_level: 1,
parameters: [
{ text: 'camera', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'players', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'target_entity', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'entity', type: parameter_type_1.ParameterType.selector, required: true },
{ text: 'target_center_offset', type: parameter_type_1.ParameterType.keyword, required: true },
{ text: 'x target center offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'y target center offset', type: parameter_type_1.ParameterType.float, required: true },
{ text: 'z target center offset', type: parameter_type_1.ParameterType.float, required: true },
],
},
];
//# sourceMappingURL=camera.js.map