├── .github └── ISSUE_TEMPLATE │ └── script-bug.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── assets │ └── features │ │ └── dynamic-properties │ │ └── item-properties.png ├── features │ ├── custom-components.md │ ├── dynamic-properties.md │ ├── index.md │ ├── script-eval.md │ └── secrets-and-variables.md └── meta │ ├── cdn-links.md │ ├── index.md │ └── resource-links.md ├── examples ├── @minecraft │ ├── common │ │ └── NumberRange │ │ │ └── dimensionHeightRange.js │ ├── debug-utilities │ │ ├── DebugArrow │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── headLength │ │ │ │ └── README.md │ │ │ │ ├── headRadius │ │ │ │ └── README.md │ │ │ │ └── headSegments │ │ │ │ └── README.md │ │ ├── DebugBox │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── bound │ │ │ │ └── README.md │ │ ├── DebugCircle │ │ │ └── constructor │ │ ├── DebugDrawer │ │ │ └── prototype │ │ │ │ ├── addShape │ │ │ │ └── README.md │ │ │ │ ├── removeAll │ │ │ │ └── README.md │ │ │ │ └── removeShape │ │ │ │ └── README.md │ │ ├── DebugLine │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── endLocation │ │ │ │ └── README.md │ │ ├── DebugShape │ │ │ └── prototype │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ ├── hasDuration │ │ │ │ └── README.md │ │ │ │ ├── location │ │ │ │ └── README.md │ │ │ │ ├── remove │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ ├── scale │ │ │ │ └── README.md │ │ │ │ ├── timeLeft │ │ │ │ └── README.md │ │ │ │ └── totalTimeLeft │ │ │ │ └── README.md │ │ ├── DebugSphere │ │ │ └── constructor │ │ ├── DebugText │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── text │ │ │ │ └── README.md │ │ ├── PluginStats │ │ │ └── README.md │ │ ├── RuntimeStats │ │ │ └── getStats.ts │ │ └── handleCounts │ │ │ └── README.md │ ├── diagnostics │ │ ├── Sentry │ │ │ └── prototype │ │ │ │ ├── addBreadcrumb │ │ │ │ └── README.md │ │ │ │ ├── addTag │ │ │ │ └── README.md │ │ │ │ ├── getTags │ │ │ │ └── README.md │ │ │ │ ├── init │ │ │ │ └── README.md │ │ │ │ └── removeTag │ │ │ │ └── README.md │ │ └── SentryOptions │ │ │ └── README.md │ ├── server-admin │ │ ├── AdminBeforeEvents │ │ │ └── prototype │ │ │ │ └── asyncPlayerJoin │ │ │ │ └── README.md │ │ ├── AsyncPlayerJoinBeforeEvent │ │ │ └── prototype │ │ │ │ ├── disconnect │ │ │ │ └── README.md │ │ │ │ ├── isValid │ │ │ │ └── README.md │ │ │ │ ├── name │ │ │ │ └── README.md │ │ │ │ └── persistentId │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── AsyncPlayerJoinBeforeEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── SecretString │ │ │ └── constructor │ │ ├── ServerSecrets │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ └── names │ │ │ │ └── README.md │ │ ├── ServerVariables │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ └── names │ │ │ │ └── README.md │ │ ├── TransferPlayerIpPortOptions │ │ │ └── README.md │ │ └── TransferPlayerNetherNetOptions │ │ │ └── README.md │ ├── server-editor │ │ ├── ActionManager │ │ │ └── README.md │ │ ├── BedrockEventSubscriptionCache │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── subscribeToBedrockEvent │ │ │ │ └── README.md │ │ │ │ └── teardown │ │ │ │ └── README.md │ │ ├── BlockIdentifierListObservableValidator │ │ │ └── prototype │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── BlockIdentifierObservableValidator │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── _defaultValue │ │ │ │ └── README.md │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── BlockMaskList │ │ │ └── README.md │ │ ├── BlockPalette │ │ │ └── prototype │ │ │ │ ├── getItem │ │ │ │ └── README.md │ │ │ │ ├── removeItemAt │ │ │ │ └── README.md │ │ │ │ ├── removeItems │ │ │ │ └── README.md │ │ │ │ └── setItem │ │ │ │ └── README.md │ │ ├── BlockPaletteManager │ │ │ └── prototype │ │ │ │ ├── addOrReplacePalette │ │ │ │ └── README.md │ │ │ │ ├── getPalette │ │ │ │ └── README.md │ │ │ │ ├── getPaletteIdList │ │ │ │ └── README.md │ │ │ │ ├── getPaletteItem │ │ │ │ └── README.md │ │ │ │ ├── getPrimaryPalette │ │ │ │ └── README.md │ │ │ │ ├── getSelectedBlockType │ │ │ │ └── README.md │ │ │ │ ├── getSelectedItem │ │ │ │ └── README.md │ │ │ │ ├── removePalette │ │ │ │ └── README.md │ │ │ │ ├── setPaletteItem │ │ │ │ └── README.md │ │ │ │ ├── setPrimaryPalette │ │ │ │ └── README.md │ │ │ │ └── setSelectedItem │ │ │ │ └── README.md │ │ ├── BlockUtilities │ │ │ └── prototype │ │ │ │ ├── fillVolume │ │ │ │ └── README.md │ │ │ │ ├── findObscuredBlocksWithinVolume │ │ │ │ └── README.md │ │ │ │ ├── getContiguousSelection │ │ │ │ └── README.md │ │ │ │ ├── getDimensionLocationBoundingBox │ │ │ │ └── README.md │ │ │ │ ├── getDimensionMaxLocation │ │ │ │ └── README.md │ │ │ │ ├── getDimensionMinLocation │ │ │ │ └── README.md │ │ │ │ ├── getFacePreviewSelection │ │ │ │ └── README.md │ │ │ │ ├── getMaxWorldLocation │ │ │ │ └── README.md │ │ │ │ ├── getMinWorldLocation │ │ │ │ └── README.md │ │ │ │ ├── isLocationInWorld │ │ │ │ └── README.md │ │ │ │ ├── isLocationInsideCurrentDimensionBounds │ │ │ │ └── README.md │ │ │ │ ├── quickExtrude │ │ │ │ └── README.md │ │ │ │ ├── shrinkWrapVolume │ │ │ │ └── README.md │ │ │ │ └── trimVolumeToFitContents │ │ │ │ └── README.md │ │ ├── BrushPipelineOperation │ │ │ └── README.md │ │ ├── BrushShape │ │ │ ├── README.md │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── BrushShapeManager │ │ │ └── prototype │ │ │ │ ├── activateBrushShape │ │ │ │ └── README.md │ │ │ │ ├── activateBrushTool │ │ │ │ └── README.md │ │ │ │ ├── activeBrushShape │ │ │ │ └── README.md │ │ │ │ ├── activeBrushVolume │ │ │ │ └── README.md │ │ │ │ ├── beginPainting │ │ │ │ └── README.md │ │ │ │ ├── brushShapeList │ │ │ │ └── README.md │ │ │ │ ├── brushShapeNames │ │ │ │ └── README.md │ │ │ │ ├── deactivateBrushTool │ │ │ │ └── README.md │ │ │ │ ├── endPainting │ │ │ │ └── README.md │ │ │ │ ├── getBrushShapeOffset │ │ │ │ └── README.md │ │ │ │ ├── getBrushVolume │ │ │ │ └── README.md │ │ │ │ ├── getSettingsUIElements │ │ │ │ └── README.md │ │ │ │ ├── isBrushPaintBusy │ │ │ │ └── README.md │ │ │ │ ├── registerBrushShape │ │ │ │ └── README.md │ │ │ │ ├── setBlockPaletteOverride │ │ │ │ └── README.md │ │ │ │ ├── setBrushMask │ │ │ │ └── README.md │ │ │ │ ├── setBrushShape │ │ │ │ └── README.md │ │ │ │ ├── setBrushShapeOffset │ │ │ │ └── README.md │ │ │ │ ├── setBrushShapeVisible │ │ │ │ └── README.md │ │ │ │ ├── setFlattenHeight │ │ │ │ └── README.md │ │ │ │ ├── setFlattenRadius │ │ │ │ └── README.md │ │ │ │ ├── setSmoothStrength │ │ │ │ └── README.md │ │ │ │ ├── setTerrainStrength │ │ │ │ └── README.md │ │ │ │ ├── singlePaint │ │ │ │ └── README.md │ │ │ │ ├── switchBrushPaintMode │ │ │ │ └── README.md │ │ │ │ ├── switchBrushShape │ │ │ │ └── README.md │ │ │ │ └── uiSettingValueChanged │ │ │ │ └── README.md │ │ ├── BuiltInUIManager │ │ │ └── README.md │ │ ├── ClipboardChangeAfterEvent │ │ │ └── prototype │ │ │ │ ├── isPrimary │ │ │ │ └── README.md │ │ │ │ └── itemId │ │ │ │ └── README.md │ │ ├── ClipboardChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── ClipboardItem │ │ │ └── prototype │ │ │ │ ├── clear │ │ │ │ └── README.md │ │ │ │ ├── getPredictedWriteAsCompoundBlockVolume │ │ │ │ └── README.md │ │ │ │ ├── getPredictedWriteAsSelection │ │ │ │ └── README.md │ │ │ │ ├── getPredictedWriteVolume │ │ │ │ └── README.md │ │ │ │ ├── getSize │ │ │ │ └── README.md │ │ │ │ ├── id │ │ │ │ └── README.md │ │ │ │ ├── isEmpty │ │ │ │ └── README.md │ │ │ │ ├── readFromSelection │ │ │ │ └── README.md │ │ │ │ ├── readFromStructure │ │ │ │ └── README.md │ │ │ │ ├── readFromWorld │ │ │ │ └── README.md │ │ │ │ ├── size │ │ │ │ └── README.md │ │ │ │ └── writeToWorld │ │ │ │ └── README.md │ │ ├── ClipboardManager │ │ │ └── prototype │ │ │ │ ├── clipboard │ │ │ │ └── README.md │ │ │ │ └── create │ │ │ │ └── README.md │ │ ├── ClipboardWriteOptions │ │ │ └── README.md │ │ ├── ConeBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── ContiguousSelectionProperties │ │ │ └── README.md │ │ ├── CuboidBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── CurrentThemeChangeAfterEvent │ │ │ └── prototype │ │ │ │ ├── id │ │ │ │ └── README.md │ │ │ │ └── name │ │ │ │ └── README.md │ │ ├── CurrentThemeChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── CurrentThemeColorChangeAfterEvent │ │ │ └── prototype │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── colorKey │ │ │ │ └── README.md │ │ ├── CurrentThemeColorChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── Cursor │ │ │ └── prototype │ │ │ │ ├── attachClipboardItem │ │ │ │ └── README.md │ │ │ │ ├── clearAttachment │ │ │ │ └── README.md │ │ │ │ ├── faceDirection │ │ │ │ └── README.md │ │ │ │ ├── getAttachmentProperties │ │ │ │ └── README.md │ │ │ │ ├── getPosition │ │ │ │ └── README.md │ │ │ │ ├── getProperties │ │ │ │ └── README.md │ │ │ │ ├── getRay │ │ │ │ └── README.md │ │ │ │ ├── hide │ │ │ │ └── README.md │ │ │ │ ├── isVisible │ │ │ │ └── README.md │ │ │ │ ├── moveBy │ │ │ │ └── README.md │ │ │ │ ├── resetToDefaultState │ │ │ │ └── README.md │ │ │ │ ├── setAttachmentProperties │ │ │ │ └── README.md │ │ │ │ ├── setProperties │ │ │ │ └── README.md │ │ │ │ └── show │ │ │ │ └── README.md │ │ ├── CursorAttachmentProperties │ │ │ └── README.md │ │ ├── CursorAttachmentPropertiesChangeAfterEvent │ │ │ └── prototype │ │ │ │ └── properties │ │ │ │ └── README.md │ │ ├── CursorAttachmentPropertyChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── CursorPosition │ │ │ └── README.md │ │ ├── CursorProperties │ │ │ └── README.md │ │ ├── CursorPropertiesChangeAfterEvent │ │ │ └── prototype │ │ │ │ ├── position │ │ │ │ └── README.md │ │ │ │ └── properties │ │ │ │ └── README.md │ │ ├── CursorPropertyChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── CursorRay │ │ │ └── README.md │ │ ├── CustomWidget │ │ │ └── prototype │ │ │ │ ├── getText │ │ │ │ └── README.md │ │ │ │ ├── location │ │ │ │ └── README.md │ │ │ │ ├── moveBy │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ ├── setText │ │ │ │ └── README.md │ │ │ │ └── showTextOnlyWhenSelected │ │ │ │ └── README.md │ │ ├── CustomWidgetCreateOptions │ │ │ └── README.md │ │ ├── CustomWidgetMoveEventData │ │ │ └── prototype │ │ │ │ ├── group │ │ │ │ └── README.md │ │ │ │ ├── location │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ └── widget │ │ │ │ └── README.md │ │ ├── CylinderBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── EditorConstants │ │ │ └── prototype │ │ │ │ ├── maxSelectionSize │ │ │ │ └── README.md │ │ │ │ ├── maxStructureOffset │ │ │ │ └── README.md │ │ │ │ └── minStructureOffset │ │ │ │ └── README.md │ │ ├── EditorStructure │ │ │ └── README.md │ │ ├── EditorStructureManager │ │ │ └── prototype │ │ │ │ ├── createFromClipboardItem │ │ │ │ └── README.md │ │ │ │ ├── getExistingTags │ │ │ │ └── README.md │ │ │ │ ├── loadStructure │ │ │ │ └── README.md │ │ │ │ ├── saveStructure │ │ │ │ └── README.md │ │ │ │ └── searchStructures │ │ │ │ └── README.md │ │ ├── EditorStructureSearchOptions │ │ │ └── README.md │ │ ├── EllipsoidBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── EntityIdentifierObservableValidator │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── _defaultValue │ │ │ │ └── README.md │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── EventSink │ │ │ └── README.md │ │ ├── ExportManager │ │ │ └── prototype │ │ │ │ ├── beginExportProject │ │ │ │ └── README.md │ │ │ │ ├── canExportProject │ │ │ │ └── README.md │ │ │ │ ├── getGameOptions │ │ │ │ └── README.md │ │ │ │ └── getGameVersion │ │ │ │ └── README.md │ │ ├── Extension │ │ │ └── prototype │ │ │ │ ├── defaultToolGroupId │ │ │ │ └── README.md │ │ │ │ ├── description │ │ │ │ └── README.md │ │ │ │ ├── name │ │ │ │ └── README.md │ │ │ │ └── notes │ │ │ │ └── README.md │ │ ├── ExtensionContext │ │ │ └── prototype │ │ │ │ ├── afterEvents │ │ │ │ └── README.md │ │ │ │ ├── blockPalette │ │ │ │ └── README.md │ │ │ │ ├── blockUtilities │ │ │ │ └── README.md │ │ │ │ ├── brushShapeManager │ │ │ │ └── README.md │ │ │ │ ├── clipboardManager │ │ │ │ └── README.md │ │ │ │ ├── cursor │ │ │ │ └── README.md │ │ │ │ ├── exportManager │ │ │ │ └── README.md │ │ │ │ ├── extensionInfo │ │ │ │ └── README.md │ │ │ │ ├── player │ │ │ │ └── README.md │ │ │ │ ├── playtest │ │ │ │ └── README.md │ │ │ │ ├── selectionManager │ │ │ │ └── README.md │ │ │ │ ├── settings │ │ │ │ └── README.md │ │ │ │ ├── structureManager │ │ │ │ └── README.md │ │ │ │ ├── transactionManager │ │ │ │ └── README.md │ │ │ │ └── widgetManager │ │ │ │ └── README.md │ │ ├── ExtensionContextAfterEvents │ │ │ └── prototype │ │ │ │ ├── SelectionChange │ │ │ │ └── README.md │ │ │ │ ├── clipboardChange │ │ │ │ └── README.md │ │ │ │ ├── currentThemeChange │ │ │ │ └── README.md │ │ │ │ ├── currentThemeColorChange │ │ │ │ └── README.md │ │ │ │ ├── cursorAttachmentPropertyChange │ │ │ │ └── README.md │ │ │ │ ├── cursorPropertyChange │ │ │ │ └── README.md │ │ │ │ ├── modeChange │ │ │ │ └── README.md │ │ │ │ └── primarySelectionChange │ │ │ │ └── README.md │ │ ├── ExtensionOptionalParameters │ │ │ └── README.md │ │ ├── GameOptions │ │ │ └── README.md │ │ ├── GraphicsSettings │ │ │ └── prototype │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ ├── getAll │ │ │ │ └── README.md │ │ │ │ ├── set │ │ │ │ └── README.md │ │ │ │ └── setAll │ │ │ │ └── README.md │ │ ├── IActionBar │ │ │ └── README.md │ │ ├── IActionBarItem │ │ │ └── README.md │ │ ├── IActionBarItemCreationParams │ │ │ └── README.md │ │ ├── IBlockListPropertyItem │ │ │ └── README.md │ │ ├── IBlockListPropertyItemOptions │ │ │ └── README.md │ │ ├── IBlockPaletteItem │ │ │ └── prototype │ │ │ │ ├── getBlock │ │ │ │ └── README.md │ │ │ │ ├── getDisplayName │ │ │ │ └── README.md │ │ │ │ ├── getType │ │ │ │ └── README.md │ │ │ │ └── setBlock │ │ │ │ └── README.md │ │ ├── IBlockTableEntryInfo │ │ │ └── README.md │ │ ├── IBlockTablePropertyItem │ │ │ └── README.md │ │ ├── IBlockTablePropertyItemOptions │ │ │ └── README.md │ │ ├── IBoolPropertyItem │ │ │ └── README.md │ │ ├── IBoolPropertyItemOptions │ │ │ └── README.md │ │ ├── IButtonPanePropertyItem │ │ │ └── README.md │ │ ├── IButtonPanePropertyItemOptions │ │ │ └── README.md │ │ ├── IButtonPropertyItem │ │ │ └── README.md │ │ ├── IButtonPropertyItemOptions │ │ │ └── README.md │ │ ├── IColorPickerPropertyItem │ │ │ └── README.md │ │ ├── IColorPickerPropertyItemOptions │ │ │ └── README.md │ │ ├── IColorTimelinePropertyItem │ │ │ └── README.md │ │ ├── IColorTimelinePropertyItemEntry │ │ │ └── README.md │ │ ├── IColorTimelinePropertyItemOptions │ │ │ └── README.md │ │ ├── IComboBoxPropertyItem │ │ │ └── README.md │ │ ├── IComboBoxPropertyItemOptions │ │ │ └── README.md │ │ ├── IDataTablePropertyItem │ │ │ └── README.md │ │ ├── IDataTablePropertyItemEntry │ │ │ └── README.md │ │ ├── IDataTablePropertyItemOptions │ │ │ └── README.md │ │ ├── IDisposable │ │ │ └── README.md │ │ ├── IDropdownItem │ │ │ └── README.md │ │ ├── IDropdownPropertyItem │ │ │ └── README.md │ │ ├── IDropdownPropertyItemEntry │ │ │ └── README.md │ │ ├── IDropdownPropertyItemMixIn │ │ │ └── README.md │ │ ├── IDropdownPropertyItemOptions │ │ │ └── README.md │ │ ├── IEventToken │ │ │ └── README.md │ │ ├── IGlobalInputManager │ │ │ └── README.md │ │ ├── IImagePropertyItem │ │ │ └── README.md │ │ ├── IImagePropertyItemOptions │ │ │ └── README.md │ │ ├── ILinkPropertyItem │ │ │ └── README.md │ │ ├── ILinkPropertyItemOptions │ │ │ └── README.md │ │ ├── IMenu │ │ │ └── README.md │ │ ├── IMenuContainer │ │ │ └── README.md │ │ ├── IMenuCreationParams │ │ │ └── README.md │ │ ├── IModalControlPane │ │ │ └── README.md │ │ ├── IModalOverlayPane │ │ │ └── README.md │ │ ├── IModalOverlayPaneOptions │ │ │ └── README.md │ │ ├── IModalTool │ │ │ └── README.md │ │ ├── IModalToolContainer │ │ │ └── README.md │ │ ├── INumberPropertyItem │ │ │ └── README.md │ │ ├── INumberPropertyItemOptions │ │ │ └── README.md │ │ ├── INumberTimelinePropertyItem │ │ │ └── README.md │ │ ├── INumberTimelinePropertyItemEntry │ │ │ └── README.md │ │ ├── INumberTimelinePropertyItemOptions │ │ │ └── README.md │ │ ├── IObservable │ │ │ └── README.md │ │ ├── IPane │ │ │ └── README.md │ │ ├── IPlayerLogger │ │ │ └── README.md │ │ ├── IProgressIndicatorPropertyItem │ │ │ └── README.md │ │ ├── IProgressIndicatorPropertyItemOptions │ │ │ └── README.md │ │ ├── IPropertyItem │ │ │ └── README.md │ │ ├── IPropertyItemBase │ │ │ └── README.md │ │ ├── IPropertyItemOptions │ │ │ └── README.md │ │ ├── IPropertyItemOptionsBase │ │ │ └── README.md │ │ ├── IPropertyItemOptionsBlockList │ │ │ └── README.md │ │ ├── IPropertyItemOptionsBool │ │ │ └── README.md │ │ ├── IPropertyItemOptionsColorPicker │ │ │ └── README.md │ │ ├── IPropertyItemOptionsColorPicker_deprecated │ │ │ └── README.md │ │ ├── IPropertyItemOptionsDataPicker │ │ │ └── README.md │ │ ├── IPropertyItemOptionsDropdown │ │ │ └── README.md │ │ ├── IPropertyItemOptionsNumber │ │ │ └── README.md │ │ ├── IPropertyItemOptionsSubPane │ │ │ └── README.md │ │ ├── IPropertyItemOptionsTable │ │ │ └── README.md │ │ ├── IPropertyItemOptionsVector3 │ │ │ └── README.md │ │ ├── IPropertyPane │ │ │ └── README.md │ │ ├── IPropertyPaneOptions │ │ │ └── README.md │ │ ├── IPropertyTableCellItem │ │ │ └── README.md │ │ ├── IRegisterExtensionOptionalParameters │ │ │ └── README.md │ │ ├── IRegisteredKeyBinding │ │ │ └── README.md │ │ ├── IRootPropertyPane │ │ │ └── README.md │ │ ├── IRootPropertyPaneHeaderAction │ │ │ └── README.md │ │ ├── IRootPropertyPaneOptions │ │ │ └── README.md │ │ ├── ISimpleTool │ │ │ └── README.md │ │ ├── ISimpleToolKeyBinding │ │ │ └── README.md │ │ ├── ISimpleToolOptions │ │ │ └── README.md │ │ ├── ISimpleToolPaneComponent │ │ │ └── README.md │ │ ├── ISimpleToolPaneOptions │ │ │ └── README.md │ │ ├── ISimpleToolRailComponent │ │ │ └── README.md │ │ ├── ISimpleToolRailOptions │ │ │ └── README.md │ │ ├── ISimpleToolStatusBarComponent │ │ │ └── README.md │ │ ├── ISimpleToolStatusBarOptions │ │ │ └── README.md │ │ ├── IStatusBar │ │ │ └── README.md │ │ ├── IStatusBarItem │ │ │ └── README.md │ │ ├── IStatusBarItemCreationParams │ │ │ └── README.md │ │ ├── IStringPropertyItem │ │ │ └── README.md │ │ ├── IStringPropertyItemOptions │ │ │ └── README.md │ │ ├── ISubPanePropertyItem │ │ │ └── README.md │ │ ├── ISubPanePropertyItemOptions │ │ │ └── README.md │ │ ├── ITextPropertyItem │ │ │ └── README.md │ │ ├── ITextPropertyItemOptions │ │ │ └── README.md │ │ ├── IToggleGroupPropertyItem │ │ │ └── README.md │ │ ├── IToggleGroupPropertyItemEntry │ │ │ └── README.md │ │ ├── IToggleGroupPropertyItemOptions │ │ │ └── README.md │ │ ├── IVector3PropertyItem │ │ │ └── README.md │ │ ├── IVector3PropertyItemOptions │ │ │ └── README.md │ │ ├── LogProperties │ │ │ └── README.md │ │ ├── Logger │ │ │ └── prototype │ │ │ │ ├── debug │ │ │ │ └── README.md │ │ │ │ ├── error │ │ │ │ └── README.md │ │ │ │ ├── info │ │ │ │ └── README.md │ │ │ │ └── warning │ │ │ │ └── README.md │ │ ├── MinecraftEditor │ │ │ └── prototype │ │ │ │ ├── constants │ │ │ │ └── README.md │ │ │ │ ├── log │ │ │ │ └── README.md │ │ │ │ ├── simulation │ │ │ │ └── README.md │ │ │ │ └── worldGeneratorType │ │ │ │ └── README.md │ │ ├── ModalToolCreationParameters │ │ │ └── README.md │ │ ├── ModeChangeAfterEvent │ │ │ └── prototype │ │ │ │ └── mode │ │ │ │ └── README.md │ │ ├── ModeChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── NumberLimitObservableValidator │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── _isInteger │ │ │ │ └── README.md │ │ │ │ ├── _max │ │ │ │ └── README.md │ │ │ │ ├── _min │ │ │ │ └── README.md │ │ │ │ ├── updateLimits │ │ │ │ └── README.md │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── ObservableValidator │ │ │ └── prototype │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── PlaytestManager │ │ │ └── prototype │ │ │ │ ├── beginPlaytest │ │ │ │ └── README.md │ │ │ │ └── getPlaytestSessionAvailability │ │ │ │ └── README.md │ │ ├── PrimarySelectionChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── PrimarySelectionChangedEvent │ │ │ └── prototype │ │ │ │ └── volume │ │ │ │ └── README.md │ │ ├── ProbabilityBlockPaletteItem │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── addBlock │ │ │ │ └── README.md │ │ │ │ ├── getBlocks │ │ │ │ └── README.md │ │ │ │ └── removeBlockAt │ │ │ │ └── README.md │ │ ├── ProjectExportOptions │ │ │ └── README.md │ │ ├── PyramidBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── QuickExtrudeProperties │ │ │ └── README.md │ │ ├── RelativeVolumeListBlockVolume │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── add │ │ │ │ └── README.md │ │ │ │ ├── clear │ │ │ │ └── README.md │ │ │ │ ├── getVolumeList │ │ │ │ └── README.md │ │ │ │ ├── hasAdjacent │ │ │ │ └── README.md │ │ │ │ ├── isEmpty │ │ │ │ └── README.md │ │ │ │ ├── moveTo │ │ │ │ └── README.md │ │ │ │ ├── origin │ │ │ │ └── README.md │ │ │ │ ├── remove │ │ │ │ └── README.md │ │ │ │ ├── set │ │ │ │ └── README.md │ │ │ │ ├── translate │ │ │ │ └── README.md │ │ │ │ └── volumeCount │ │ │ │ └── README.md │ │ ├── Selection │ │ │ └── prototype │ │ │ │ ├── clear │ │ │ │ └── README.md │ │ │ │ ├── getBlockLocationIterator │ │ │ │ └── README.md │ │ │ │ ├── getBoundingBox │ │ │ │ └── README.md │ │ │ │ ├── getFillColor │ │ │ │ └── README.md │ │ │ │ ├── getOutlineColor │ │ │ │ └── README.md │ │ │ │ ├── getVolumeOrigin │ │ │ │ └── README.md │ │ │ │ ├── isEmpty │ │ │ │ └── README.md │ │ │ │ ├── moveBy │ │ │ │ └── README.md │ │ │ │ ├── moveTo │ │ │ │ └── README.md │ │ │ │ ├── peekLastVolume │ │ │ │ └── README.md │ │ │ │ ├── popVolume │ │ │ │ └── README.md │ │ │ │ ├── pushVolume │ │ │ │ └── README.md │ │ │ │ ├── set │ │ │ │ └── README.md │ │ │ │ ├── setFillColor │ │ │ │ └── README.md │ │ │ │ ├── setOutlineColor │ │ │ │ └── README.md │ │ │ │ └── visible │ │ │ │ └── README.md │ │ ├── SelectionChangeAfterEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── SelectionContainerVolume │ │ │ └── prototype │ │ │ │ ├── add │ │ │ │ └── README.md │ │ │ │ ├── clear │ │ │ │ └── README.md │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ ├── getBoundingBox │ │ │ │ └── README.md │ │ │ │ ├── isEmpty │ │ │ │ └── README.md │ │ │ │ ├── moveTo │ │ │ │ └── README.md │ │ │ │ ├── remove │ │ │ │ └── README.md │ │ │ │ ├── set │ │ │ │ └── README.md │ │ │ │ ├── translate │ │ │ │ └── README.md │ │ │ │ └── volumeCount │ │ │ │ └── README.md │ │ ├── SelectionContainerVolumeEvent │ │ │ └── prototype │ │ │ │ └── 'type' │ │ │ │ └── README.md │ │ ├── SelectionEventAfterEvent │ │ │ └── prototype │ │ │ │ ├── selectionEvent │ │ │ │ └── README.md │ │ │ │ └── volumeEventData │ │ │ │ └── README.md │ │ ├── SelectionManager │ │ │ └── prototype │ │ │ │ ├── create │ │ │ │ └── README.md │ │ │ │ ├── entity │ │ │ │ └── README.md │ │ │ │ ├── selection │ │ │ │ └── README.md │ │ │ │ └── volume │ │ │ │ └── README.md │ │ ├── SettingsManager │ │ │ └── prototype │ │ │ │ ├── graphics │ │ │ │ └── README.md │ │ │ │ ├── speed │ │ │ │ └── README.md │ │ │ │ └── theme │ │ │ │ └── README.md │ │ ├── SettingsUIElement │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── initialValue │ │ │ │ └── README.md │ │ │ │ ├── name │ │ │ │ └── README.md │ │ │ │ ├── onChange │ │ │ │ └── README.md │ │ │ │ └── options │ │ │ │ └── README.md │ │ ├── SettingsUIElementOptions │ │ │ └── README.md │ │ ├── SimpleBlockPaletteItem │ │ │ └── constructor │ │ ├── SimpleToolWrapper │ │ │ └── prototype │ │ │ │ ├── setupSimpleTool │ │ │ │ └── README.md │ │ │ │ └── teardown │ │ │ │ └── README.md │ │ ├── SimulationState │ │ │ └── prototype │ │ │ │ ├── isPaused │ │ │ │ └── README.md │ │ │ │ └── setPaused │ │ │ │ └── README.md │ │ ├── SingleBlockBrushShape │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── createSettingsPane │ │ │ │ └── README.md │ │ │ │ └── createShape │ │ │ │ └── README.md │ │ ├── SpeedSettings │ │ │ └── prototype │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ ├── getAll │ │ │ │ └── README.md │ │ │ │ ├── set │ │ │ │ └── README.md │ │ │ │ └── setAll │ │ │ │ └── README.md │ │ ├── ThemeSettings │ │ │ └── prototype │ │ │ │ ├── addNewTheme │ │ │ │ └── README.md │ │ │ │ ├── canThemeBeModified │ │ │ │ └── README.md │ │ │ │ ├── deleteTheme │ │ │ │ └── README.md │ │ │ │ ├── getCurrentTheme │ │ │ │ └── README.md │ │ │ │ ├── getThemeColors │ │ │ │ └── README.md │ │ │ │ ├── getThemeIdList │ │ │ │ └── README.md │ │ │ │ ├── getThemeList │ │ │ │ └── README.md │ │ │ │ ├── getThemeName │ │ │ │ └── README.md │ │ │ │ ├── resolveColorKey │ │ │ │ └── README.md │ │ │ │ ├── setCurrentTheme │ │ │ │ └── README.md │ │ │ │ ├── setThemeName │ │ │ │ └── README.md │ │ │ │ └── updateThemeColor │ │ │ │ └── README.md │ │ ├── TransactionManager │ │ │ └── prototype │ │ │ │ ├── addEntityOperation │ │ │ │ └── README.md │ │ │ │ ├── addUserDefinedOperation │ │ │ │ └── README.md │ │ │ │ ├── commitOpenTransaction │ │ │ │ └── README.md │ │ │ │ ├── commitTrackedChanges │ │ │ │ └── README.md │ │ │ │ ├── createUserDefinedTransactionHandler │ │ │ │ └── README.md │ │ │ │ ├── discardOpenTransaction │ │ │ │ └── README.md │ │ │ │ ├── discardTrackedChanges │ │ │ │ └── README.md │ │ │ │ ├── isBusy │ │ │ │ └── README.md │ │ │ │ ├── openTransaction │ │ │ │ └── README.md │ │ │ │ ├── redo │ │ │ │ └── README.md │ │ │ │ ├── redoSize │ │ │ │ └── README.md │ │ │ │ ├── trackBlockChangeArea │ │ │ │ └── README.md │ │ │ │ ├── trackBlockChangeCompoundBlockVolume │ │ │ │ └── README.md │ │ │ │ ├── trackBlockChangeList │ │ │ │ └── README.md │ │ │ │ ├── trackBlockChangeSelection │ │ │ │ └── README.md │ │ │ │ ├── trackBlockChangeVolume │ │ │ │ └── README.md │ │ │ │ ├── undo │ │ │ │ └── README.md │ │ │ │ └── undoSize │ │ │ │ └── README.md │ │ ├── UserDefinedTransactionHandle │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── addUserDefinedOperation │ │ │ │ └── README.md │ │ ├── Vector3LimitObservableValidator │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── _isInteger │ │ │ │ └── README.md │ │ │ │ ├── _max │ │ │ │ └── README.md │ │ │ │ ├── _min │ │ │ │ └── README.md │ │ │ │ ├── updateLimits │ │ │ │ └── README.md │ │ │ │ └── validate │ │ │ │ └── README.md │ │ ├── WeightedBlock │ │ │ └── README.md │ │ ├── Widget │ │ │ └── prototype │ │ │ │ ├── addBoundingBox │ │ │ │ └── README.md │ │ │ │ ├── addClipboardComponent │ │ │ │ └── README.md │ │ │ │ ├── addEntityComponent │ │ │ │ └── README.md │ │ │ │ ├── addGizmoComponent │ │ │ │ └── README.md │ │ │ │ ├── addGuideComponent │ │ │ │ └── README.md │ │ │ │ ├── addRenderPrimitiveComponent │ │ │ │ └── README.md │ │ │ │ ├── addSplineComponent │ │ │ │ └── README.md │ │ │ │ ├── addTextComponent │ │ │ │ └── README.md │ │ │ │ ├── addVolumeOutline │ │ │ │ └── README.md │ │ │ │ ├── bindPositionToBlockCursor │ │ │ │ └── README.md │ │ │ │ ├── collisionOffset │ │ │ │ └── README.md │ │ │ │ ├── collisionRadius │ │ │ │ └── README.md │ │ │ │ ├── delete │ │ │ │ └── README.md │ │ │ │ ├── deleteComponent │ │ │ │ └── README.md │ │ │ │ ├── deleteWidget │ │ │ │ └── README.md │ │ │ │ ├── getComponent │ │ │ │ └── README.md │ │ │ │ ├── getComponents │ │ │ │ └── README.md │ │ │ │ ├── getIsSelected │ │ │ │ └── README.md │ │ │ │ ├── getIsVisible │ │ │ │ └── README.md │ │ │ │ ├── group │ │ │ │ └── README.md │ │ │ │ ├── location │ │ │ │ └── README.md │ │ │ │ ├── lockPositionToSurface │ │ │ │ └── README.md │ │ │ │ ├── selectable │ │ │ │ └── README.md │ │ │ │ ├── selected │ │ │ │ └── README.md │ │ │ │ ├── setIsSelected │ │ │ │ └── README.md │ │ │ │ ├── setIsVisible │ │ │ │ └── README.md │ │ │ │ ├── setStateChangeEvent │ │ │ │ └── README.md │ │ │ │ ├── showBoundingBox │ │ │ │ └── README.md │ │ │ │ ├── showCollisionRadius │ │ │ │ └── README.md │ │ │ │ ├── snapToBlockLocation │ │ │ │ └── README.md │ │ │ │ ├── valid │ │ │ │ └── README.md │ │ │ │ ├── visible │ │ │ │ └── README.md │ │ │ │ └── widgetName │ │ │ │ └── README.md │ │ ├── WidgetComponentBase │ │ │ └── prototype │ │ │ │ ├── componentType │ │ │ │ └── README.md │ │ │ │ ├── delete │ │ │ │ └── README.md │ │ │ │ ├── location │ │ │ │ └── README.md │ │ │ │ ├── lockToSurface │ │ │ │ └── README.md │ │ │ │ ├── name │ │ │ │ └── README.md │ │ │ │ ├── offset │ │ │ │ └── README.md │ │ │ │ ├── setStateChangeEvent │ │ │ │ └── README.md │ │ │ │ ├── valid │ │ │ │ └── README.md │ │ │ │ ├── visible │ │ │ │ └── README.md │ │ │ │ └── widget │ │ │ │ └── README.md │ │ ├── WidgetComponentBaseOptions │ │ │ └── README.md │ │ ├── WidgetComponentBoundingBox │ │ │ └── prototype │ │ │ │ ├── boundsOffset │ │ │ │ └── README.md │ │ │ │ ├── deactivateHandles │ │ │ │ └── README.md │ │ │ │ ├── enableResizeHandles │ │ │ │ └── README.md │ │ │ │ ├── hullColor │ │ │ │ └── README.md │ │ │ │ ├── mirror │ │ │ │ └── README.md │ │ │ │ ├── normalizedOrigin │ │ │ │ └── README.md │ │ │ │ ├── outlineColor │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ ├── setStateChangeEvent │ │ │ │ └── README.md │ │ │ │ ├── showWorldIntersections │ │ │ │ └── README.md │ │ │ │ ├── size │ │ │ │ └── README.md │ │ │ │ ├── transformedWorldVolume │ │ │ │ └── README.md │ │ │ │ └── visibleHull │ │ │ │ └── README.md │ │ ├── WidgetComponentBoundingBoxOptions │ │ │ └── README.md │ │ ├── WidgetComponentBoundingBoxStateChangeEventParameters │ │ │ └── prototype │ │ │ │ ├── boundsOffset │ │ │ │ └── README.md │ │ │ │ ├── boundsSize │ │ │ │ └── README.md │ │ │ │ ├── component │ │ │ │ └── README.md │ │ │ │ ├── eventType │ │ │ │ └── README.md │ │ │ │ └── widget │ │ │ │ └── README.md │ │ ├── WidgetComponentClipboard │ │ │ └── prototype │ │ │ │ ├── clipboardMirror │ │ │ │ └── README.md │ │ │ │ ├── clipboardNormalizedOrigin │ │ │ │ └── README.md │ │ │ │ ├── clipboardOffset │ │ │ │ └── README.md │ │ │ │ ├── clipboardRotation │ │ │ │ └── README.md │ │ │ │ ├── fillColor │ │ │ │ └── README.md │ │ │ │ ├── highlightHullColor │ │ │ │ └── README.md │ │ │ │ ├── highlightOutlineColor │ │ │ │ └── README.md │ │ │ │ ├── hullColor │ │ │ │ └── README.md │ │ │ │ ├── mirror │ │ │ │ └── README.md │ │ │ │ ├── normalizedOrigin │ │ │ │ └── README.md │ │ │ │ ├── outlineColor │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ ├── showBounds │ │ │ │ └── README.md │ │ │ │ └── showOutline │ │ │ │ └── README.md │ │ ├── WidgetComponentClipboardOptions │ │ │ └── README.md │ │ ├── WidgetComponentEntity │ │ │ └── prototype │ │ │ │ ├── clickable │ │ │ │ └── README.md │ │ │ │ └── playAnimation │ │ │ │ └── README.md │ │ ├── WidgetComponentEntityOptions │ │ │ └── README.md │ │ ├── WidgetComponentGizmo │ │ │ └── prototype │ │ │ │ ├── activated │ │ │ │ └── README.md │ │ │ │ ├── enabledAxes │ │ │ │ └── README.md │ │ │ │ ├── normalizedOffsetOverride │ │ │ │ └── README.md │ │ │ │ └── setStateChangeEvent │ │ │ │ └── README.md │ │ ├── WidgetComponentGizmoOptions │ │ │ └── README.md │ │ ├── WidgetComponentGizmoStateChangeEventParameters │ │ │ └── prototype │ │ │ │ ├── component │ │ │ │ └── README.md │ │ │ │ ├── eventType │ │ │ │ └── README.md │ │ │ │ └── widget │ │ │ │ └── README.md │ │ ├── WidgetComponentGuideOptions │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitive │ │ │ └── prototype │ │ │ │ ├── primitiveType │ │ │ │ └── README.md │ │ │ │ └── setPrimitive │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveAxialSphere │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── radius │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveBox │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── size │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveDisc │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── radius │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveLine │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ ├── end │ │ │ │ └── README.md │ │ │ │ └── start │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveOptions │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveTypeAxialSphere │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── radius │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveTypeBase │ │ │ └── prototype │ │ │ │ └── primitiveType │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveTypeBox │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── size │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveTypeDisc │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── center │ │ │ │ └── README.md │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── radius │ │ │ │ └── README.md │ │ ├── WidgetComponentRenderPrimitiveTypeLine │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ ├── end │ │ │ │ └── README.md │ │ │ │ └── start │ │ │ │ └── README.md │ │ ├── WidgetComponentSpline │ │ │ └── prototype │ │ │ │ ├── getControlPoints │ │ │ │ └── README.md │ │ │ │ ├── getInterpolatedPoints │ │ │ │ └── README.md │ │ │ │ ├── setControlPoints │ │ │ │ └── README.md │ │ │ │ └── splineType │ │ │ │ └── README.md │ │ ├── WidgetComponentSplineOptions │ │ │ └── README.md │ │ ├── WidgetComponentStateChangeEventData │ │ │ └── prototype │ │ │ │ ├── component │ │ │ │ └── README.md │ │ │ │ ├── gizmoActivated │ │ │ │ └── README.md │ │ │ │ ├── group │ │ │ │ └── README.md │ │ │ │ └── widget │ │ │ │ └── README.md │ │ ├── WidgetComponentText │ │ │ └── prototype │ │ │ │ ├── color │ │ │ │ └── README.md │ │ │ │ └── label │ │ │ │ └── README.md │ │ ├── WidgetComponentTextOptions │ │ │ └── README.md │ │ ├── WidgetComponentVolumeOutline │ │ │ └── prototype │ │ │ │ ├── getVolume │ │ │ │ └── README.md │ │ │ │ ├── highlightHullColor │ │ │ │ └── README.md │ │ │ │ ├── highlightOutlineColor │ │ │ │ └── README.md │ │ │ │ ├── hullColor │ │ │ │ └── README.md │ │ │ │ ├── mirror │ │ │ │ └── README.md │ │ │ │ ├── normalizedOrigin │ │ │ │ └── README.md │ │ │ │ ├── outlineColor │ │ │ │ └── README.md │ │ │ │ ├── rotation │ │ │ │ └── README.md │ │ │ │ ├── setVolume │ │ │ │ └── README.md │ │ │ │ ├── showHighlightOutline │ │ │ │ └── README.md │ │ │ │ ├── showOutline │ │ │ │ └── README.md │ │ │ │ ├── transformedWorldVolume │ │ │ │ └── README.md │ │ │ │ └── volumeOffset │ │ │ │ └── README.md │ │ ├── WidgetComponentVolumeOutlineOptions │ │ │ └── README.md │ │ ├── WidgetCreateOptions │ │ │ └── README.md │ │ ├── WidgetGroup │ │ │ └── prototype │ │ │ │ ├── areAnySelected │ │ │ │ └── README.md │ │ │ │ ├── createCustomWidget │ │ │ │ └── README.md │ │ │ │ ├── createWidget │ │ │ │ └── README.md │ │ │ │ ├── delete │ │ │ │ └── README.md │ │ │ │ ├── deleteWidget │ │ │ │ └── README.md │ │ │ │ ├── deselectAllWidgets │ │ │ │ └── README.md │ │ │ │ ├── getIsVisible │ │ │ │ └── README.md │ │ │ │ ├── moveSelectedWidgets │ │ │ │ └── README.md │ │ │ │ ├── selectAllWidgets │ │ │ │ └── README.md │ │ │ │ ├── selectedWidgetCount │ │ │ │ └── README.md │ │ │ │ ├── setIsVisible │ │ │ │ └── README.md │ │ │ │ ├── valid │ │ │ │ └── README.md │ │ │ │ ├── visible │ │ │ │ └── README.md │ │ │ │ └── visibleBounds │ │ │ │ └── README.md │ │ ├── WidgetGroupCreateOptions │ │ │ └── README.md │ │ ├── WidgetManager │ │ │ └── prototype │ │ │ │ ├── createGroup │ │ │ │ └── README.md │ │ │ │ └── deleteGroup │ │ │ │ └── README.md │ │ ├── WidgetMouseButtonEventData │ │ │ └── prototype │ │ │ │ ├── action │ │ │ │ └── README.md │ │ │ │ ├── altPressed │ │ │ │ └── README.md │ │ │ │ ├── controlPressed │ │ │ │ └── README.md │ │ │ │ └── shiftPressed │ │ │ │ └── README.md │ │ └── WidgetStateChangeEventData │ │ │ └── prototype │ │ │ ├── group │ │ │ └── README.md │ │ │ ├── isSelected │ │ │ └── README.md │ │ │ ├── isVisible │ │ │ └── README.md │ │ │ ├── location │ │ │ └── README.md │ │ │ ├── mouseEvent │ │ │ └── README.md │ │ │ ├── selected │ │ │ └── README.md │ │ │ ├── visible │ │ │ └── README.md │ │ │ └── widget │ │ │ └── README.md │ ├── server-gametest │ │ ├── FenceConnectivity │ │ │ └── prototype │ │ │ │ ├── east │ │ │ │ └── README.md │ │ │ │ ├── north │ │ │ │ └── README.md │ │ │ │ ├── south │ │ │ │ └── README.md │ │ │ │ └── west │ │ │ │ └── README.md │ │ ├── GameTestErrorContext │ │ │ └── README.md │ │ ├── GameTestSequence │ │ │ └── prototype │ │ │ │ ├── thenExecute │ │ │ │ └── README.md │ │ │ │ ├── thenExecuteAfter │ │ │ │ └── README.md │ │ │ │ ├── thenExecuteFor │ │ │ │ └── README.md │ │ │ │ ├── thenFail │ │ │ │ └── README.md │ │ │ │ ├── thenIdle │ │ │ │ └── README.md │ │ │ │ ├── thenSucceed │ │ │ │ └── README.md │ │ │ │ ├── thenWait │ │ │ │ └── README.md │ │ │ │ └── thenWaitAfter │ │ │ │ └── README.md │ │ ├── MoveToOptions │ │ │ └── README.md │ │ ├── NavigationResult │ │ │ └── prototype │ │ │ │ ├── getPath │ │ │ │ └── README.md │ │ │ │ └── isFullPath │ │ │ │ └── README.md │ │ ├── RegistrationBuilder │ │ │ └── prototype │ │ │ │ ├── batch │ │ │ │ └── README.md │ │ │ │ ├── maxAttempts │ │ │ │ └── README.md │ │ │ │ ├── maxTicks │ │ │ │ └── README.md │ │ │ │ ├── padding │ │ │ │ └── README.md │ │ │ │ ├── required │ │ │ │ └── README.md │ │ │ │ ├── requiredSuccessfulAttempts │ │ │ │ └── README.md │ │ │ │ ├── rotateTest │ │ │ │ └── README.md │ │ │ │ ├── setupTicks │ │ │ │ └── README.md │ │ │ │ ├── structureLocation │ │ │ │ └── README.md │ │ │ │ ├── structureName │ │ │ │ └── reserved.json │ │ │ │ └── tag │ │ │ │ └── reserved.json │ │ ├── SculkSpreader │ │ │ └── prototype │ │ │ │ ├── addCursorsWithOffset │ │ │ │ └── README.md │ │ │ │ ├── getCursorPosition │ │ │ │ └── README.md │ │ │ │ ├── getNumberOfCursors │ │ │ │ └── README.md │ │ │ │ ├── getTotalCharge │ │ │ │ └── README.md │ │ │ │ └── maxCharge │ │ │ │ └── README.md │ │ ├── SimulatedPlayer │ │ │ └── prototype │ │ │ │ ├── attack │ │ │ │ └── README.md │ │ │ │ ├── attackEntity │ │ │ │ └── README.md │ │ │ │ ├── breakBlock │ │ │ │ └── README.md │ │ │ │ ├── chat │ │ │ │ └── README.md │ │ │ │ ├── disconnect │ │ │ │ └── README.md │ │ │ │ ├── dropSelectedItem │ │ │ │ └── README.md │ │ │ │ ├── fly │ │ │ │ └── README.md │ │ │ │ ├── giveItem │ │ │ │ └── README.md │ │ │ │ ├── glide │ │ │ │ └── README.md │ │ │ │ ├── headRotation │ │ │ │ └── README.md │ │ │ │ ├── interact │ │ │ │ └── README.md │ │ │ │ ├── interactWithBlock │ │ │ │ └── README.md │ │ │ │ ├── interactWithEntity │ │ │ │ └── README.md │ │ │ │ ├── isSprinting │ │ │ │ └── README.md │ │ │ │ ├── jump │ │ │ │ └── README.md │ │ │ │ ├── lookAtBlock │ │ │ │ └── README.md │ │ │ │ ├── lookAtEntity │ │ │ │ └── README.md │ │ │ │ ├── lookAtLocation │ │ │ │ └── README.md │ │ │ │ ├── move │ │ │ │ └── README.md │ │ │ │ ├── moveRelative │ │ │ │ └── README.md │ │ │ │ ├── moveToBlock │ │ │ │ └── README.md │ │ │ │ ├── moveToLocation │ │ │ │ └── README.md │ │ │ │ ├── navigateToBlock │ │ │ │ └── README.md │ │ │ │ ├── navigateToEntity │ │ │ │ └── README.md │ │ │ │ ├── navigateToLocation │ │ │ │ └── README.md │ │ │ │ ├── navigateToLocations │ │ │ │ └── README.md │ │ │ │ ├── respawn │ │ │ │ └── README.md │ │ │ │ ├── rotateBody │ │ │ │ └── README.md │ │ │ │ ├── setBodyRotation │ │ │ │ └── README.md │ │ │ │ ├── setItem │ │ │ │ └── README.md │ │ │ │ ├── startBuild │ │ │ │ └── README.md │ │ │ │ ├── stopBreakingBlock │ │ │ │ └── README.md │ │ │ │ ├── stopBuild │ │ │ │ └── README.md │ │ │ │ ├── stopFlying │ │ │ │ └── README.md │ │ │ │ ├── stopGliding │ │ │ │ └── README.md │ │ │ │ ├── stopInteracting │ │ │ │ └── README.md │ │ │ │ ├── stopMoving │ │ │ │ └── README.md │ │ │ │ ├── stopSwimming │ │ │ │ └── README.md │ │ │ │ ├── stopUsingItem │ │ │ │ └── README.md │ │ │ │ ├── swim │ │ │ │ └── README.md │ │ │ │ ├── useItem │ │ │ │ └── README.md │ │ │ │ ├── useItemInSlot │ │ │ │ └── README.md │ │ │ │ ├── useItemInSlotOnBlock │ │ │ │ └── README.md │ │ │ │ └── useItemOnBlock │ │ │ │ └── README.md │ │ ├── Tags │ │ │ ├── suiteAll │ │ │ │ └── README.md │ │ │ ├── suiteDebug │ │ │ │ └── README.md │ │ │ ├── suiteDefault │ │ │ │ └── README.md │ │ │ ├── suiteDisabled │ │ │ │ └── README.md │ │ │ └── suiteNextUpdate │ │ │ │ └── README.md │ │ └── Test │ │ │ ├── constructor │ │ │ └── prototype │ │ │ ├── assert │ │ │ └── README.md │ │ │ ├── assertBlockPresent │ │ │ └── README.md │ │ │ ├── assertBlockState │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── assertCanReachLocation │ │ │ └── README.md │ │ │ ├── assertContainerContains │ │ │ └── README.md │ │ │ ├── assertContainerEmpty │ │ │ └── README.md │ │ │ ├── assertEntityHasArmor │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── assertEntityHasComponent │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── assertEntityInstancePresent │ │ │ └── README.md │ │ │ ├── assertEntityInstancePresentInArea │ │ │ └── reserved.json │ │ │ ├── assertEntityPresent │ │ │ └── README.md │ │ │ ├── assertEntityPresentInArea │ │ │ └── reserved.json │ │ │ ├── assertEntityState │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── assertEntityTouching │ │ │ └── README.md │ │ │ ├── assertIsWaterlogged │ │ │ └── README.md │ │ │ ├── assertItemEntityCountIs │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── assertItemEntityPresent │ │ │ └── README.md │ │ │ ├── assertRedstonePower │ │ │ └── README.md │ │ │ ├── destroyBlock │ │ │ └── README.md │ │ │ ├── fail │ │ │ └── README.md │ │ │ ├── failIf │ │ │ └── README.md │ │ │ ├── getBlock │ │ │ └── README.md │ │ │ ├── getDimension │ │ │ └── README.md │ │ │ ├── getFenceConnectivity │ │ │ └── README.md │ │ │ ├── getSculkSpreader │ │ │ └── README.md │ │ │ ├── getTestDirection │ │ │ └── README.md │ │ │ ├── idle │ │ │ └── README.md │ │ │ ├── killAllEntities │ │ │ └── README.md │ │ │ ├── onPlayerJump │ │ │ └── README.md │ │ │ ├── pressButton │ │ │ └── README.md │ │ │ ├── print │ │ │ └── README.md │ │ │ ├── pullLever │ │ │ └── README.md │ │ │ ├── pulseRedstone │ │ │ └── README.md │ │ │ ├── relativeBlockLocation │ │ │ └── README.md │ │ │ ├── relativeLocation │ │ │ └── README.md │ │ │ ├── removeSimulatedPlayer │ │ │ └── README.md │ │ │ ├── rotateDirection │ │ │ └── README.md │ │ │ ├── rotateVector │ │ │ └── README.md │ │ │ ├── runAfterDelay │ │ │ └── README.md │ │ │ ├── runAtTickTime │ │ │ └── README.md │ │ │ ├── setBlockPermutation │ │ │ └── README.md │ │ │ ├── setBlockType │ │ │ └── reserved.json │ │ │ ├── setFluidContainer │ │ │ └── README.md │ │ │ ├── setTntFuse │ │ │ └── README.md │ │ │ ├── spawn │ │ │ └── reserved.json │ │ │ ├── spawnAtLocation │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── spawnItem │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── spawnSimulatedPlayer │ │ │ └── README.md │ │ │ ├── spawnWithoutBehaviors │ │ │ └── README.md │ │ │ ├── spawnWithoutBehaviorsAtLocation │ │ │ └── README.md │ │ │ ├── spreadFromFaceTowardDirection │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── startSequence │ │ │ └── README.md │ │ │ ├── succeed │ │ │ └── README.md │ │ │ ├── succeedIf │ │ │ └── README.md │ │ │ ├── succeedOnTick │ │ │ └── README.md │ │ │ ├── succeedOnTickWhen │ │ │ └── README.md │ │ │ ├── succeedWhen │ │ │ └── reserved.json │ │ │ ├── succeedWhenBlockPresent │ │ │ └── README.md │ │ │ ├── succeedWhenEntityHasComponent │ │ │ └── README.md │ │ │ ├── succeedWhenEntityPresent │ │ │ └── reserved.json │ │ │ ├── triggerInternalBlockEvent │ │ │ └── README.md │ │ │ ├── until │ │ │ └── README.md │ │ │ ├── walkTo │ │ │ └── README.md │ │ │ ├── walkToLocation │ │ │ └── README.md │ │ │ ├── worldBlockLocation │ │ │ └── README.md │ │ │ └── worldLocation │ │ │ └── README.md │ ├── server-net │ │ ├── HttpClient │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── cancelAll │ │ │ │ └── README.md │ │ │ │ ├── get │ │ │ │ └── README.md │ │ │ │ └── request │ │ │ │ └── reserved.json │ │ ├── HttpHeader │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── key │ │ │ │ └── README.md │ │ │ │ └── value │ │ │ │ └── README.md │ │ ├── HttpRequest │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── addHeader │ │ │ │ └── README.md │ │ │ │ ├── body │ │ │ │ └── README.md │ │ │ │ ├── headers │ │ │ │ └── README.md │ │ │ │ ├── method │ │ │ │ └── README.md │ │ │ │ ├── setBody │ │ │ │ └── README.md │ │ │ │ ├── setHeaders │ │ │ │ └── README.md │ │ │ │ ├── setMethod │ │ │ │ └── README.md │ │ │ │ ├── setTimeout │ │ │ │ └── README.md │ │ │ │ ├── timeout │ │ │ │ └── README.md │ │ │ │ └── uri │ │ │ │ └── README.md │ │ ├── HttpResponse │ │ │ └── prototype │ │ │ │ ├── body │ │ │ │ └── README.md │ │ │ │ ├── headers │ │ │ │ └── README.md │ │ │ │ ├── request │ │ │ │ └── README.md │ │ │ │ └── status │ │ │ │ └── README.md │ │ ├── NetworkBeforeEvents │ │ │ └── prototype │ │ │ │ ├── packetReceive │ │ │ │ └── logPackets.js │ │ │ │ └── packetSend │ │ │ │ └── ignoreActorRemoval.js │ │ ├── PacketEventOptions │ │ │ └── README.md │ │ ├── PacketReceiveBeforeEventSignal │ │ │ └── prototype │ │ │ │ ├── subscribe │ │ │ │ └── README.md │ │ │ │ └── unsubscribe │ │ │ │ └── README.md │ │ ├── PacketReceivedBeforeEvent │ │ │ └── prototype │ │ │ │ ├── cancel │ │ │ │ └── README.md │ │ │ │ ├── packetId │ │ │ │ └── README.md │ │ │ │ ├── packetSize │ │ │ │ └── README.md │ │ │ │ └── sender │ │ │ │ └── README.md │ │ ├── PacketSendBeforeEvent │ │ │ └── prototype │ │ │ │ ├── cancel │ │ │ │ └── README.md │ │ │ │ ├── packetId │ │ │ │ └── README.md │ │ │ │ └── recipients │ │ │ │ └── README.md │ │ └── PacketSendBeforeEventSignal │ │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ ├── server-ui │ │ ├── ActionFormData │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── body │ │ │ │ └── README.md │ │ │ │ ├── button │ │ │ │ └── README.md │ │ │ │ ├── divider │ │ │ │ └── README.md │ │ │ │ ├── header │ │ │ │ └── README.md │ │ │ │ ├── label │ │ │ │ └── README.md │ │ │ │ ├── show │ │ │ │ └── README.md │ │ │ │ └── title │ │ │ │ └── README.md │ │ ├── ActionFormResponse │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── selection │ │ │ │ └── README.md │ │ ├── FormResponse │ │ │ └── prototype │ │ │ │ ├── cancelationReason │ │ │ │ └── README.md │ │ │ │ └── canceled │ │ │ │ └── README.md │ │ ├── MessageFormData │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── body │ │ │ │ └── README.md │ │ │ │ ├── button1 │ │ │ │ └── README.md │ │ │ │ ├── button2 │ │ │ │ └── README.md │ │ │ │ ├── show │ │ │ │ └── README.md │ │ │ │ └── title │ │ │ │ └── README.md │ │ ├── MessageFormResponse │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── selection │ │ │ │ └── README.md │ │ ├── ModalFormData │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ ├── divider │ │ │ │ └── README.md │ │ │ │ ├── dropdown │ │ │ │ └── README.md │ │ │ │ ├── header │ │ │ │ └── README.md │ │ │ │ ├── label │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── label-demo.png │ │ │ │ ├── show │ │ │ │ └── README.md │ │ │ │ ├── slider │ │ │ │ └── README.md │ │ │ │ ├── submitButton │ │ │ │ └── README.md │ │ │ │ ├── textField │ │ │ │ └── README.md │ │ │ │ ├── title │ │ │ │ └── README.md │ │ │ │ └── toggle │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── toggle-options.png │ │ ├── ModalFormDataDropdownOptions │ │ │ └── README.md │ │ ├── ModalFormDataSliderOptions │ │ │ └── README.md │ │ ├── ModalFormDataTextFieldOptions │ │ │ └── README.md │ │ ├── ModalFormDataToggleOptions │ │ │ └── README.md │ │ ├── ModalFormResponse │ │ │ ├── constructor │ │ │ └── prototype │ │ │ │ └── formValues │ │ │ │ └── README.md │ │ └── UIManager │ │ │ └── prototype │ │ │ └── closeAllForms │ │ │ └── closePlayerForm.ts │ └── server │ │ ├── AimAssistCategory │ │ └── prototype │ │ │ ├── defaultBlockPriority │ │ │ └── README.md │ │ │ ├── defaultEntityPriority │ │ │ └── README.md │ │ │ ├── getBlockPriorities │ │ │ └── README.md │ │ │ ├── getEntityPriorities │ │ │ └── README.md │ │ │ └── identifier │ │ │ └── README.md │ │ ├── AimAssistCategorySettings │ │ ├── constructor │ │ └── prototype │ │ │ ├── defaultBlockPriority │ │ │ └── README.md │ │ │ ├── defaultEntityPriority │ │ │ └── README.md │ │ │ ├── getBlockPriorities │ │ │ └── README.md │ │ │ ├── getEntityPriorities │ │ │ └── README.md │ │ │ ├── identifier │ │ │ └── README.md │ │ │ ├── setBlockPriorities │ │ │ └── README.md │ │ │ └── setEntityPriorities │ │ │ └── README.md │ │ ├── AimAssistPreset │ │ └── prototype │ │ │ ├── defaultItemSettings │ │ │ └── README.md │ │ │ ├── getExcludedTargets │ │ │ └── README.md │ │ │ ├── getItemSettings │ │ │ └── README.md │ │ │ ├── getLiquidTargetingItems │ │ │ └── README.md │ │ │ ├── handSettings │ │ │ └── README.md │ │ │ └── identifier │ │ │ └── README.md │ │ ├── AimAssistPresetSettings │ │ ├── constructor │ │ └── prototype │ │ │ ├── defaultItemSettings │ │ │ └── README.md │ │ │ ├── getExcludedTargets │ │ │ └── README.md │ │ │ ├── getItemSettings │ │ │ └── README.md │ │ │ ├── getLiquidTargetingItems │ │ │ └── README.md │ │ │ ├── handSettings │ │ │ └── README.md │ │ │ ├── identifier │ │ │ └── README.md │ │ │ ├── setExcludedTargets │ │ │ └── README.md │ │ │ ├── setItemSettings │ │ │ └── README.md │ │ │ └── setLiquidTargetingItems │ │ │ └── README.md │ │ ├── AimAssistRegistry │ │ ├── DefaultPresetId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── addCategory │ │ │ └── README.md │ │ │ ├── addPreset │ │ │ └── README.md │ │ │ ├── getCategories │ │ │ └── README.md │ │ │ ├── getCategory │ │ │ └── README.md │ │ │ ├── getPreset │ │ │ └── README.md │ │ │ └── getPresets │ │ │ └── README.md │ │ ├── BiomeSearchOptions │ │ └── findBiome.js │ │ ├── BiomeType │ │ └── prototype │ │ │ └── id │ │ │ └── findBiome.js │ │ ├── BiomeTypes │ │ ├── get │ │ │ └── findBiome.js │ │ └── getAll │ │ │ └── README.md │ │ ├── Block │ │ ├── constructor │ │ └── prototype │ │ │ ├── 'type' │ │ │ └── README.md │ │ │ ├── above │ │ │ └── README.md │ │ │ ├── below │ │ │ └── copy.js │ │ │ ├── bottomCenter │ │ │ └── README.md │ │ │ ├── canBeDestroyedByLiquidSpread │ │ │ └── README.md │ │ │ ├── canContainLiquid │ │ │ └── README.md │ │ │ ├── canPlace │ │ │ └── README.md │ │ │ ├── center │ │ │ └── README.md │ │ │ ├── dimension │ │ │ └── blockExplode.js │ │ │ ├── east │ │ │ └── README.md │ │ │ ├── getComponent │ │ │ ├── addChestItem.js │ │ │ ├── editHangingSign.js │ │ │ ├── editSign.js │ │ │ └── pistonAttachedBlocks.js │ │ │ ├── getItemStack │ │ │ └── README.md │ │ │ ├── getMapColor │ │ │ └── README.md │ │ │ ├── getRedstonePower │ │ │ └── isPowered.js │ │ │ ├── getTags │ │ │ └── README.md │ │ │ ├── hasTag │ │ │ └── reserved.json │ │ │ ├── isAir │ │ │ └── bridgeEgg.js │ │ │ ├── isLiquid │ │ │ └── debug.ts │ │ │ ├── isLiquidBlocking │ │ │ └── README.md │ │ │ ├── isSolid │ │ │ └── alertOnSolidBlock.js │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── isWaterlogged │ │ │ └── README.md │ │ │ ├── liquidCanFlowFromDirection │ │ │ └── README.md │ │ │ ├── liquidSpreadCausesSpawn │ │ │ └── README.md │ │ │ ├── localizationKey │ │ │ └── README.md │ │ │ ├── location │ │ │ └── blockExplode.js │ │ │ ├── matches │ │ │ └── test.js │ │ │ ├── north │ │ │ └── blockAtNorth.js │ │ │ ├── offset │ │ │ └── README.md │ │ │ ├── permutation │ │ │ └── blockStates.js │ │ │ ├── setPermutation │ │ │ └── bedrockToAir.js │ │ │ ├── setType │ │ │ └── troll.js │ │ │ ├── setWaterlogged │ │ │ └── README.md │ │ │ ├── south │ │ │ └── blockAtSouth.js │ │ │ ├── trySetPermutation │ │ │ └── README.md │ │ │ ├── typeId │ │ │ └── README.md │ │ │ ├── west │ │ │ └── blockAtWest.js │ │ │ ├── x │ │ │ └── README.md │ │ │ ├── y │ │ │ └── README.md │ │ │ └── z │ │ │ └── README.md │ │ ├── BlockBoundingBox │ │ └── README.md │ │ ├── BlockBoundingBoxUtils │ │ ├── createValid │ │ │ └── README.md │ │ ├── dilate │ │ │ └── README.md │ │ ├── equals │ │ │ └── README.md │ │ ├── expand │ │ │ └── README.md │ │ ├── getCenter │ │ │ └── README.md │ │ ├── getIntersection │ │ │ └── README.md │ │ ├── getSpan │ │ │ └── README.md │ │ ├── intersects │ │ │ └── README.md │ │ ├── isInside │ │ │ └── README.md │ │ ├── isValid │ │ │ └── README.md │ │ └── translate │ │ │ └── README.md │ │ ├── BlockComponent │ │ └── prototype │ │ │ └── block │ │ │ └── README.md │ │ ├── BlockComponentEntityFallOnEvent │ │ └── prototype │ │ │ ├── entity │ │ │ └── README.md │ │ │ └── fallDistance │ │ │ └── README.md │ │ ├── BlockComponentOnPlaceEvent │ │ └── prototype │ │ │ └── previousBlock │ │ │ └── README.md │ │ ├── BlockComponentPlayerBreakEvent │ │ └── prototype │ │ │ ├── brokenBlockPermutation │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── BlockComponentPlayerDestroyEvent │ │ └── prototype │ │ │ ├── destroyedBlockPermutation │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── BlockComponentPlayerInteractEvent │ │ └── prototype │ │ │ ├── face │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── BlockComponentPlayerPlaceBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── face │ │ │ └── README.md │ │ │ ├── permutationToPlace │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── BlockComponentRegistry │ │ ├── constructor │ │ └── prototype │ │ │ └── registerCustomComponent │ │ │ └── registerComponent.ts │ │ ├── BlockComponentStepOffEvent │ │ └── prototype │ │ │ └── entity │ │ │ └── README.md │ │ ├── BlockComponentStepOnEvent │ │ └── prototype │ │ │ └── entity │ │ │ └── README.md │ │ ├── BlockCustomComponent │ │ └── constructor │ │ ├── BlockCustomComponentInstance │ │ └── prototype │ │ │ └── customComponentParameters │ │ │ └── README.md │ │ ├── BlockDestructionParticlesComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── texture │ │ │ └── README.md │ │ │ └── tintMethod │ │ │ └── README.md │ │ ├── BlockEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ └── dimension │ │ │ └── README.md │ │ ├── BlockEventOptions │ │ └── README.md │ │ ├── BlockExplodeAfterEvent │ │ └── prototype │ │ │ ├── explodedBlockPermutation │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── BlockExplodeAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── BlockFillOptions │ │ └── README.md │ │ ├── BlockFilter │ │ └── README.md │ │ ├── BlockFluidContainerComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── addDye │ │ │ └── README.md │ │ │ ├── fillLevel │ │ │ └── README.md │ │ │ ├── fluidColor │ │ │ └── README.md │ │ │ ├── getFluidType │ │ │ └── README.md │ │ │ ├── setFluidType │ │ │ └── README.md │ │ │ └── setPotion │ │ │ └── README.md │ │ ├── BlockHitInformation │ │ └── README.md │ │ ├── BlockInventoryComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── container │ │ │ └── empty.js │ │ ├── BlockLavaContainerComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── BlockLiquidContainerComponent │ │ └── prototype │ │ │ ├── fillLevel │ │ │ └── README.md │ │ │ └── isValidLiquid │ │ │ └── README.md │ │ ├── BlockLocationIterator │ │ └── prototype │ │ │ ├── [Symbol │ │ │ └── iterator] │ │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ └── next │ │ │ └── README.md │ │ ├── BlockMapColorComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── color │ │ │ └── README.md │ │ │ ├── tintMethod │ │ │ └── README.md │ │ │ └── tintedColor │ │ │ └── README.md │ │ ├── BlockMovableComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── movementType │ │ │ └── README.md │ │ │ └── stickyType │ │ │ └── README.md │ │ ├── BlockPermutation │ │ ├── constructor │ │ ├── prototype │ │ │ ├── 'type' │ │ │ │ └── README.md │ │ │ ├── canBeDestroyedByLiquidSpread │ │ │ │ └── README.md │ │ │ ├── canContainLiquid │ │ │ │ └── README.md │ │ │ ├── getAllStates │ │ │ │ └── README.md │ │ │ ├── getItemStack │ │ │ │ └── README.md │ │ │ ├── getState │ │ │ │ └── README.md │ │ │ ├── getTags │ │ │ │ └── README.md │ │ │ ├── hasTag │ │ │ │ └── reserved.json │ │ │ ├── isLiquidBlocking │ │ │ │ └── README.md │ │ │ ├── liquidSpreadCausesSpawn │ │ │ │ └── README.md │ │ │ ├── matches │ │ │ │ └── test.js │ │ │ └── withState │ │ │ │ └── README.md │ │ └── resolve │ │ │ └── reserved.json │ │ ├── BlockPistonComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── getAttachedBlocks │ │ │ └── randomize.js │ │ │ ├── getAttachedBlocksLocations │ │ │ └── randomize.js │ │ │ ├── isMoving │ │ │ └── README.md │ │ │ └── state │ │ │ └── README.md │ │ ├── BlockPotionContainerComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── setPotionType │ │ │ └── README.md │ │ ├── BlockRaycastHit │ │ └── README.md │ │ ├── BlockRaycastOptions │ │ └── README.md │ │ ├── BlockRecordPlayerComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── ejectRecord │ │ │ └── README.md │ │ │ ├── getRecord │ │ │ └── README.md │ │ │ ├── isPlaying │ │ │ └── README.md │ │ │ ├── pauseRecord │ │ │ └── README.md │ │ │ ├── playRecord │ │ │ └── README.md │ │ │ └── setRecord │ │ │ └── README.md │ │ ├── BlockSignComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── getRawText │ │ │ └── README.md │ │ │ ├── getText │ │ │ └── README.md │ │ │ ├── getTextDyeColor │ │ │ └── README.md │ │ │ ├── isWaxed │ │ │ └── README.md │ │ │ ├── setText │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── setTextDyeColor │ │ │ └── README.md │ │ │ └── setWaxed │ │ │ └── README.md │ │ ├── BlockSnowContainerComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── BlockStateType │ │ └── prototype │ │ │ ├── id │ │ │ └── README.md │ │ │ └── validValues │ │ │ └── README.md │ │ ├── BlockStates │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── README.md │ │ ├── BlockType │ │ └── prototype │ │ │ ├── canBeWaterlogged │ │ │ └── README.md │ │ │ └── id │ │ │ └── README.md │ │ ├── BlockTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── troll.js │ │ ├── BlockVolume │ │ ├── constructor │ │ └── prototype │ │ │ ├── 'from' │ │ │ └── README.md │ │ │ ├── doesLocationTouchFaces │ │ │ └── README.md │ │ │ ├── doesVolumeTouchFaces │ │ │ └── README.md │ │ │ ├── intersects │ │ │ └── README.md │ │ │ └── to │ │ │ └── README.md │ │ ├── BlockVolumeBase │ │ └── prototype │ │ │ ├── getBlockLocationIterator │ │ │ └── README.md │ │ │ ├── getBoundingBox │ │ │ └── README.md │ │ │ ├── getCapacity │ │ │ └── README.md │ │ │ ├── getMax │ │ │ └── README.md │ │ │ ├── getMin │ │ │ └── README.md │ │ │ ├── getSpan │ │ │ └── README.md │ │ │ ├── isInside │ │ │ └── README.md │ │ │ └── translate │ │ │ └── README.md │ │ ├── BlockWaterContainerComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── addDye │ │ │ └── README.md │ │ │ ├── getCustomColor │ │ │ └── README.md │ │ │ └── setCustomColor │ │ │ └── README.md │ │ ├── BoundingBox │ │ └── README.md │ │ ├── BoundingBoxUtils │ │ ├── createValid │ │ │ └── README.md │ │ ├── dilate │ │ │ └── README.md │ │ ├── equals │ │ │ └── README.md │ │ ├── expand │ │ │ └── README.md │ │ ├── getCenter │ │ │ └── README.md │ │ ├── getIntersection │ │ │ └── README.md │ │ ├── getSpan │ │ │ └── README.md │ │ ├── intersects │ │ │ └── README.md │ │ ├── isInside │ │ │ └── README.md │ │ ├── isValid │ │ │ └── README.md │ │ └── translate │ │ │ └── README.md │ │ ├── ButtonPushAfterEvent │ │ ├── constructor │ │ └── prototype │ │ │ └── source │ │ │ └── README.md │ │ ├── ButtonPushAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── Camera │ │ └── prototype │ │ │ ├── clear │ │ │ └── clearScene.ts │ │ │ ├── fade │ │ │ └── cameraTransition.ts │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── setCamera │ │ │ ├── cameraEaseToPosition.ts │ │ │ ├── cameraEaseToRotation.ts │ │ │ ├── cameraEaseToTarget.ts │ │ │ ├── changeCameraRotationOnly.ts │ │ │ ├── changePlayerCameraPos.ts │ │ │ ├── changePlayerPointOfView.ts │ │ │ ├── setCameraRelativeToPlayerEyes.ts │ │ │ └── setPlayerCameraFacingOnly.ts │ │ │ └── setDefaultCamera │ │ │ └── README.md │ │ ├── CameraDefaultOptions │ │ └── README.md │ │ ├── CameraEaseOptions │ │ └── README.md │ │ ├── CameraFadeOptions │ │ └── README.md │ │ ├── CameraFadeTimeOptions │ │ └── README.md │ │ ├── CameraFixedBoomOptions │ │ └── README.md │ │ ├── CameraSetFacingOptions │ │ └── README.md │ │ ├── CameraSetLocationOptions │ │ └── README.md │ │ ├── CameraSetPosOptions │ │ └── README.md │ │ ├── CameraSetRotOptions │ │ └── README.md │ │ ├── CameraTargetOptions │ │ └── README.md │ │ ├── ChatSendAfterEvent │ │ └── prototype │ │ │ ├── message │ │ │ └── README.md │ │ │ ├── sender │ │ │ └── README.md │ │ │ └── targets │ │ │ └── README.md │ │ ├── ChatSendAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ChatSendBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── message │ │ │ └── README.md │ │ │ ├── sender │ │ │ └── README.md │ │ │ └── targets │ │ │ └── README.md │ │ ├── ChatSendBeforeEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ClientSystemInfo │ │ └── prototype │ │ │ ├── maxRenderDistance │ │ │ └── sayPlayerMaxRenderDistance.ts │ │ │ └── platformType │ │ │ └── sayPlatformType.ts │ │ ├── CommandResult │ │ └── prototype │ │ │ └── successCount │ │ │ └── README.md │ │ ├── Component │ │ └── prototype │ │ │ ├── isValid │ │ │ └── README.md │ │ │ └── typeId │ │ │ └── README.md │ │ ├── CompoundBlockVolume │ │ ├── constructor │ │ └── prototype │ │ │ ├── capacity │ │ │ └── README.md │ │ │ ├── clear │ │ │ └── README.md │ │ │ ├── getBlockLocationIterator │ │ │ └── README.md │ │ │ ├── getBoundingBox │ │ │ └── README.md │ │ │ ├── getMax │ │ │ └── README.md │ │ │ ├── getMin │ │ │ └── README.md │ │ │ ├── getOrigin │ │ │ └── README.md │ │ │ ├── isEmpty │ │ │ └── README.md │ │ │ ├── isInside │ │ │ └── README.md │ │ │ ├── items │ │ │ └── README.md │ │ │ ├── itemsAbsolute │ │ │ └── README.md │ │ │ ├── peekLastVolume │ │ │ └── README.md │ │ │ ├── popVolume │ │ │ └── README.md │ │ │ ├── pushVolume │ │ │ └── README.md │ │ │ ├── replaceOrAddLastVolume │ │ │ └── README.md │ │ │ ├── setOrigin │ │ │ └── README.md │ │ │ ├── translateOrigin │ │ │ └── README.md │ │ │ └── volumeCount │ │ │ └── README.md │ │ ├── CompoundBlockVolumeItem │ │ └── README.md │ │ ├── Container │ │ ├── constructor │ │ └── prototype │ │ │ ├── addItem │ │ │ └── addDiamondSword.ts │ │ │ ├── clearAll │ │ │ └── README.md │ │ │ ├── containerRules │ │ │ └── README.md │ │ │ ├── contains │ │ │ └── README.md │ │ │ ├── emptySlotsCount │ │ │ └── README.md │ │ │ ├── find │ │ │ └── README.md │ │ │ ├── findLast │ │ │ └── README.md │ │ │ ├── firstEmptySlot │ │ │ └── README.md │ │ │ ├── firstItem │ │ │ └── README.md │ │ │ ├── getItem │ │ │ └── reserved.json │ │ │ ├── getSlot │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── moveItem │ │ │ └── reserved.json │ │ │ ├── reverseFind │ │ │ └── README.md │ │ │ ├── setItem │ │ │ └── setMainhand.ts │ │ │ ├── size │ │ │ └── README.md │ │ │ ├── swapItems │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── transferItem │ │ │ └── reserved.json │ │ │ └── weight │ │ │ └── README.md │ │ ├── ContainerRules │ │ └── README.md │ │ ├── ContainerSlot │ │ ├── constructor │ │ └── prototype │ │ │ ├── 'type' │ │ │ └── README.md │ │ │ ├── amount │ │ │ └── README.md │ │ │ ├── clearDynamicProperties │ │ │ └── README.md │ │ │ ├── getCanDestroy │ │ │ └── README.md │ │ │ ├── getCanPlaceOn │ │ │ └── README.md │ │ │ ├── getDynamicProperty │ │ │ └── README.md │ │ │ ├── getDynamicPropertyIds │ │ │ └── README.md │ │ │ ├── getDynamicPropertyTotalByteCount │ │ │ └── README.md │ │ │ ├── getItem │ │ │ └── README.md │ │ │ ├── getLore │ │ │ └── README.md │ │ │ ├── getTags │ │ │ └── README.md │ │ │ ├── hasItem │ │ │ └── README.md │ │ │ ├── hasTag │ │ │ └── README.md │ │ │ ├── isStackable │ │ │ └── README.md │ │ │ ├── isStackableWith │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── keepOnDeath │ │ │ └── README.md │ │ │ ├── lockMode │ │ │ └── README.md │ │ │ ├── maxAmount │ │ │ └── README.md │ │ │ ├── nameTag │ │ │ └── README.md │ │ │ ├── setCanDestroy │ │ │ └── README.md │ │ │ ├── setCanPlaceOn │ │ │ └── README.md │ │ │ ├── setDynamicProperties │ │ │ └── README.md │ │ │ ├── setDynamicProperty │ │ │ └── README.md │ │ │ ├── setItem │ │ │ └── README.md │ │ │ ├── setLore │ │ │ └── README.md │ │ │ └── typeId │ │ │ └── README.md │ │ ├── CustomCommand │ │ ├── index.md │ │ ├── jayly-switchdimension.ts │ │ ├── mojang-dirtster.ts │ │ ├── mojang-hellocustomcommand.ts │ │ └── mojang-party.ts │ │ ├── CustomCommandOrigin │ │ └── prototype │ │ │ ├── initiator │ │ │ └── README.md │ │ │ ├── sourceBlock │ │ │ └── README.md │ │ │ ├── sourceEntity │ │ │ └── README.md │ │ │ └── sourceType │ │ │ └── README.md │ │ ├── CustomCommandParameter │ │ └── README.md │ │ ├── CustomCommandRegistry │ │ ├── constructor │ │ └── prototype │ │ │ ├── registerCommand │ │ │ ├── mojang-dirtster.ts │ │ │ ├── mojang-hellocustomcommand.ts │ │ │ └── mojang-party.ts │ │ │ └── registerEnum │ │ │ ├── index.md │ │ │ └── jayly-switchdimension.ts │ │ ├── CustomCommandResult │ │ └── README.md │ │ ├── CustomComponentParameters │ │ └── prototype │ │ │ └── params │ │ │ └── README.md │ │ ├── DataDrivenEntityTriggerAfterEvent │ │ └── prototype │ │ │ ├── entity │ │ │ └── README.md │ │ │ ├── eventId │ │ │ └── README.md │ │ │ └── getModifiers │ │ │ └── README.md │ │ ├── DataDrivenEntityTriggerAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── DefinitionModifier │ │ └── README.md │ │ ├── Dimension │ │ └── prototype │ │ │ ├── containsBlock │ │ │ └── README.md │ │ │ ├── createExplosion │ │ │ └── reserved.json │ │ │ ├── fillBlocks │ │ │ ├── fillBlockPermutation.js │ │ │ └── fillBlockType.ts │ │ │ ├── findClosestBiome │ │ │ ├── getBiome.js │ │ │ ├── getBiome.ts │ │ │ ├── getBiomes.js │ │ │ ├── getBiomes.ts │ │ │ └── playerGetBiome.ts │ │ │ ├── getBlock │ │ │ └── README.md │ │ │ ├── getBlockAbove │ │ │ └── README.md │ │ │ ├── getBlockBelow │ │ │ └── README.md │ │ │ ├── getBlockFromRay │ │ │ └── README.md │ │ │ ├── getBlocks │ │ │ └── cobblestoneTerrain.js │ │ │ ├── getEntities │ │ │ ├── getFilteredEntities.ts │ │ │ └── reserved.json │ │ │ ├── getEntitiesAtBlockLocation │ │ │ └── README.md │ │ │ ├── getEntitiesFromRay │ │ │ └── README.md │ │ │ ├── getPlayers │ │ │ └── getFilteredPlayersInOverworld.ts │ │ │ ├── getTopmostBlock │ │ │ └── README.md │ │ │ ├── getWeather │ │ │ └── README.md │ │ │ ├── heightRange │ │ │ └── dimensionHeightRange.js │ │ │ ├── id │ │ │ └── README.md │ │ │ ├── localizationKey │ │ │ └── README.md │ │ │ ├── placeFeature │ │ │ └── README.md │ │ │ ├── placeFeatureRule │ │ │ └── README.md │ │ │ ├── playSound │ │ │ ├── README.md │ │ │ └── reserved.json │ │ │ ├── runCommand │ │ │ └── README.md │ │ │ ├── runCommandAsync │ │ │ └── README.md │ │ │ ├── setBlockPermutation │ │ │ └── README.md │ │ │ ├── setBlockType │ │ │ └── README.md │ │ │ ├── setWeather │ │ │ └── README.md │ │ │ ├── spawnEntity │ │ │ └── reserved.json │ │ │ ├── spawnItem │ │ │ └── reserved.json │ │ │ ├── spawnParticle │ │ │ └── reserved.json │ │ │ ├── stopAllSounds │ │ │ └── README.md │ │ │ └── stopSound │ │ │ └── README.md │ │ ├── DimensionLocation │ │ └── README.md │ │ ├── DimensionType │ │ └── prototype │ │ │ └── typeId │ │ │ └── README.md │ │ ├── DimensionTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── allDimensions.ts │ │ ├── EaseOptions │ │ └── README.md │ │ ├── Effect │ │ └── prototype │ │ │ ├── amplifier │ │ │ └── README.md │ │ │ ├── displayName │ │ │ └── README.md │ │ │ ├── duration │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ └── typeId │ │ │ └── README.md │ │ ├── EffectAddAfterEvent │ │ └── prototype │ │ │ ├── effect │ │ │ └── README.md │ │ │ └── entity │ │ │ └── README.md │ │ ├── EffectAddAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EffectAddBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── duration │ │ │ └── README.md │ │ │ ├── effectType │ │ │ └── README.md │ │ │ └── entity │ │ │ └── README.md │ │ ├── EffectAddBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EffectType │ │ └── prototype │ │ │ └── getName │ │ │ └── README.md │ │ ├── EffectTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── README.md │ │ ├── Enchantment │ │ └── README.md │ │ ├── EnchantmentType │ │ ├── constructor │ │ └── prototype │ │ │ ├── id │ │ │ └── README.md │ │ │ └── maxLevel │ │ │ └── README.md │ │ ├── EnchantmentTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── README.md │ │ ├── Entity │ │ └── prototype │ │ │ ├── addEffect │ │ │ └── reserved.json │ │ │ ├── addTag │ │ │ └── reserved.json │ │ │ ├── applyDamage │ │ │ ├── applyWither.js │ │ │ ├── damageEntity.js │ │ │ └── reserved.json │ │ │ ├── applyImpulse │ │ │ └── reserved.json │ │ │ ├── applyKnockback │ │ │ └── reserved.json │ │ │ ├── clearDynamicProperties │ │ │ └── resetStats.js │ │ │ ├── clearVelocity │ │ │ └── reserved.json │ │ │ ├── dimension │ │ │ └── spawnItem.js │ │ │ ├── extinguishFire │ │ │ └── reserved.json │ │ │ ├── getBlockFromViewDirection │ │ │ ├── facingBlock.js │ │ │ └── setBedrock.js │ │ │ ├── getComponent │ │ │ ├── entityHealth.js │ │ │ ├── entityInventory.js │ │ │ └── entityItem.js │ │ │ ├── getComponents │ │ │ └── getComponents.js │ │ │ ├── getDynamicProperty │ │ │ └── entityRespawn.ts │ │ │ ├── getDynamicPropertyIds │ │ │ └── displayEntries.ts │ │ │ ├── getDynamicPropertyTotalByteCount │ │ │ └── displayByteCount.ts │ │ │ ├── getEffect │ │ │ └── hasNightVision.js │ │ │ ├── getEffects │ │ │ └── playerEffects.js │ │ │ ├── getEntitiesFromViewDirection │ │ │ └── entityView.ts │ │ │ ├── getHeadLocation │ │ │ └── freezePlayerCamera.ts │ │ │ ├── getProperty │ │ │ └── getRotationOffset.js │ │ │ ├── getRotation │ │ │ └── getRotation.js │ │ │ ├── getTags │ │ │ └── jaylyTag.js │ │ │ ├── getVelocity │ │ │ └── reserved.json │ │ │ ├── getViewDirection │ │ │ └── README.md │ │ │ ├── hasComponent │ │ │ └── hasComponents.js │ │ │ ├── hasTag │ │ │ └── README.md │ │ │ ├── id │ │ │ └── idDisplay.js │ │ │ ├── isClimbing │ │ │ └── climbingEntities.js │ │ │ ├── isFalling │ │ │ └── debug.js │ │ │ ├── isInWater │ │ │ └── playerInWater.js │ │ │ ├── isOnGround │ │ │ └── playerOnGround.js │ │ │ ├── isSleeping │ │ │ └── README.md │ │ │ ├── isSneaking │ │ │ ├── alwaysSneak.ts │ │ │ └── playerIsSneaking.ts │ │ │ ├── isSprinting │ │ │ └── README.md │ │ │ ├── isSwimming │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── tracky.ts │ │ │ ├── kill │ │ │ └── reserved.json │ │ │ ├── localizationKey │ │ │ └── README.md │ │ │ ├── location │ │ │ └── showLocation.js │ │ │ ├── lookAt │ │ │ └── README.md │ │ │ ├── matches │ │ │ └── isSpectator.js │ │ │ ├── nameTag │ │ │ └── dinnerboneEveryMob.ts │ │ │ ├── playAnimation │ │ │ └── README.md │ │ │ ├── remove │ │ │ └── removeAllEntities.ts │ │ │ ├── removeEffect │ │ │ └── README.md │ │ │ ├── removeTag │ │ │ └── removeAdminTag.ts │ │ │ ├── resetProperty │ │ │ └── README.md │ │ │ ├── runCommand │ │ │ └── sayCommand.js │ │ │ ├── runCommandAsync │ │ │ └── sayCommand.js │ │ │ ├── scoreboardIdentity │ │ │ └── README.md │ │ │ ├── setDynamicProperties │ │ │ └── README.md │ │ │ ├── setDynamicProperty │ │ │ └── entityRespawn.ts │ │ │ ├── setOnFire │ │ │ └── reserved.json │ │ │ ├── setProperty │ │ │ └── getRotationOffset.js │ │ │ ├── setRotation │ │ │ └── README.md │ │ │ ├── target │ │ │ └── README.md │ │ │ ├── teleport │ │ │ ├── reserved.json │ │ │ ├── teleport.js │ │ │ └── teleportFacing.js │ │ │ ├── triggerEvent │ │ │ └── reserved.json │ │ │ ├── tryTeleport │ │ │ └── README.md │ │ │ └── typeId │ │ │ └── showLocation.js │ │ ├── EntityAddRiderComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── entityType │ │ │ └── README.md │ │ │ └── spawnEvent │ │ │ └── README.md │ │ ├── EntityAgeableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── duration │ │ │ └── README.md │ │ │ ├── getDropItems │ │ │ └── README.md │ │ │ ├── getFeedItems │ │ │ └── README.md │ │ │ ├── growUp │ │ │ └── README.md │ │ │ └── transformToItem │ │ │ └── README.md │ │ ├── EntityApplyDamageByProjectileOptions │ │ └── README.md │ │ ├── EntityApplyDamageOptions │ │ └── README.md │ │ ├── EntityAttributeComponent │ │ └── prototype │ │ │ ├── currentValue │ │ │ └── README.md │ │ │ ├── defaultValue │ │ │ └── README.md │ │ │ ├── effectiveMax │ │ │ └── README.md │ │ │ ├── effectiveMin │ │ │ └── README.md │ │ │ ├── resetToDefaultValue │ │ │ └── README.md │ │ │ ├── resetToMaxValue │ │ │ └── README.md │ │ │ ├── resetToMinValue │ │ │ └── README.md │ │ │ └── setCurrentValue │ │ │ └── README.md │ │ ├── EntityBaseMovementComponent │ │ └── prototype │ │ │ └── maxTurn │ │ │ └── README.md │ │ ├── EntityBreathableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── airSupply │ │ │ └── README.md │ │ │ ├── breathesAir │ │ │ └── README.md │ │ │ ├── breathesLava │ │ │ └── README.md │ │ │ ├── breathesSolids │ │ │ └── README.md │ │ │ ├── breathesWater │ │ │ └── README.md │ │ │ ├── canBreathe │ │ │ └── README.md │ │ │ ├── generatesBubbles │ │ │ └── README.md │ │ │ ├── getBreatheBlocks │ │ │ └── README.md │ │ │ ├── getNonBreatheBlocks │ │ │ └── README.md │ │ │ ├── inhaleTime │ │ │ └── README.md │ │ │ ├── suffocateTime │ │ │ └── README.md │ │ │ └── totalSupply │ │ │ └── README.md │ │ ├── EntityCanClimbComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityCanFlyComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityCanPowerJumpComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityColor2Component │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityColorComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityComponent │ │ └── prototype │ │ │ └── entity │ │ │ └── README.md │ │ ├── EntityDamageSource │ │ └── README.md │ │ ├── EntityDataDrivenTriggerEventOptions │ │ └── README.md │ │ ├── EntityDefinitionFeedItem │ │ └── prototype │ │ │ ├── growth │ │ │ └── README.md │ │ │ └── item │ │ │ └── README.md │ │ ├── EntityDieAfterEvent │ │ └── prototype │ │ │ ├── damageSource │ │ │ └── README.md │ │ │ └── deadEntity │ │ │ └── README.md │ │ ├── EntityDieAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityEffectOptions │ │ └── README.md │ │ ├── EntityEquippableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── getEquipment │ │ │ └── README.md │ │ │ ├── getEquipmentSlot │ │ │ └── README.md │ │ │ ├── setEquipment │ │ │ └── README.md │ │ │ ├── totalArmor │ │ │ └── README.md │ │ │ └── totalToughness │ │ │ └── README.md │ │ ├── EntityEventOptions │ │ └── README.md │ │ ├── EntityExhaustionComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityFilter │ │ └── README.md │ │ ├── EntityFireImmuneComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityFloatsInLiquidComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityFlyingSpeedComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityFrictionModifierComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityGroundOffsetComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityHealableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── forceUse │ │ │ └── README.md │ │ │ └── getFeedItems │ │ │ └── README.md │ │ ├── EntityHealthChangedAfterEvent │ │ └── prototype │ │ │ ├── entity │ │ │ └── README.md │ │ │ ├── newValue │ │ │ └── README.md │ │ │ └── oldValue │ │ │ └── README.md │ │ ├── EntityHealthChangedAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityHealthComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityHitBlockAfterEvent │ │ └── prototype │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── damagingEntity │ │ │ └── README.md │ │ │ ├── hitBlock │ │ │ └── README.md │ │ │ └── hitBlockPermutation │ │ │ └── README.md │ │ ├── EntityHitBlockAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityHitEntityAfterEvent │ │ └── prototype │ │ │ ├── damagingEntity │ │ │ └── README.md │ │ │ └── hitEntity │ │ │ └── README.md │ │ ├── EntityHitEntityAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityHitInformation │ │ └── README.md │ │ ├── EntityHungerComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityHurtAfterEvent │ │ └── prototype │ │ │ ├── damage │ │ │ └── README.md │ │ │ ├── damageSource │ │ │ └── README.md │ │ │ └── hurtEntity │ │ │ └── README.md │ │ ├── EntityHurtAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityInventoryComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── 'private' │ │ │ └── README.md │ │ │ ├── additionalSlotsPerStrength │ │ │ └── README.md │ │ │ ├── canBeSiphonedFrom │ │ │ └── README.md │ │ │ ├── container │ │ │ └── README.md │ │ │ ├── containerType │ │ │ └── README.md │ │ │ ├── inventorySize │ │ │ └── README.md │ │ │ └── restrictToOwner │ │ │ └── README.md │ │ ├── EntityIsBabyComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsChargedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsChestedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsDyeableComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsHiddenWhenInvisibleComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsIgnitedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsIllagerCaptainComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsSaddledComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsShakingComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsShearedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsStackableComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsStunnedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityIsTamedComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityItemComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── itemStack │ │ │ └── README.md │ │ ├── EntityIterator │ │ └── prototype │ │ │ ├── [Symbol │ │ │ └── iterator] │ │ │ │ └── README.md │ │ │ └── next │ │ │ └── README.md │ │ ├── EntityLavaMovementComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityLeashableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── canBeStolen │ │ │ └── README.md │ │ │ ├── hardDistance │ │ │ └── README.md │ │ │ ├── isLeashed │ │ │ └── README.md │ │ │ ├── leashHolder │ │ │ └── README.md │ │ │ ├── leashHolderEntityId │ │ │ └── README.md │ │ │ ├── leashTo │ │ │ └── README.md │ │ │ ├── maxDistance │ │ │ └── README.md │ │ │ ├── softDistance │ │ │ └── README.md │ │ │ └── unleash │ │ │ └── README.md │ │ ├── EntityLoadAfterEvent │ │ └── prototype │ │ │ └── entity │ │ │ └── README.md │ │ ├── EntityLoadAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityMarkVariantComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityMovementAmphibiousComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementBasicComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementFlyComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementGenericComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementGlideComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── speedWhenTurning │ │ │ └── README.md │ │ │ └── startSpeed │ │ │ └── README.md │ │ ├── EntityMovementHoverComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementJumpComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementSkipComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityMovementSwayComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── swayAmplitude │ │ │ └── README.md │ │ │ └── swayFrequency │ │ │ └── README.md │ │ ├── EntityNavigationClimbComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNavigationComponent │ │ └── prototype │ │ │ ├── avoidDamageBlocks │ │ │ └── README.md │ │ │ ├── avoidPortals │ │ │ └── README.md │ │ │ ├── avoidSun │ │ │ └── README.md │ │ │ ├── avoidWater │ │ │ └── README.md │ │ │ ├── canBreach │ │ │ └── README.md │ │ │ ├── canBreakDoors │ │ │ └── README.md │ │ │ ├── canFloat │ │ │ └── README.md │ │ │ ├── canJump │ │ │ └── README.md │ │ │ ├── canOpenDoors │ │ │ └── README.md │ │ │ ├── canOpenIronDoors │ │ │ └── README.md │ │ │ ├── canPassDoors │ │ │ └── README.md │ │ │ ├── canPathFromAir │ │ │ └── README.md │ │ │ ├── canPathOverLava │ │ │ └── README.md │ │ │ ├── canPathOverWater │ │ │ └── README.md │ │ │ ├── canSink │ │ │ └── README.md │ │ │ ├── canSwim │ │ │ └── README.md │ │ │ ├── canWalk │ │ │ └── README.md │ │ │ ├── canWalkInLava │ │ │ └── README.md │ │ │ └── isAmphibious │ │ │ └── README.md │ │ ├── EntityNavigationFloatComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNavigationFlyComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNavigationGenericComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNavigationHoverComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNavigationWalkComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── constructor │ │ ├── EntityNpcComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── defaultScene │ │ │ └── README.md │ │ │ ├── name │ │ │ └── README.md │ │ │ └── skinIndex │ │ │ └── README.md │ │ ├── EntityOnFireComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── onFireTicksRemaining │ │ │ └── README.md │ │ ├── EntityProjectileComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── airInertia │ │ │ └── README.md │ │ │ ├── catchFireOnHurt │ │ │ └── README.md │ │ │ ├── critParticlesOnProjectileHurt │ │ │ └── README.md │ │ │ ├── destroyOnProjectileHurt │ │ │ └── README.md │ │ │ ├── gravity │ │ │ └── README.md │ │ │ ├── hitEntitySound │ │ │ └── README.md │ │ │ ├── hitGroundSound │ │ │ └── README.md │ │ │ ├── hitParticle │ │ │ └── README.md │ │ │ ├── lightningStrikeOnHit │ │ │ └── README.md │ │ │ ├── liquidInertia │ │ │ └── README.md │ │ │ ├── onFireTime │ │ │ └── README.md │ │ │ ├── owner │ │ │ └── README.md │ │ │ ├── shoot │ │ │ └── README.md │ │ │ ├── shouldBounceOnHit │ │ │ └── README.md │ │ │ └── stopOnHit │ │ │ └── README.md │ │ ├── EntityPushThroughComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityQueryOptions │ │ └── reserved.json │ │ ├── EntityQueryPropertyOptions │ │ └── README.md │ │ ├── EntityQueryScoreOptions │ │ └── README.md │ │ ├── EntityRaycastHit │ │ └── README.md │ │ ├── EntityRaycastOptions │ │ └── README.md │ │ ├── EntityRemoveAfterEvent │ │ └── prototype │ │ │ ├── removedEntityId │ │ │ └── README.md │ │ │ └── typeId │ │ │ └── README.md │ │ ├── EntityRemoveAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityRemoveBeforeEvent │ │ └── prototype │ │ │ └── removedEntity │ │ │ └── README.md │ │ ├── EntityRemoveBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntityRideableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── addRider │ │ │ └── reserved.json │ │ │ ├── controllingSeat │ │ │ └── README.md │ │ │ ├── crouchingSkipInteract │ │ │ └── README.md │ │ │ ├── ejectRider │ │ │ └── README.md │ │ │ ├── ejectRiders │ │ │ └── README.md │ │ │ ├── getFamilyTypes │ │ │ └── README.md │ │ │ ├── getRiders │ │ │ └── README.md │ │ │ ├── getSeats │ │ │ └── README.md │ │ │ ├── interactText │ │ │ └── README.md │ │ │ ├── passengerMaxWidth │ │ │ └── README.md │ │ │ ├── pullInEntities │ │ │ └── README.md │ │ │ ├── riderCanInteract │ │ │ └── README.md │ │ │ └── seatCount │ │ │ └── README.md │ │ ├── EntityRidingComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── entityRidingOn │ │ │ └── README.md │ │ ├── EntitySaturationComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityScaleComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntitySkinIdComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntitySpawnAfterEvent │ │ ├── constructor │ │ └── prototype │ │ │ ├── cause │ │ │ └── README.md │ │ │ └── entity │ │ │ └── README.md │ │ ├── EntitySpawnAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── reserved.json │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── EntitySpawnCallbackArgs │ │ └── prototype │ │ │ ├── dimensionLocation │ │ │ └── README.md │ │ │ ├── spawnReason │ │ │ └── README.md │ │ │ └── spawnType │ │ │ └── README.md │ │ ├── EntitySpawnType │ │ └── prototype │ │ │ ├── entityId │ │ │ └── README.md │ │ │ ├── getSpawnAABB │ │ │ └── README.md │ │ │ ├── height │ │ │ └── README.md │ │ │ ├── isBlockDangerous │ │ │ └── README.md │ │ │ ├── isImmuneFire │ │ │ └── README.md │ │ │ ├── isSummonable │ │ │ └── README.md │ │ │ ├── spawnCategory │ │ │ └── README.md │ │ │ └── width │ │ │ └── README.md │ │ ├── EntityStrengthComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── max │ │ │ └── README.md │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityTameMountComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── isTamed │ │ │ └── README.md │ │ │ ├── isTamedToPlayer │ │ │ └── README.md │ │ │ ├── tame │ │ │ └── README.md │ │ │ ├── tameToPlayer │ │ │ └── README.md │ │ │ ├── tamedToPlayer │ │ │ └── README.md │ │ │ └── tamedToPlayerId │ │ │ └── README.md │ │ ├── EntityTameableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── getTameItems │ │ │ └── README.md │ │ │ ├── isTamed │ │ │ └── README.md │ │ │ ├── probability │ │ │ └── README.md │ │ │ ├── tame │ │ │ └── README.md │ │ │ ├── tamedToPlayer │ │ │ └── README.md │ │ │ └── tamedToPlayerId │ │ │ └── README.md │ │ ├── EntityType │ │ └── prototype │ │ │ └── id │ │ │ └── README.md │ │ ├── EntityTypeFamilyComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── getTypeFamilies │ │ │ └── README.md │ │ │ └── hasTypeFamily │ │ │ └── README.md │ │ ├── EntityTypeIterator │ │ └── prototype │ │ │ ├── [Symbol │ │ │ └── iterator] │ │ │ │ └── README.md │ │ │ └── next │ │ │ └── README.md │ │ ├── EntityTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── README.md │ │ ├── EntityUnderwaterMovementComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EntityVariantComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ └── value │ │ │ └── README.md │ │ ├── EntityWantsJockeyComponent │ │ └── componentId │ │ │ └── README.md │ │ ├── EqualsComparison │ │ └── README.md │ │ ├── ExplosionAfterEvent │ │ └── prototype │ │ │ ├── dimension │ │ │ └── README.md │ │ │ ├── getImpactedBlocks │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ExplosionAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ExplosionBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ └── setImpactedBlocks │ │ │ └── README.md │ │ ├── ExplosionBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ExplosionOptions │ │ └── reserved.json │ │ ├── FeedItem │ │ └── prototype │ │ │ ├── getEffects │ │ │ └── README.md │ │ │ ├── healAmount │ │ │ └── README.md │ │ │ └── item │ │ │ └── README.md │ │ ├── FeedItemEffect │ │ └── prototype │ │ │ ├── amplifier │ │ │ └── README.md │ │ │ ├── chance │ │ │ └── README.md │ │ │ ├── duration │ │ │ └── README.md │ │ │ └── name │ │ │ └── README.md │ │ ├── FluidContainer │ │ ├── maxFillLevel │ │ │ └── README.md │ │ └── minFillLevel │ │ │ └── README.md │ │ ├── GameRuleChangeAfterEvent │ │ └── prototype │ │ │ ├── rule │ │ │ └── README.md │ │ │ └── value │ │ │ └── README.md │ │ ├── GameRuleChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── GameRules │ │ ├── constructor │ │ └── prototype │ │ │ ├── commandBlockOutput │ │ │ └── README.md │ │ │ ├── commandBlocksEnabled │ │ │ └── README.md │ │ │ ├── doDayLightCycle │ │ │ └── README.md │ │ │ ├── doEntityDrops │ │ │ └── README.md │ │ │ ├── doFireTick │ │ │ └── README.md │ │ │ ├── doImmediateRespawn │ │ │ └── README.md │ │ │ ├── doInsomnia │ │ │ └── README.md │ │ │ ├── doLimitedCrafting │ │ │ └── README.md │ │ │ ├── doMobLoot │ │ │ └── README.md │ │ │ ├── doMobSpawning │ │ │ └── README.md │ │ │ ├── doTileDrops │ │ │ └── README.md │ │ │ ├── doWeatherCycle │ │ │ └── README.md │ │ │ ├── drowningDamage │ │ │ └── README.md │ │ │ ├── fallDamage │ │ │ └── README.md │ │ │ ├── fireDamage │ │ │ └── README.md │ │ │ ├── freezeDamage │ │ │ └── README.md │ │ │ ├── functionCommandLimit │ │ │ └── README.md │ │ │ ├── keepInventory │ │ │ └── README.md │ │ │ ├── locatorBar │ │ │ └── README.md │ │ │ ├── maxCommandChainLength │ │ │ └── README.md │ │ │ ├── mobGriefing │ │ │ └── README.md │ │ │ ├── naturalRegeneration │ │ │ └── README.md │ │ │ ├── playersSleepingPercentage │ │ │ └── README.md │ │ │ ├── projectilesCanBreakBlocks │ │ │ └── README.md │ │ │ ├── pvp │ │ │ └── README.md │ │ │ ├── randomTickSpeed │ │ │ └── README.md │ │ │ ├── recipesUnlock │ │ │ └── README.md │ │ │ ├── respawnBlocksExplode │ │ │ └── README.md │ │ │ ├── sendCommandFeedback │ │ │ └── README.md │ │ │ ├── showBorderEffect │ │ │ └── README.md │ │ │ ├── showCoordinates │ │ │ └── README.md │ │ │ ├── showDaysPlayed │ │ │ └── README.md │ │ │ ├── showDeathMessages │ │ │ └── README.md │ │ │ ├── showRecipeMessages │ │ │ └── README.md │ │ │ ├── showTags │ │ │ └── README.md │ │ │ ├── spawnRadius │ │ │ └── README.md │ │ │ ├── tntExplodes │ │ │ └── README.md │ │ │ └── tntExplosionDropDecay │ │ │ └── README.md │ │ ├── GreaterThanComparison │ │ └── README.md │ │ ├── GreaterThanOrEqualsComparison │ │ └── README.md │ │ ├── HotbarEventOptions │ │ └── README.md │ │ ├── IButtonPushAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ILeverActionAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── IPlayerJoinAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── IPlayerLeaveAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── IPlayerSpawnAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── InputEventOptions │ │ └── README.md │ │ ├── InputInfo │ │ ├── constructor │ │ └── prototype │ │ │ ├── getButtonState │ │ │ └── README.md │ │ │ ├── getMovementVector │ │ │ ├── getMovementDirection.js │ │ │ └── getMovementDirection.ts │ │ │ ├── lastInputModeUsed │ │ │ └── README.md │ │ │ └── touchOnlyAffectsHotbar │ │ │ └── README.md │ │ ├── InventoryItemEventOptions │ │ └── README.md │ │ ├── ItemCompleteUseAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── source │ │ │ └── README.md │ │ │ └── useDuration │ │ │ └── README.md │ │ ├── ItemCompleteUseAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemCompleteUseEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemComponentBeforeDurabilityDamageEvent │ │ └── prototype │ │ │ ├── attackingEntity │ │ │ └── README.md │ │ │ ├── durabilityDamage │ │ │ └── README.md │ │ │ ├── hitEntity │ │ │ └── README.md │ │ │ └── itemStack │ │ │ └── README.md │ │ ├── ItemComponentConsumeEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemComponentHitEntityEvent │ │ └── prototype │ │ │ ├── attackingEntity │ │ │ └── README.md │ │ │ ├── hadEffect │ │ │ └── README.md │ │ │ ├── hitEntity │ │ │ └── README.md │ │ │ └── itemStack │ │ │ └── README.md │ │ ├── ItemComponentMineBlockEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── minedBlockPermutation │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemComponentRegistry │ │ ├── constructor │ │ └── prototype │ │ │ └── registerCustomComponent │ │ │ └── registerComponent.ts │ │ ├── ItemComponentUseEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemComponentUseOnEvent │ │ └── prototype │ │ │ ├── source │ │ │ └── README.md │ │ │ └── usedOnBlockPermutation │ │ │ └── README.md │ │ ├── ItemCompostableComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── compostingChance │ │ │ └── README.md │ │ ├── ItemCooldownComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── cooldownCategory │ │ │ └── README.md │ │ │ ├── cooldownTicks │ │ │ └── README.md │ │ │ ├── getCooldownTicksRemaining │ │ │ └── README.md │ │ │ ├── isCooldownCategory │ │ │ └── README.md │ │ │ └── startCooldown │ │ │ └── README.md │ │ ├── ItemCustomComponent │ │ └── constructor │ │ ├── ItemCustomComponentInstance │ │ └── prototype │ │ │ └── customComponentParameters │ │ │ └── README.md │ │ ├── ItemDurabilityComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── damage │ │ │ └── README.md │ │ │ ├── getDamageChance │ │ │ └── README.md │ │ │ ├── getDamageChanceRange │ │ │ └── README.md │ │ │ └── maxDurability │ │ │ └── README.md │ │ ├── ItemDyeableComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── color │ │ │ └── README.md │ │ │ └── defaultColor │ │ │ └── README.md │ │ ├── ItemEnchantableComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── addEnchantment │ │ │ └── README.md │ │ │ ├── addEnchantments │ │ │ └── README.md │ │ │ ├── canAddEnchantment │ │ │ └── README.md │ │ │ ├── getEnchantment │ │ │ └── README.md │ │ │ ├── getEnchantments │ │ │ └── README.md │ │ │ ├── hasEnchantment │ │ │ └── README.md │ │ │ ├── removeAllEnchantments │ │ │ └── README.md │ │ │ ├── removeEnchantment │ │ │ └── README.md │ │ │ └── slots │ │ │ └── README.md │ │ ├── ItemFoodComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── canAlwaysEat │ │ │ └── README.md │ │ │ ├── nutrition │ │ │ └── README.md │ │ │ ├── saturationModifier │ │ │ └── README.md │ │ │ └── usingConvertsTo │ │ │ └── README.md │ │ ├── ItemInventoryComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ └── container │ │ │ └── README.md │ │ ├── ItemPotionComponent │ │ ├── componentId │ │ │ └── README.md │ │ └── prototype │ │ │ ├── potionEffectType │ │ │ └── README.md │ │ │ ├── potionLiquidType │ │ │ └── README.md │ │ │ └── potionModifierType │ │ │ └── README.md │ │ ├── ItemReleaseUseAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── source │ │ │ └── README.md │ │ │ └── useDuration │ │ │ └── README.md │ │ ├── ItemReleaseUseAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemStack │ │ ├── constructor │ │ ├── createPotion │ │ │ ├── giveHarmingSplashPotion.ts │ │ │ ├── giveRegularFireResistancePotion.ts │ │ │ └── withoutVanillaDataExample.ts │ │ └── prototype │ │ │ ├── 'type' │ │ │ └── README.md │ │ │ ├── amount │ │ │ └── README.md │ │ │ ├── clearDynamicProperties │ │ │ └── README.md │ │ │ ├── clone │ │ │ └── README.md │ │ │ ├── compostingChance │ │ │ └── README.md │ │ │ ├── getCanDestroy │ │ │ └── README.md │ │ │ ├── getCanPlaceOn │ │ │ └── README.md │ │ │ ├── getComponent │ │ │ ├── getItemDurability.js │ │ │ └── reserved.json │ │ │ ├── getComponents │ │ │ └── README.md │ │ │ ├── getDynamicProperty │ │ │ └── README.md │ │ │ ├── getDynamicPropertyIds │ │ │ └── README.md │ │ │ ├── getDynamicPropertyTotalByteCount │ │ │ └── README.md │ │ │ ├── getLore │ │ │ └── README.md │ │ │ ├── getTags │ │ │ └── README.md │ │ │ ├── hasComponent │ │ │ └── README.md │ │ │ ├── hasTag │ │ │ └── README.md │ │ │ ├── isStackable │ │ │ └── README.md │ │ │ ├── isStackableWith │ │ │ └── README.md │ │ │ ├── keepOnDeath │ │ │ └── README.md │ │ │ ├── localizationKey │ │ │ └── README.md │ │ │ ├── lockMode │ │ │ └── README.md │ │ │ ├── matches │ │ │ ├── sameIronSword.js │ │ │ └── sameTrapdoor.js │ │ │ ├── maxAmount │ │ │ └── README.md │ │ │ ├── nameTag │ │ │ └── README.md │ │ │ ├── setCanDestroy │ │ │ └── reserved.json │ │ │ ├── setCanPlaceOn │ │ │ └── reserved.json │ │ │ ├── setDynamicProperties │ │ │ └── README.md │ │ │ ├── setDynamicProperty │ │ │ └── README.md │ │ │ ├── setLore │ │ │ └── reserved.json │ │ │ ├── typeId │ │ │ └── README.md │ │ │ └── weight │ │ │ └── README.md │ │ ├── ItemStartUseAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── source │ │ │ └── README.md │ │ │ └── useDuration │ │ │ └── README.md │ │ ├── ItemStartUseAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemStartUseOnAfterEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemStartUseOnAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemStopUseAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── source │ │ │ └── README.md │ │ │ └── useDuration │ │ │ └── README.md │ │ ├── ItemStopUseAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemStopUseOnAfterEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemStopUseOnAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemType │ │ └── prototype │ │ │ └── id │ │ │ └── README.md │ │ ├── ItemTypes │ │ ├── get │ │ │ └── README.md │ │ └── getAll │ │ │ └── README.md │ │ ├── ItemUseAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemUseAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemUseBeforeEvent │ │ └── prototype │ │ │ └── cancel │ │ │ └── README.md │ │ ├── ItemUseBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemUseOnAfterEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ ├── isFirstEvent │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ItemUseOnAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemUseOnBeforeEvent │ │ └── prototype │ │ │ └── cancel │ │ │ └── README.md │ │ ├── ItemUseOnBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ItemUseOnEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ └── itemStack │ │ │ └── README.md │ │ ├── JigsawPlaceOptions │ │ └── README.md │ │ ├── JigsawStructurePlaceOptions │ │ └── README.md │ │ ├── LessThanComparison │ │ └── README.md │ │ ├── LessThanOrEqualsComparison │ │ └── README.md │ │ ├── LeverActionAfterEvent │ │ ├── constructor │ │ └── prototype │ │ │ ├── isPowered │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── LeverActionAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ListBlockVolume │ │ ├── constructor │ │ └── prototype │ │ │ ├── add │ │ │ └── README.md │ │ │ └── remove │ │ │ └── README.md │ │ ├── MessageReceiveAfterEvent │ │ └── prototype │ │ │ ├── id │ │ │ └── README.md │ │ │ ├── message │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── MolangVariableMap │ │ └── prototype │ │ │ ├── setColorRGB │ │ │ └── README.md │ │ │ ├── setColorRGBA │ │ │ └── README.md │ │ │ ├── setFloat │ │ │ └── README.md │ │ │ ├── setSpeedAndDirection │ │ │ └── README.md │ │ │ └── setVector3 │ │ │ └── README.md │ │ ├── MusicOptions │ │ └── README.md │ │ ├── NotEqualsComparison │ │ └── README.md │ │ ├── ObstructionCallbackArgs │ │ └── prototype │ │ │ ├── dimension │ │ │ └── README.md │ │ │ ├── entity │ │ │ └── README.md │ │ │ └── spawnType │ │ │ └── README.md │ │ ├── PistonActivateAfterEvent │ │ ├── constructor │ │ └── prototype │ │ │ ├── isExpanding │ │ │ └── README.md │ │ │ └── piston │ │ │ └── README.md │ │ ├── PistonActivateAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── reserved.json │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PistonActivateBeforeEventSignal │ │ └── prototype │ │ │ └── subscribe │ │ │ └── reserved.json │ │ ├── PlayAnimationOptions │ │ └── README.md │ │ ├── Player │ │ ├── constructor │ │ └── prototype │ │ │ ├── addExperience │ │ │ └── addXpToPlayer.ts │ │ │ ├── addLevels │ │ │ └── addLevels.ts │ │ │ ├── camera │ │ │ └── cutscene.js │ │ │ ├── clearPropertyOverridesForEntity │ │ │ └── README.md │ │ │ ├── clientSystemInfo │ │ │ └── README.md │ │ │ ├── commandPermissionLevel │ │ │ ├── README.md │ │ │ └── index.md │ │ │ ├── eatItem │ │ │ └── README.md │ │ │ ├── getAimAssist │ │ │ └── README.md │ │ │ ├── getGameMode │ │ │ └── displayGameMode.js │ │ │ ├── getItemCooldown │ │ │ └── getEquipmentCooldown.js │ │ │ ├── getSpawnPoint │ │ │ └── getSpawnPoint.js │ │ │ ├── getTotalXp │ │ │ └── README.md │ │ │ ├── graphicsMode │ │ │ └── README.md │ │ │ ├── inputInfo │ │ │ └── README.md │ │ │ ├── inputPermissions │ │ │ └── README.md │ │ │ ├── isEmoting │ │ │ └── README.md │ │ │ ├── isFlying │ │ │ └── isPlayerFlying.js │ │ │ ├── isGliding │ │ │ └── isPlayerGliding.js │ │ │ ├── isJumping │ │ │ └── isPlayerJumping.js │ │ │ ├── isOp │ │ │ └── README.md │ │ │ ├── level │ │ │ └── showProgress.ts │ │ │ ├── location │ │ │ └── outputLocation.js │ │ │ ├── name │ │ │ └── welcomeMessage.ts │ │ │ ├── onScreenDisplay │ │ │ ├── setActionBar.ts │ │ │ ├── showHotbarOnly.ts │ │ │ ├── subtitleOnly.ts │ │ │ └── welcome.ts │ │ │ ├── playMusic │ │ │ └── README.md │ │ │ ├── playSound │ │ │ ├── playCreatorMusicBox.ts │ │ │ └── reserved.json │ │ │ ├── playerPermissionLevel │ │ │ └── README.md │ │ │ ├── postClientMessage │ │ │ └── README.md │ │ │ ├── queueMusic │ │ │ └── queueAllMusic.ts │ │ │ ├── removePropertyOverrideForEntity │ │ │ └── README.md │ │ │ ├── resetLevel │ │ │ └── resetEveryoneLevel.ts │ │ │ ├── selectedSlotIndex │ │ │ └── saySelectedItem.ts │ │ │ ├── sendMessage │ │ │ └── reserved.json │ │ │ ├── setGameMode │ │ │ └── setCreativeMode.js │ │ │ ├── setOp │ │ │ └── README.md │ │ │ ├── setPropertyOverrideForEntity │ │ │ └── README.md │ │ │ ├── setSpawnPoint │ │ │ └── README.md │ │ │ ├── spawnParticle │ │ │ └── reserved.json │ │ │ ├── startItemCooldown │ │ │ └── README.md │ │ │ ├── stopAllSounds │ │ │ └── README.md │ │ │ ├── stopMusic │ │ │ └── README.md │ │ │ ├── stopSound │ │ │ └── README.md │ │ │ ├── totalXpNeededForNextLevel │ │ │ └── awfulCountdown.ts │ │ │ └── xpEarnedAtCurrentLevel │ │ │ └── README.md │ │ ├── PlayerAimAssist │ │ └── prototype │ │ │ ├── set │ │ │ └── README.md │ │ │ └── settings │ │ │ └── README.md │ │ ├── PlayerAimAssistSettings │ │ └── README.md │ │ ├── PlayerBreakBlockAfterEvent │ │ └── prototype │ │ │ ├── brokenBlockPermutation │ │ │ └── README.md │ │ │ ├── itemStackAfterBreak │ │ │ └── README.md │ │ │ ├── itemStackBeforeBreak │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerBreakBlockAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerBreakBlockBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerBreakBlockBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerButtonInputAfterEvent │ │ └── prototype │ │ │ ├── button │ │ │ └── README.md │ │ │ ├── newButtonState │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerButtonInputAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerCursorInventoryComponent │ │ ├── componentId │ │ │ └── README.md │ │ ├── constructor │ │ └── prototype │ │ │ ├── clear │ │ │ └── README.md │ │ │ └── item │ │ │ └── README.md │ │ ├── PlayerDimensionChangeAfterEvent │ │ └── prototype │ │ │ ├── fromDimension │ │ │ └── README.md │ │ │ ├── fromLocation │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ ├── toDimension │ │ │ └── README.md │ │ │ └── toLocation │ │ │ └── README.md │ │ ├── PlayerDimensionChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerEmoteAfterEvent │ │ └── prototype │ │ │ ├── personaPieceId │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerEmoteAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerGameModeChangeAfterEvent │ │ └── prototype │ │ │ ├── fromGameMode │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── toGameMode │ │ │ └── README.md │ │ ├── PlayerGameModeChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerGameModeChangeBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── fromGameMode │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── toGameMode │ │ │ └── README.md │ │ ├── PlayerGameModeChangeBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerHotbarSelectedSlotChangeAfterEvent │ │ └── prototype │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── newSlotSelected │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── previousSlotSelected │ │ │ └── README.md │ │ ├── PlayerHotbarSelectedSlotChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInputModeChangeAfterEvent │ │ └── prototype │ │ │ ├── newInputModeUsed │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── previousInputModeUsed │ │ │ └── README.md │ │ ├── PlayerInputModeChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInputPermissionCategoryChangeAfterEvent │ │ └── prototype │ │ │ ├── category │ │ │ └── README.md │ │ │ ├── enabled │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerInputPermissionCategoryChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInputPermissions │ │ └── prototype │ │ │ ├── cameraEnabled │ │ │ └── README.md │ │ │ ├── isPermissionCategoryEnabled │ │ │ └── README.md │ │ │ ├── movementEnabled │ │ │ └── README.md │ │ │ └── setPermissionCategory │ │ │ └── README.md │ │ ├── PlayerInteractWithBlockAfterEvent │ │ └── prototype │ │ │ ├── beforeItemStack │ │ │ └── README.md │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ ├── isFirstEvent │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerInteractWithBlockAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInteractWithBlockBeforeEvent │ │ └── prototype │ │ │ ├── block │ │ │ └── README.md │ │ │ ├── blockFace │ │ │ └── README.md │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ ├── isFirstEvent │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerInteractWithBlockBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInteractWithEntityAfterEvent │ │ └── prototype │ │ │ ├── beforeItemStack │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── target │ │ │ └── README.md │ │ ├── PlayerInteractWithEntityAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInteractWithEntityBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── target │ │ │ └── README.md │ │ ├── PlayerInteractWithEntityBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerInventoryItemChangeAfterEvent │ │ └── prototype │ │ │ ├── beforeItemStack │ │ │ └── README.md │ │ │ ├── inventoryType │ │ │ └── README.md │ │ │ ├── itemStack │ │ │ └── README.md │ │ │ ├── player │ │ │ └── README.md │ │ │ └── slot │ │ │ └── README.md │ │ ├── PlayerInventoryItemChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerIterator │ │ └── prototype │ │ │ ├── [Symbol │ │ │ └── iterator] │ │ │ │ └── README.md │ │ │ └── next │ │ │ └── README.md │ │ ├── PlayerJoinAfterEvent │ │ └── prototype │ │ │ ├── playerId │ │ │ └── README.md │ │ │ └── playerName │ │ │ └── README.md │ │ ├── PlayerJoinAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerLeaveAfterEvent │ │ └── prototype │ │ │ ├── playerId │ │ │ └── README.md │ │ │ └── playerName │ │ │ └── README.md │ │ ├── PlayerLeaveAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerLeaveBeforeEvent │ │ └── prototype │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerLeaveBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerPlaceBlockAfterEvent │ │ └── prototype │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerPlaceBlockAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerPlaceBlockBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── face │ │ │ └── README.md │ │ │ ├── faceLocation │ │ │ └── README.md │ │ │ ├── permutationBeingPlaced │ │ │ └── README.md │ │ │ ├── permutationToPlace │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerPlaceBlockBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PlayerSoundOptions │ │ └── README.md │ │ ├── PlayerSpawnAfterEvent │ │ └── prototype │ │ │ ├── initialSpawn │ │ │ └── README.md │ │ │ └── player │ │ │ └── README.md │ │ ├── PlayerSpawnAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PotionEffectType │ │ └── prototype │ │ │ └── id │ │ │ └── README.md │ │ ├── PotionLiquidType │ │ └── prototype │ │ │ └── id │ │ │ └── README.md │ │ ├── PotionModifierType │ │ └── prototype │ │ │ └── id │ │ │ └── README.md │ │ ├── PotionOptions │ │ └── README.md │ │ ├── Potions │ │ ├── getPotionEffectType │ │ │ └── README.md │ │ ├── getPotionLiquidType │ │ │ └── README.md │ │ └── getPotionModifierType │ │ │ └── README.md │ │ ├── PressurePlatePopAfterEvent │ │ └── prototype │ │ │ ├── previousRedstonePower │ │ │ └── README.md │ │ │ └── redstonePower │ │ │ └── README.md │ │ ├── PressurePlatePopAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── PressurePlatePushAfterEvent │ │ └── prototype │ │ │ ├── previousRedstonePower │ │ │ └── README.md │ │ │ ├── redstonePower │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── PressurePlatePushAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ProjectileHitBlockAfterEvent │ │ └── prototype │ │ │ ├── dimension │ │ │ └── README.md │ │ │ ├── getBlockHit │ │ │ └── README.md │ │ │ ├── hitVector │ │ │ └── README.md │ │ │ ├── location │ │ │ └── README.md │ │ │ ├── projectile │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ProjectileHitBlockAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ProjectileHitEntityAfterEvent │ │ └── prototype │ │ │ ├── dimension │ │ │ └── README.md │ │ │ ├── getEntityHit │ │ │ └── README.md │ │ │ ├── hitVector │ │ │ └── README.md │ │ │ ├── location │ │ │ └── README.md │ │ │ ├── projectile │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── ProjectileHitEntityAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ProjectileShootOptions │ │ └── README.md │ │ ├── RGB │ │ └── README.md │ │ ├── RGBA │ │ └── README.md │ │ ├── RangeComparison │ │ └── README.md │ │ ├── RawMessage │ │ ├── deathMessage.ts │ │ └── reserved.json │ │ ├── RawMessageScore │ │ └── README.md │ │ ├── RawText │ │ └── README.md │ │ ├── Scoreboard │ │ ├── constructor │ │ └── prototype │ │ │ ├── addObjective │ │ │ ├── addObjective.js │ │ │ └── reserved.json │ │ │ ├── clearObjectiveAtDisplaySlot │ │ │ └── clearAtDisplaySlot.js │ │ │ ├── getObjective │ │ │ └── getPlayerMoneyObjective.js │ │ │ ├── getObjectiveAtDisplaySlot │ │ │ └── objectiveAtDisplaySlot.js │ │ │ ├── getObjectives │ │ │ └── objectives.js │ │ │ ├── getParticipants │ │ │ └── participants.js │ │ │ ├── removeObjective │ │ │ └── removeMoney.js │ │ │ └── setObjectiveAtDisplaySlot │ │ │ └── setAtDisplaySlot.js │ │ ├── ScoreboardIdentity │ │ └── prototype │ │ │ ├── 'type' │ │ │ └── README.md │ │ │ ├── displayName │ │ │ └── README.md │ │ │ ├── getEntity │ │ │ └── README.md │ │ │ ├── id │ │ │ └── README.md │ │ │ └── isValid │ │ │ └── README.md │ │ ├── ScoreboardObjective │ │ └── prototype │ │ │ ├── addScore │ │ │ ├── addPlayerMoney.js │ │ │ └── removeScore.js │ │ │ ├── displayName │ │ │ └── README.md │ │ │ ├── getParticipants │ │ │ └── README.md │ │ │ ├── getScore │ │ │ └── README.md │ │ │ ├── getScores │ │ │ └── topPlayer.ts │ │ │ ├── hasParticipant │ │ │ └── README.md │ │ │ ├── id │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── removeParticipant │ │ │ └── README.md │ │ │ └── setScore │ │ │ └── resetMoney.js │ │ ├── ScoreboardObjectiveDisplayOptions │ │ └── README.md │ │ ├── ScoreboardScoreInfo │ │ └── prototype │ │ │ ├── participant │ │ │ └── README.md │ │ │ └── score │ │ │ └── README.md │ │ ├── ScreenDisplay │ │ ├── constructor │ │ └── prototype │ │ │ ├── getHiddenHudElements │ │ │ └── README.md │ │ │ ├── hideAllExcept │ │ │ └── README.md │ │ │ ├── isForcedHidden │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── resetHudElements │ │ │ └── README.md │ │ │ ├── resetHudElementsVisibility │ │ │ └── README.md │ │ │ ├── setActionBar │ │ │ └── greet.js │ │ │ ├── setHudVisibility │ │ │ └── README.md │ │ │ ├── setTitle │ │ │ ├── greet.js │ │ │ └── reserved.json │ │ │ └── updateSubtitle │ │ │ └── reserved.json │ │ ├── ScriptEventCommandMessageAfterEvent │ │ └── prototype │ │ │ ├── id │ │ │ └── README.md │ │ │ ├── initiator │ │ │ └── README.md │ │ │ ├── message │ │ │ └── README.md │ │ │ ├── sourceBlock │ │ │ └── README.md │ │ │ ├── sourceEntity │ │ │ └── README.md │ │ │ └── sourceType │ │ │ └── README.md │ │ ├── ScriptEventCommandMessageAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ScriptEventMessageFilterOptions │ │ └── README.md │ │ ├── Seat │ │ └── prototype │ │ │ ├── lockRiderRotation │ │ │ └── README.md │ │ │ ├── maxRiderCount │ │ │ └── README.md │ │ │ ├── minRiderCount │ │ │ └── README.md │ │ │ ├── position │ │ │ └── README.md │ │ │ └── seatRotation │ │ │ └── README.md │ │ ├── ServerMessageAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── ShutdownBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── SpawnEntityOptions │ │ └── README.md │ │ ├── SpawnRulesRegistry │ │ └── prototype │ │ │ ├── registerEntitySpawnCallback │ │ │ └── README.md │ │ │ └── registerObstructionCallback │ │ │ └── README.md │ │ ├── StartupBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── StartupEvent │ │ └── prototype │ │ │ ├── blockComponentRegistry │ │ │ └── README.md │ │ │ ├── customCommandRegistry │ │ │ ├── jayly-switchdimension.ts │ │ │ ├── mojang-dirtster.ts │ │ │ ├── mojang-hellocustomcommand.ts │ │ │ └── mojang-party.ts │ │ │ ├── getSpawnRulesRegistry │ │ │ └── README.md │ │ │ └── itemComponentRegistry │ │ │ └── README.md │ │ ├── Structure │ │ └── prototype │ │ │ ├── getBlockPermutation │ │ │ └── README.md │ │ │ ├── getIsWaterlogged │ │ │ └── README.md │ │ │ ├── id │ │ │ └── README.md │ │ │ ├── isValid │ │ │ └── README.md │ │ │ ├── saveAs │ │ │ └── README.md │ │ │ ├── saveToWorld │ │ │ └── README.md │ │ │ ├── setBlockPermutation │ │ │ └── README.md │ │ │ └── size │ │ │ └── README.md │ │ ├── StructureCreateOptions │ │ └── README.md │ │ ├── StructureManager │ │ └── prototype │ │ │ ├── createEmpty │ │ │ └── randomStructure.js │ │ │ ├── createFromWorld │ │ │ └── structureFromWorld.js │ │ │ ├── delete │ │ │ └── deleteStructure.js │ │ │ ├── get │ │ │ └── getStructure.js │ │ │ ├── getWorldStructureIds │ │ │ └── getAllDiskStructures.ts │ │ │ ├── place │ │ │ ├── placeRandom.js │ │ │ └── placeTestStructure.js │ │ │ ├── placeJigsaw │ │ │ └── README.md │ │ │ └── placeJigsawStructure │ │ │ ├── placeTrailRuins.js │ │ │ └── placeTrialChambers.js │ │ ├── StructurePlaceOptions │ │ └── README.md │ │ ├── System │ │ ├── constructor │ │ └── prototype │ │ │ ├── afterEvents │ │ │ └── greet.js │ │ │ ├── beforeEvents │ │ │ └── README.md │ │ │ ├── clearJob │ │ │ └── stopPlayerSneakAlert.js │ │ │ ├── clearRun │ │ │ ├── clearRun.js │ │ │ └── stopPlayerSneakAlert.js │ │ │ ├── currentTick │ │ │ └── displayTick.js │ │ │ ├── isEditorWorld │ │ │ └── README.md │ │ │ ├── run │ │ │ ├── reserved.json │ │ │ └── run.js │ │ │ ├── runInterval │ │ │ ├── playerSneakAlert.js │ │ │ └── reserved.json │ │ │ ├── runJob │ │ │ ├── playerSneakAlert.js │ │ │ └── reserved.json │ │ │ ├── runTimeout │ │ │ └── runTimeout.js │ │ │ ├── scriptEvent │ │ │ └── README.md │ │ │ ├── sendScriptEvent │ │ │ └── README.md │ │ │ ├── serverSystemInfo │ │ │ └── README.md │ │ │ └── waitTicks │ │ │ └── heal.js │ │ ├── SystemAfterEvents │ │ └── prototype │ │ │ └── scriptEventReceive │ │ │ ├── entity.js │ │ │ └── server.js │ │ ├── SystemBeforeEvents │ │ └── prototype │ │ │ ├── shutdown │ │ │ └── README.md │ │ │ ├── startup │ │ │ └── README.md │ │ │ └── watchdogTerminate │ │ │ └── cancelTerminate.js │ │ ├── SystemInfo │ │ └── prototype │ │ │ └── memoryTier │ │ │ ├── showClientMemory.ts │ │ │ └── showServerMemory.ts │ │ ├── TargetBlockHitAfterEvent │ │ └── prototype │ │ │ ├── hitVector │ │ │ └── README.md │ │ │ ├── previousRedstonePower │ │ │ └── README.md │ │ │ ├── redstonePower │ │ │ └── README.md │ │ │ └── source │ │ │ └── README.md │ │ ├── TargetBlockHitAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── TeleportOptions │ │ └── reserved.json │ │ ├── TitleDisplayOptions │ │ └── README.md │ │ ├── Trigger │ │ ├── constructor │ │ └── prototype │ │ │ └── eventName │ │ │ └── README.md │ │ ├── TripWireTripAfterEvent │ │ ├── constructor │ │ └── prototype │ │ │ ├── isPowered │ │ │ └── README.md │ │ │ └── sources │ │ │ └── README.md │ │ ├── TripWireTripAfterEventSignal │ │ ├── constructor │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── Vector2 │ │ └── constructor │ │ ├── Vector3 │ │ └── constructor │ │ ├── VectorXZ │ │ └── README.md │ │ ├── WatchdogTerminateBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ └── terminateReason │ │ │ └── README.md │ │ ├── WatchdogTerminateBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── WeatherChangeAfterEvent │ │ └── prototype │ │ │ ├── dimension │ │ │ └── README.md │ │ │ ├── newWeather │ │ │ └── README.md │ │ │ └── previousWeather │ │ │ └── README.md │ │ ├── WeatherChangeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── WeatherChangeBeforeEvent │ │ └── prototype │ │ │ ├── cancel │ │ │ └── README.md │ │ │ ├── duration │ │ │ └── README.md │ │ │ ├── newWeather │ │ │ └── README.md │ │ │ └── previousWeather │ │ │ └── README.md │ │ ├── WeatherChangeBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── World │ │ └── prototype │ │ │ ├── afterEvents │ │ │ └── triggerEventOnce.js │ │ │ ├── beforeEvents │ │ │ ├── fixRequiredPrivilegesError.js │ │ │ ├── reserved.json │ │ │ └── triggerBeforeEventOnce.js │ │ │ ├── broadcastClientMessage │ │ │ └── README.md │ │ │ ├── clearDynamicProperties │ │ │ └── clearProperties.ts │ │ │ ├── gameRules │ │ │ └── disableGamerules.ts │ │ │ ├── getAbsoluteTime │ │ │ └── gametime.ts │ │ │ ├── getAimAssist │ │ │ └── README.md │ │ │ ├── getAllPlayers │ │ │ └── displayEveryoneHealth.ts │ │ │ ├── getDay │ │ │ └── broadcastDay.ts │ │ │ ├── getDefaultSpawnLocation │ │ │ └── printSpawnLocation.ts │ │ │ ├── getDifficulty │ │ │ └── README.md │ │ │ ├── getDimension │ │ │ ├── getNether.js │ │ │ ├── getOverworld.js │ │ │ └── getTheEnd.js │ │ │ ├── getDynamicProperty │ │ │ ├── reserved.json │ │ │ └── retrieve.js │ │ │ ├── getDynamicPropertyIds │ │ │ └── listPropertiesAndValues.ts │ │ │ ├── getDynamicPropertyTotalByteCount │ │ │ └── getByteCount.ts │ │ │ ├── getEntity │ │ │ └── getNpc.js │ │ │ ├── getMoonPhase │ │ │ └── sayMoonPhase.ts │ │ │ ├── getPlayers │ │ │ ├── getFamily.js │ │ │ └── getFilteredPlayers.ts │ │ │ ├── getTimeOfDay │ │ │ └── broadcastTimeOfDay.ts │ │ │ ├── isHardcore │ │ │ └── checkMode.js │ │ │ ├── playMusic │ │ │ ├── music.js │ │ │ └── reserved.json │ │ │ ├── playSound │ │ │ ├── reserved.json │ │ │ └── sound.js │ │ │ ├── queueMusic │ │ │ └── queueMusicForAll.ts │ │ │ ├── scoreboard │ │ │ └── getScoreboard.js │ │ │ ├── sendMessage │ │ │ ├── message.js │ │ │ └── reserved.json │ │ │ ├── setAbsoluteTime │ │ │ └── setDay.js │ │ │ ├── setDefaultSpawnLocation │ │ │ └── setWorldSpawn.js │ │ │ ├── setDifficulty │ │ │ └── README.md │ │ │ ├── setDynamicProperties │ │ │ └── README.md │ │ │ ├── setDynamicProperty │ │ │ ├── assign.js │ │ │ └── reserved.json │ │ │ ├── setTimeOfDay │ │ │ ├── setTimeToDay.ts │ │ │ └── setTimeToMidnight.ts │ │ │ ├── stopMusic │ │ │ └── stopMusicForAll.ts │ │ │ └── structureManager │ │ │ └── getAllDiskStructures.ts │ │ ├── WorldAfterEvents │ │ └── prototype │ │ │ ├── blockExplode │ │ │ └── setBlockBack.ts │ │ │ ├── buttonPush │ │ │ └── subscribe.js │ │ │ ├── chatSend │ │ │ └── subscribe.js │ │ │ ├── dataDrivenEntityTrigger │ │ │ └── sheepEventListener.ts │ │ │ ├── effectAdd │ │ │ └── effectAdd.js │ │ │ ├── entityDie │ │ │ └── deathMessage.js │ │ │ ├── entityHealthChanged │ │ │ └── logger.js │ │ │ ├── entityHitBlock │ │ │ └── hitBlock.js │ │ │ ├── entityHitEntity │ │ │ └── getDistance.js │ │ │ ├── entityHurt │ │ │ └── entityHurt.js │ │ │ ├── entityLoad │ │ │ └── inform.ts │ │ │ ├── entityRemove │ │ │ └── subscribe.js │ │ │ ├── entitySpawn │ │ │ └── spawnMessage.js │ │ │ ├── explosion │ │ │ └── log.ts │ │ │ ├── gameRuleChange │ │ │ └── subscribe.js │ │ │ ├── itemCompleteUse │ │ │ └── subscribe.js │ │ │ ├── itemReleaseUse │ │ │ └── subscribe.js │ │ │ ├── itemStartUse │ │ │ └── subscribe.js │ │ │ ├── itemStartUseOn │ │ │ └── subscribe.js │ │ │ ├── itemStopUse │ │ │ └── subscribe.js │ │ │ ├── itemStopUseOn │ │ │ └── subscribe.js │ │ │ ├── itemUse │ │ │ └── subscribe.js │ │ │ ├── itemUseOn │ │ │ └── subscribe.js │ │ │ ├── leverAction │ │ │ └── subscribe.js │ │ │ ├── messageReceive │ │ │ └── README.md │ │ │ ├── pistonActivate │ │ │ └── subscribe.js │ │ │ ├── playerBreakBlock │ │ │ └── subscribe.js │ │ │ ├── playerButtonInput │ │ │ └── README.md │ │ │ ├── playerDimensionChange │ │ │ └── subscribe.js │ │ │ ├── playerEmote │ │ │ └── subscribe.js │ │ │ ├── playerGameModeChange │ │ │ └── subscribe.js │ │ │ ├── playerHotbarSelectedSlotChange │ │ │ └── README.md │ │ │ ├── playerInputModeChange │ │ │ └── README.md │ │ │ ├── playerInputPermissionCategoryChange │ │ │ └── subscribe.js │ │ │ ├── playerInteractWithBlock │ │ │ └── subscribe.js │ │ │ ├── playerInteractWithEntity │ │ │ └── subscribe.js │ │ │ ├── playerInventoryItemChange │ │ │ └── README.md │ │ │ ├── playerJoin │ │ │ └── subscribe.js │ │ │ ├── playerLeave │ │ │ └── leaveMessage.js │ │ │ ├── playerPlaceBlock │ │ │ └── subscribe.js │ │ │ ├── playerSpawn │ │ │ └── initialSpawn.js │ │ │ ├── pressurePlatePop │ │ │ └── subscribe.js │ │ │ ├── pressurePlatePush │ │ │ └── subscribe.js │ │ │ ├── projectileHitBlock │ │ │ └── subscribe.js │ │ │ ├── projectileHitEntity │ │ │ └── subscribe.js │ │ │ ├── targetBlockHit │ │ │ └── subscribe.js │ │ │ ├── tripWireTrip │ │ │ └── subscribe.js │ │ │ ├── weatherChange │ │ │ └── subscribe.js │ │ │ ├── worldInitialize │ │ │ └── subscribe.js │ │ │ └── worldLoad │ │ │ ├── fillBlocksOnLoad.js │ │ │ ├── index.md │ │ │ ├── subscribe.js │ │ │ └── worldload.png │ │ ├── WorldBeforeEvents │ │ └── prototype │ │ │ ├── chatSend │ │ │ ├── reserved.json │ │ │ └── subscribe.js │ │ │ ├── effectAdd │ │ │ └── cancelEffect.js │ │ │ ├── entityRemove │ │ │ └── spawnLightning.ts │ │ │ ├── explosion │ │ │ ├── cancelExplosion.ts │ │ │ └── disableBlockDestroy.ts │ │ │ ├── itemUse │ │ │ └── README.md │ │ │ ├── itemUseOn │ │ │ └── subscribe.ts │ │ │ ├── playerBreakBlock │ │ │ └── disableBlockBreaking.js │ │ │ ├── playerGameModeChange │ │ │ └── disableGameModeChange.js │ │ │ ├── playerInteractWithBlock │ │ │ └── prompt.ts │ │ │ ├── playerInteractWithEntity │ │ │ └── villagerPrompt.ts │ │ │ ├── playerLeave │ │ │ └── README.md │ │ │ ├── playerPlaceBlock │ │ │ └── onPlayerPlaceBlock.ts │ │ │ ├── weatherChange │ │ │ └── README.md │ │ │ └── worldInitialize │ │ │ └── README.md │ │ ├── WorldInitializeAfterEvent │ │ └── prototype │ │ │ └── propertyRegistry │ │ │ └── reserved.json │ │ ├── WorldInitializeAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── WorldInitializeBeforeEvent │ │ └── prototype │ │ │ ├── blockComponentRegistry │ │ │ └── customBlockComponent.ts │ │ │ └── itemComponentRegistry │ │ │ └── customItemComponent.ts │ │ ├── WorldInitializeBeforeEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ ├── WorldLoadAfterEventSignal │ │ └── prototype │ │ │ ├── subscribe │ │ │ └── README.md │ │ │ └── unsubscribe │ │ │ └── README.md │ │ └── WorldSoundOptions │ │ └── README.md ├── README.md ├── clearCache.js ├── package-lock.json ├── package.json ├── tsconfig.json └── types │ ├── README.md │ ├── lib.es2015.core.d.ts │ ├── lib.es2017.sharedmemory.d.ts │ ├── lib.es2020.bigint.d.ts │ ├── lib.es2020.string.d.ts │ ├── lib.es5.d.ts │ └── minecraft-js.d.ts └── media └── example_image.png /docs/assets/features/dynamic-properties/item-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/docs/assets/features/dynamic-properties/item-properties.png -------------------------------------------------------------------------------- /docs/features/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Features 3 | --- 4 | -------------------------------------------------------------------------------- /docs/meta/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Meta 3 | --- -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugArrow/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugBox/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugBox/prototype/bound/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugCircle/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugLine/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugShape/prototype/color/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugShape/prototype/remove/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugShape/prototype/scale/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugSphere/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugText/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/DebugText/prototype/text/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/PluginStats/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/debug-utilities/handleCounts/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. 3 | -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/Sentry/prototype/addBreadcrumb/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/Sentry/prototype/addTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/Sentry/prototype/getTags/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/Sentry/prototype/init/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/Sentry/prototype/removeTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/diagnostics/SentryOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/SecretString/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/ServerSecrets/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "getPlayerProfile.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/ServerSecrets/prototype/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/ServerSecrets/prototype/names/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/ServerVariables/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "getPlayerProfile.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/ServerVariables/prototype/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/TransferPlayerIpPortOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-admin/TransferPlayerNetherNetOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ActionManager/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/BlockMaskList/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/BrushPipelineOperation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/BrushShape/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/BrushShape/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/BuiltInUIManager/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ClipboardItem/prototype/clear/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ClipboardItem/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ClipboardItem/prototype/size/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ClipboardWriteOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ConeBrushShape/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ContiguousSelectionProperties/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CuboidBrushShape/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/getPosition/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/getRay/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/hide/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/isVisible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/moveBy/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Cursor/prototype/show/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CursorAttachmentProperties/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CursorPosition/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CursorProperties/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CursorRay/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CustomWidget/prototype/moveBy/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/CustomWidgetCreateOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/EditorStructure/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/EditorStructureSearchOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/EventSink/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Extension/prototype/name/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Extension/prototype/notes/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ExtensionOptionalParameters/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/GameOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IActionBar/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IActionBarItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IActionBarItemCreationParams/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBlockListPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBlockListPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBlockTableEntryInfo/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBlockTablePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBoolPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IBoolPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IButtonPanePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IButtonPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IButtonPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IColorPickerPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IColorTimelinePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IComboBoxPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IComboBoxPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDataTablePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDataTablePropertyItemEntry/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDataTablePropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDisposable/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDropdownItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDropdownPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDropdownPropertyItemEntry/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDropdownPropertyItemMixIn/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IDropdownPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IEventToken/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IGlobalInputManager/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IImagePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IImagePropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ILinkPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ILinkPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IMenu/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IMenuContainer/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IMenuCreationParams/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IModalControlPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IModalOverlayPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IModalOverlayPaneOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IModalTool/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IModalToolContainer/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/INumberPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/INumberPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/INumberTimelinePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IObservable/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPlayerLogger/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemBase/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsBase/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsBlockList/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsBool/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsDropdown/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsNumber/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsSubPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsTable/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyItemOptionsVector3/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyPaneOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IPropertyTableCellItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IRegisteredKeyBinding/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IRootPropertyPane/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IRootPropertyPaneHeaderAction/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IRootPropertyPaneOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleTool/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolKeyBinding/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolPaneComponent/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolPaneOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolRailComponent/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolRailOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolStatusBarComponent/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISimpleToolStatusBarOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IStatusBar/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IStatusBarItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IStatusBarItemCreationParams/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IStringPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IStringPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISubPanePropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ISubPanePropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ITextPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ITextPropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IToggleGroupPropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IToggleGroupPropertyItemEntry/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IVector3PropertyItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/IVector3PropertyItemOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/LogProperties/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Logger/prototype/debug/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Logger/prototype/error/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Logger/prototype/info/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Logger/prototype/warning/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/MinecraftEditor/prototype/log/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ModalToolCreationParameters/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/ProjectExportOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/PyramidBrushShape/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/QuickExtrudeProperties/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/clear/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/isEmpty/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/moveBy/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/moveTo/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/popVolume/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/set/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Selection/prototype/visible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/SettingsUIElement/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/SettingsUIElementOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/SpeedSettings/prototype/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/SpeedSettings/prototype/set/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WeightedBlock/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/delete/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/deleteWidget/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/getComponent/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/getIsVisible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/group/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/location/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/selectable/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/selected/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/setIsVisible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/valid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/visible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/Widget/prototype/widgetName/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentBaseOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentEntityOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentGizmoOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentGuideOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentSplineOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetComponentTextOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetCreateOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetGroup/prototype/delete/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetGroup/prototype/valid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetGroup/prototype/visible/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-editor/WidgetGroupCreateOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/GameTestErrorContext/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/MoveToOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/RegistrationBuilder/prototype/structureName/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "phantomsShouldFlyFromCats.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/RegistrationBuilder/prototype/tag/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "phantomsShouldFlyFromCats.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Tags/suiteAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Tags/suiteDebug/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Tags/suiteDefault/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Tags/suiteDisabled/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Tags/suiteNextUpdate/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/constructor/index.md: -------------------------------------------------------------------------------- 1 | ![image](https://jaylydev.github.io/scriptapi-docs/assets/minecraft/gametest.png) 2 | -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assert/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertBlockState/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "testIfButtonNotPressed.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertEntityHasArmor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "horseArmorTest.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertEntityHasComponent/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "sheepShearedTest.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertEntityInstancePresentInArea/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleMobTest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertEntityPresentInArea/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleMobTest.ts", 4 | "simpleMobGameTest.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertEntityState/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "villagerEffectTest.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/assertItemEntityCountIs/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "findFeathers.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/destroyBlock/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/fail/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/failIf/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/getBlock/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/getDimension/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/idle/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/onPlayerJump/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/pressButton/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/print/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/pullLever/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/rotateVector/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/setBlockType/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "minibiomes.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/setTntFuse/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/spawn/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleMobTest.ts", 4 | "simpleMobGameTest.ts", 5 | "phantomsShouldFlyFromCats.ts", 6 | "minibiomes.ts" 7 | ] 8 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/spawnAtLocation/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnAdultPig.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/spawnItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/spawnItem/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnEmeralds.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/spreadFromFaceTowardDirection/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spreadFromFaceTowardDirection.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/succeed/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/succeedIf/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/succeedWhen/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleMobGameTest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/succeedWhenEntityPresent/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "phantomsShouldFlyFromCats.ts", 4 | "minibiomes.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/until/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-gametest/Test/prototype/walkTo/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpClient/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleHttpRequest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpClient/prototype/cancelAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpClient/prototype/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpClient/prototype/request/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleHttpRequest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpHeader/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleHttpRequest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpHeader/prototype/key/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpHeader/prototype/value/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "simpleHttpRequest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/addHeader/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/body/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/headers/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/method/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/setBody/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/setHeaders/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/setMethod/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/setTimeout/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/timeout/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpRequest/prototype/uri/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpResponse/prototype/body/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpResponse/prototype/headers/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpResponse/prototype/request/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/HttpResponse/prototype/status/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-net/PacketEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ActionFormData/constructor/index.md: -------------------------------------------------------------------------------- 1 | ![image](https://jaylydev.github.io/scriptapi-docs/assets/minecraft/ActionFormData.png) 2 | -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ActionFormData/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showActionForm.ts", 4 | "showFavoriteMonth.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ActionFormData/prototype/body/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ActionFormResponse/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showActionForm.ts", 4 | "showFavoriteMonth.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/MessageFormData/constructor/index.md: -------------------------------------------------------------------------------- 1 | ![image](https://jaylydev.github.io/scriptapi-docs/assets/minecraft/MessageFormData.png) 2 | -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/MessageFormData/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showBasicMessageForm.ts", 4 | "showTranslatedMessageForm.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/MessageFormResponse/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showBasicMessageForm.ts", 4 | "showTranslatedMessageForm.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormData/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showBasicModalForm.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormData/prototype/show/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormData/prototype/toggle/index.md: -------------------------------------------------------------------------------- 1 | ![label toggle with options](./toggle-options.png) 2 | 3 | > Image from [xKingDark](https://github.com/DarkGamerYT) 4 | -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormDataDropdownOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormDataSliderOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormDataToggleOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server-ui/ModalFormResponse/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "showBasicModalForm.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BiomeTypes/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/'type'/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/above/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/examples/@minecraft/server/Block/prototype/above/README.md -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/bottomCenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/examples/@minecraft/server/Block/prototype/bottomCenter/README.md -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/canPlace/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/examples/@minecraft/server/Block/prototype/center/README.md -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/east/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/examples/@minecraft/server/Block/prototype/east/README.md -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/getItemStack/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/getMapColor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/getTags/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/hasTag/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "checkBlockTags.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/isWaterlogged/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/localizationKey/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/offset/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/setWaterlogged/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/x/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/y/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Block/prototype/z/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBox/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/dilate/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/equals/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/expand/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/getCenter/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/getSpan/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/isInside/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockBoundingBoxUtils/translate/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockComponent/prototype/block/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockEvent/prototype/block/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockEvent/prototype/dimension/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockFillOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockFilter/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockHitInformation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockInventoryComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "placeItemsInChest.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockPermutation/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "addTranslatedSign.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockPermutation/prototype/hasTag/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "checkBlockTags.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockPermutation/resolve/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "addBlockColorCube.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockRaycastHit/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockRaycastOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockSignComponent/componentId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockSignComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "addSign.ts", 4 | "addTwoSidedSign.ts", 5 | "updateSignText.ts", 6 | "addTranslatedSign.ts" 7 | ] 8 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockSignComponent/prototype/setText/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setSignText.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockStateType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockStates/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockStates/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockVolume/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockVolume/prototype/'from'/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BlockVolume/prototype/to/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBox/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/createValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/dilate/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/equals/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/expand/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/getCenter/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/getSpan/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/intersects/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/isInside/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/BoundingBoxUtils/translate/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ButtonPushAfterEvent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "buttonPushEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ButtonPushAfterEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "buttonPushEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Camera/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraDefaultOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraEaseOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraFadeOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraFadeTimeOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraFixedBoomOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraSetFacingOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraSetLocationOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraSetPosOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraSetRotOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CameraTargetOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ChatSendAfterEventSignal/prototype/subscribe/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "custom_command.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ChatSendBeforeEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "customCommand.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Component/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Component/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CompoundBlockVolume/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CompoundBlockVolumeItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "containers.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/clearAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/contains/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/find/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/findLast/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/firstItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/getItem/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "getFirstHotbarItem.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/getSlot/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/moveItem/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "moveBetweenContainers.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/reverseFind/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/size/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/swapItems/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/swapItems/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "swapItems.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/transferItem/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "transferBetweenContainers.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Container/prototype/weight/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerRules/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/'type'/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/amount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/getItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/getLore/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/getTags/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/hasItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/hasTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/nameTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/setItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/setLore/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ContainerSlot/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CustomCommandParameter/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/CustomCommandResult/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/DefinitionModifier/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/createExplosion/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "createExplosion.ts", 4 | "createNoBlockExplosion.ts", 5 | "createExplosions.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/getBlock/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/getEntities/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "bounceSkeletons.ts", 4 | "tagsQuery.ts", 5 | "testThatEntityIsFeatherItem.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/getWeather/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/playSound/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/playSound/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "playMusicAndSound.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/runCommand/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/setWeather/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/spawnEntity/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnAdultHorse.ts", 4 | "quickFoxLazyDog.ts", 5 | "triggerEvent.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/spawnItem/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "itemStacks.ts", 4 | "spawnFeatherItem.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/spawnParticle/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnParticle.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Dimension/prototype/stopSound/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/DimensionLocation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/DimensionType/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/DimensionTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EaseOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Effect/prototype/amplifier/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Effect/prototype/displayName/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Effect/prototype/duration/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Effect/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Effect/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EffectType/prototype/getName/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EffectTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EffectTypes/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Enchantment/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EnchantmentType/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EnchantmentType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EnchantmentTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EnchantmentTypes/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/addEffect/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnPoisonedVillager.ts", 4 | "quickFoxLazyDog.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/addTag/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "tagsQuery.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/applyDamage/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "applyDamageThenHeal.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/applyImpulse/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "applyImpulse.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/applyKnockback/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "bounceSkeletons.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/clearVelocity/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "applyImpulse.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/extinguishFire/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setOnFire.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/getVelocity/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "getFireworkVelocity.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/hasTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/isSleeping/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/isSprinting/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/isSwimming/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/kill/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "tagsQuery.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/lookAt/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/playAnimation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/removeEffect/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/removeTag/removeAdminTag.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | for (const player of world.getAllPlayers()) { 4 | player.removeTag('admin'); 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/resetProperty/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/runCommand/sayCommand.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.afterEvents.entityDie.subscribe(event => { 4 | event.deadEntity.runCommand("say I am dead!"); 5 | }) -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/setOnFire/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setOnFire.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/setRotation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/target/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/teleport/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "teleport.ts", 4 | "teleportMovement.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/triggerEvent/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "triggerEvent.ts", 4 | "triggerEvent.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Entity/prototype/tryTeleport/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityApplyDamageOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityDamageSource/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityEffectOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityEquippableComponent/constructor/index.md: -------------------------------------------------------------------------------- 1 | > [!NOTE] 2 | > This component only exists for all players. It does not exist on all entities. 3 | -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityEquippableComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "givePlayerElytra.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityFilter/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityHealthComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "applyDamageThenHeal.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityHitInformation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityItemComponent/componentId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityItemComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "testThatEntityIsFeatherItem.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityIterator/prototype/next/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityNpcComponent/componentId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityOnFireComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setOnFire.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityProjectileComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "shootArrow.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityQueryPropertyOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityQueryScoreOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityRaycastHit/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityRaycastOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityRideableComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "minibiomes.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityRideableComponent/prototype/addRider/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "minibiomes.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntitySpawnAfterEvent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "logEntitySpawnEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntitySpawnAfterEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "logEntitySpawnEvents.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntitySpawnAfterEventSignal/prototype/subscribe/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "logEntitySpawnEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/EntitySpawnType/prototype/width/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EntityTypes/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/EqualsComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ExplosionOptions/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "createNoBlockExplosion.ts", 4 | "createExplosions.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/FeedItem/prototype/getEffects/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FeedItem/prototype/healAmount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FeedItem/prototype/item/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FeedItemEffect/prototype/chance/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FeedItemEffect/prototype/name/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FluidContainer/maxFillLevel/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/FluidContainer/minFillLevel/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/doFireTick/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/doInsomnia/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/doMobLoot/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/doTileDrops/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/fallDamage/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/fireDamage/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/locatorBar/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/mobGriefing/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/pvp/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/showTags/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/spawnRadius/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GameRules/prototype/tntExplodes/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GreaterThanComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/GreaterThanOrEqualsComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/HotbarEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/InputEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/InventoryItemEventOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemDurabilityComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "giveHurtDiamondSword.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemEnchantableComponent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "givePlayerIronFireSword.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemFoodComponent/componentId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemPotionComponent/componentId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "itemStacks.ts", 4 | "givePlayerEquipment.ts", 5 | "spawnFeatherItem.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/'type'/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/amount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/clone/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/getComponent/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "giveHurtDiamondSword.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/getLore/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/getTags/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/hasTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/isStackable/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/keepOnDeath/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/lockMode/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/matches/sameIronSword.js: -------------------------------------------------------------------------------- 1 | import { ItemStack, world } from "@minecraft/server"; 2 | 3 | const item1 = new ItemStack("minecraft:iron_sword", 1); 4 | item1.matches("minecraft:iron_sword"); -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/maxAmount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/nameTag/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/setCanDestroy/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "giveDestroyRestrictedPickaxe.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/setCanPlaceOn/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "givePlaceRestrictedGoldBlock.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/setLore/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "diamondAwesomeSword.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/typeId/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemStack/prototype/weight/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemTypes/get/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemTypes/getAll/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ItemUseOnEvent/prototype/block/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/JigsawPlaceOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/JigsawStructurePlaceOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/LessThanComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/LessThanOrEqualsComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/LeverActionAfterEvent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "leverActionEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/LeverActionAfterEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "leverActionEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ListBlockVolume/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ListBlockVolume/prototype/add/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/MusicOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/NotEqualsComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PistonActivateAfterEvent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "pistonAfterEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/PistonActivateAfterEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "pistonAfterEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/PistonActivateAfterEventSignal/prototype/subscribe/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "pistonAfterEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/PistonActivateBeforeEventSignal/prototype/subscribe/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "pistonBeforeEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/PlayAnimationOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/constructor/messageEveryPlayer.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | for (const player of world.getAllPlayers()) { 4 | player.sendMessage(`Hello, ${player.name}!`); 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/eatItem/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/getAimAssist/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/getTotalXp/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/graphicsMode/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/inputInfo/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/isEmoting/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/isOp/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/playMusic/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/playSound/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "playMusicAndSound.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/resetLevel/resetEveryoneLevel.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | for (const player of world.getAllPlayers()) { 4 | player.resetLevel(); 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/setGameMode/setCreativeMode.js: -------------------------------------------------------------------------------- 1 | import { GameMode, world } from "@minecraft/server"; 2 | 3 | for (const player of world.getAllPlayers()) { 4 | player.setGameMode(GameMode.creative); 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/setOp/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/setSpawnPoint/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/spawnParticle/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "spawnParticle.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/stopAllSounds/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/stopMusic/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Player/prototype/stopSound/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PlayerAimAssist/prototype/set/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PlayerAimAssistSettings/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PlayerIterator/prototype/next/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PlayerSoundOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PotionEffectType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PotionLiquidType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PotionModifierType/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/PotionOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Potions/getPotionEffectType/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Potions/getPotionLiquidType/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Potions/getPotionModifierType/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ProjectileShootOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/RGB/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/RGBA/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/RangeComparison/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/RawMessage/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "addTranslatedSign.ts", 4 | "showTranslatedMessageForm.ts", 5 | "addTranslatedSign.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/RawMessageScore/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/RawText/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Scoreboard/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "updateScoreboard.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Scoreboard/prototype/addObjective/addObjective.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.scoreboard.addObjective("example", "example"); -------------------------------------------------------------------------------- /examples/@minecraft/server/Scoreboard/prototype/addObjective/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "updateScoreboard.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Scoreboard/prototype/getObjective/getPlayerMoneyObjective.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | const money = world.scoreboard.getObjective("money"); -------------------------------------------------------------------------------- /examples/@minecraft/server/Scoreboard/prototype/removeObjective/removeMoney.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.scoreboard.removeObjective("money"); -------------------------------------------------------------------------------- /examples/@minecraft/server/ScoreboardIdentity/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ScreenDisplay/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setTitle.ts", 4 | "setTitleAndSubtitle.ts", 5 | "countdown.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ScreenDisplay/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/ScreenDisplay/prototype/setTitle/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "setTitle.ts", 4 | "setTitleAndSubtitle.ts", 5 | "countdown.ts" 6 | ] 7 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ScreenDisplay/prototype/updateSubtitle/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "countdown.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/ScriptEventMessageFilterOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Seat/prototype/maxRiderCount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Seat/prototype/minRiderCount/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Seat/prototype/position/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Seat/prototype/seatRotation/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/SpawnEntityOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Structure/prototype/id/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Structure/prototype/isValid/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Structure/prototype/saveAs/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Structure/prototype/saveToWorld/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Structure/prototype/size/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/StructureCreateOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/StructureManager/prototype/delete/deleteStructure.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.structureManager.delete('mystructure:test'); -------------------------------------------------------------------------------- /examples/@minecraft/server/StructureManager/prototype/get/getStructure.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.structureManager.get('mystructure:test'); -------------------------------------------------------------------------------- /examples/@minecraft/server/StructurePlaceOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/System/constructor/tickprocessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/examples/@minecraft/server/System/constructor/tickprocessing.png -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/beforeEvents/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/isEditorWorld/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/run/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "trapTick.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/run/run.js: -------------------------------------------------------------------------------- 1 | import { system } from "@minecraft/server"; 2 | 3 | const runId = system.run(() => { 4 | console.log("Running callback function..."); 5 | }); 6 | -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/runInterval/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "every30Seconds.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/runJob/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "cubeGenerator.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/System/prototype/scriptEvent/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/TeleportOptions/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "teleport.ts", 4 | "teleportMovement.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/TitleDisplayOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Trigger/constructor/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/Trigger/prototype/eventName/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/TripWireTripAfterEvent/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "tripWireTripEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/TripWireTripAfterEventSignal/constructor/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "tripWireTripEvent.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/Vector2/constructor/createVector2.js: -------------------------------------------------------------------------------- 1 | const vec2 = { x: 0, y: 0 }; -------------------------------------------------------------------------------- /examples/@minecraft/server/Vector2/constructor/createVector2.ts: -------------------------------------------------------------------------------- 1 | import { Vector2 } from "@minecraft/server"; 2 | 3 | const vec2: Vector2 = { x: 0, y: 0 }; -------------------------------------------------------------------------------- /examples/@minecraft/server/Vector3/constructor/createVector3.js: -------------------------------------------------------------------------------- 1 | const vec3 = { x: 0, y: 0, z: 0 }; -------------------------------------------------------------------------------- /examples/@minecraft/server/Vector3/constructor/createVector3.ts: -------------------------------------------------------------------------------- 1 | import { Vector3 } from "@minecraft/server"; 2 | 3 | const vec3: Vector3 = { x: 0, y: 0, z: 0 }; -------------------------------------------------------------------------------- /examples/@minecraft/server/VectorXZ/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/beforeEvents/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "customCommand.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/clearDynamicProperties/clearProperties.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.clearDynamicProperties(); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getAbsoluteTime/gametime.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | const gametime = world.getAbsoluteTime(); 4 | world.sendMessage("Current gametime: " + gametime); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getAimAssist/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDay/broadcastDay.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.sendMessage('Day ' + world.getDay()); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDifficulty/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDimension/getNether.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.getDimension("nether"); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDimension/getOverworld.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.getDimension("overworld"); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDimension/getTheEnd.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.getDimension("the_end"); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDynamicProperty/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "incrementDynamicProperty.ts", 4 | "incrementDynamicPropertyInJsonBlob.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getDynamicPropertyTotalByteCount/getByteCount.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.getDynamicPropertyTotalByteCount(); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/getPlayers/getFamily.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | world.getPlayers({ families: ["player"] }); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/playMusic/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "playMusicAndSound.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/playSound/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "playMusicAndSound.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/queueMusic/queueMusicForAll.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.queueMusic('music.game.swamp_music', { loop: true }) -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/scoreboard/getScoreboard.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | const money = world.scoreboard.getObjective("money"); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/sendMessage/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "nestedTranslation.ts", 4 | "scoreWildcard.ts", 5 | "simpleString.ts", 6 | "translation.ts" 7 | ] 8 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setAbsoluteTime/setDay.js: -------------------------------------------------------------------------------- 1 | import { TimeOfDay, world } from "@minecraft/server"; 2 | world.setAbsoluteTime(TimeOfDay.Noon); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setDefaultSpawnLocation/setWorldSpawn.js: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.setDefaultSpawnLocation({ 4 | x: 0, 5 | y: -64, 6 | z: 0, 7 | }); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setDifficulty/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setDynamicProperty/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "incrementDynamicProperty.ts", 4 | "incrementDynamicPropertyInJsonBlob.ts" 5 | ] 6 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setTimeOfDay/setTimeToDay.ts: -------------------------------------------------------------------------------- 1 | import { TimeOfDay, world } from "@minecraft/server"; 2 | 3 | world.setTimeOfDay(TimeOfDay.Day); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/setTimeOfDay/setTimeToMidnight.ts: -------------------------------------------------------------------------------- 1 | import { TimeOfDay, world } from "@minecraft/server"; 2 | 3 | world.setTimeOfDay(TimeOfDay.Midnight); -------------------------------------------------------------------------------- /examples/@minecraft/server/World/prototype/stopMusic/stopMusicForAll.ts: -------------------------------------------------------------------------------- 1 | import { world } from "@minecraft/server"; 2 | 3 | world.stopMusic(); -------------------------------------------------------------------------------- /examples/@minecraft/server/WorldAfterEvents/prototype/tripWireTrip/subscribe.js: -------------------------------------------------------------------------------- 1 | // Script by WavePlayz 2 | 3 | -------------------------------------------------------------------------------- /examples/@minecraft/server/WorldBeforeEvents/prototype/chatSend/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "customCommand.ts" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/WorldInitializeAfterEvent/prototype/propertyRegistry/reserved.json: -------------------------------------------------------------------------------- 1 | { 2 | "reserved_files": [ 3 | "propertyRegistration.js" 4 | ] 5 | } -------------------------------------------------------------------------------- /examples/@minecraft/server/WorldSoundOptions/README.md: -------------------------------------------------------------------------------- 1 | 2 | This folder has no examples. Add a JavaScript or TypeScript file here so that users know how to use. -------------------------------------------------------------------------------- /media/example_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaylyDev/scriptapi-docs/45932dd3db8f7e979a4e9361a0f387ff6c481636/media/example_image.png --------------------------------------------------------------------------------