@hylithiumjs.com/core 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +1081 -761
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -165,6 +165,7 @@ export interface PreparedStatementBuilder {
|
|
|
165
165
|
/**
|
|
166
166
|
* Sets a null parameter.
|
|
167
167
|
* @param index Parameter index (1-based)
|
|
168
|
+
* @param value Boolean value
|
|
168
169
|
*/
|
|
169
170
|
setNull(index: number): PreparedStatementBuilder;
|
|
170
171
|
/**
|
|
@@ -348,8 +349,8 @@ export interface PlayerInteractEvent {
|
|
|
348
349
|
getActionType(): InteractionType;
|
|
349
350
|
getItemInHand(): ItemStack;
|
|
350
351
|
getTargetBlock(): Vector3i;
|
|
351
|
-
getTargetRef(): Ref
|
|
352
|
-
getPlayerRef(): Ref
|
|
352
|
+
getTargetRef(): Ref<EntityStore>;
|
|
353
|
+
getPlayerRef(): Ref<EntityStore>;
|
|
353
354
|
getPlayer(): Player;
|
|
354
355
|
}
|
|
355
356
|
export interface PlayerCraftEvent {
|
|
@@ -458,20 +459,6 @@ export interface LivingEntityUseBlockEvent {
|
|
|
458
459
|
getBlockType(): string;
|
|
459
460
|
}
|
|
460
461
|
export interface BreakBlockEvent {
|
|
461
|
-
getPlayer(): Player | null;
|
|
462
|
-
getEvent(): BreakBlockEventData;
|
|
463
|
-
getItemInHand(): ItemStack;
|
|
464
|
-
getTargetBlock(): Vector3i;
|
|
465
|
-
getBlockType(): BlockType;
|
|
466
|
-
setTargetBlock(arg0: Vector3i): void;
|
|
467
|
-
isCancelled(): boolean;
|
|
468
|
-
setCancelled(arg0: boolean): void;
|
|
469
|
-
}
|
|
470
|
-
/**
|
|
471
|
-
* The inner event data for BreakBlockEvent.
|
|
472
|
-
* Access via event.getEvent() when you need the raw event.
|
|
473
|
-
*/
|
|
474
|
-
export interface BreakBlockEventData {
|
|
475
462
|
getItemInHand(): ItemStack;
|
|
476
463
|
getTargetBlock(): Vector3i;
|
|
477
464
|
getBlockType(): BlockType;
|
|
@@ -480,21 +467,6 @@ export interface BreakBlockEventData {
|
|
|
480
467
|
setCancelled(arg0: boolean): void;
|
|
481
468
|
}
|
|
482
469
|
export interface PlaceBlockEvent {
|
|
483
|
-
getPlayer(): Player | null;
|
|
484
|
-
getEvent(): PlaceBlockEventData;
|
|
485
|
-
getRotation(): RotationTuple;
|
|
486
|
-
setRotation(arg0: RotationTuple): void;
|
|
487
|
-
getItemInHand(): ItemStack;
|
|
488
|
-
getTargetBlock(): Vector3i;
|
|
489
|
-
setTargetBlock(arg0: Vector3i): void;
|
|
490
|
-
isCancelled(): boolean;
|
|
491
|
-
setCancelled(arg0: boolean): void;
|
|
492
|
-
}
|
|
493
|
-
/**
|
|
494
|
-
* The inner event data for PlaceBlockEvent.
|
|
495
|
-
* Access via event.getEvent() when you need the raw event.
|
|
496
|
-
*/
|
|
497
|
-
export interface PlaceBlockEventData {
|
|
498
470
|
getRotation(): RotationTuple;
|
|
499
471
|
setRotation(arg0: RotationTuple): void;
|
|
500
472
|
getItemInHand(): ItemStack;
|
|
@@ -794,12 +766,15 @@ export interface World {
|
|
|
794
766
|
getPlayers(): Player[];
|
|
795
767
|
getPlayerCount(): number;
|
|
796
768
|
getPlayerRefs(): PlayerRef[];
|
|
769
|
+
getTps(): number;
|
|
797
770
|
sendMessage(arg0: Message): void;
|
|
798
771
|
getBlockType(arg0: Vector3i): BlockType;
|
|
799
772
|
getBlockType(arg0: number, arg1: number, arg2: number): BlockType;
|
|
800
773
|
setBlock(arg0: number, arg1: number, arg2: number, arg3: string, arg4: number): void;
|
|
801
774
|
setBlock(arg0: number, arg1: number, arg2: number, arg3: string): void;
|
|
802
775
|
breakBlock(arg0: number, arg1: number, arg2: number, arg3: number): boolean;
|
|
776
|
+
getEntityStore(): EntityStoreWrapper;
|
|
777
|
+
execute(task: () => void): void;
|
|
803
778
|
}
|
|
804
779
|
export interface Universe {
|
|
805
780
|
get(): Universe;
|
|
@@ -904,11 +879,15 @@ export interface BlockState {
|
|
|
904
879
|
getBlockY(): number;
|
|
905
880
|
getBlockZ(): number;
|
|
906
881
|
}
|
|
907
|
-
export interface Holder {
|
|
908
|
-
getComponent(arg0: ComponentType):
|
|
882
|
+
export interface Holder<T = unknown> {
|
|
883
|
+
getComponent<C>(arg0: ComponentType<T, C>): C | null;
|
|
884
|
+
addComponent<C>(componentType: ComponentType<T, C>, component: C): void;
|
|
885
|
+
ensureComponent<C>(componentType: ComponentType<T, C>): void;
|
|
909
886
|
}
|
|
910
|
-
export interface Ref {
|
|
887
|
+
export interface Ref<T = unknown> {
|
|
911
888
|
isValid(): boolean;
|
|
889
|
+
getStore(): Store<T>;
|
|
890
|
+
getIndex(): number;
|
|
912
891
|
}
|
|
913
892
|
export interface Vector3i {
|
|
914
893
|
new (): Vector3i;
|
|
@@ -1051,9 +1030,10 @@ export interface ItemStackTransaction {
|
|
|
1051
1030
|
}
|
|
1052
1031
|
export interface ItemStackSlotTransaction {
|
|
1053
1032
|
}
|
|
1054
|
-
export interface ComponentType {
|
|
1033
|
+
export interface ComponentType<S = unknown, C = unknown> {
|
|
1055
1034
|
}
|
|
1056
|
-
export interface ComponentAccessor {
|
|
1035
|
+
export interface ComponentAccessor<S = unknown> {
|
|
1036
|
+
getComponent<C>(ref: Ref<S>, componentType: ComponentType<S, C>): C | null;
|
|
1057
1037
|
}
|
|
1058
1038
|
export interface DisconnectReason {
|
|
1059
1039
|
}
|
|
@@ -1092,7 +1072,7 @@ export interface DefaultAssetMap {
|
|
|
1092
1072
|
export interface AssetStore {
|
|
1093
1073
|
getAssetMap(): DefaultAssetMap;
|
|
1094
1074
|
}
|
|
1095
|
-
export type EventType = "BootEvent" | "ShutdownEvent" | "PrepareUniverseEvent" | "PlayerConnectEvent" | "PlayerDisconnectEvent" | "PlayerChatEvent" | "PlayerReadyEvent" | "PlayerInteractEvent" | "PlayerCraftEvent" | "PlayerMouseButtonEvent" | "PlayerMouseMotionEvent" | "PlayerSetupConnectEvent" | "PlayerSetupDisconnectEvent" | "AddPlayerToWorldEvent" | "DrainPlayerFromWorldEvent" | "PlayerRefEvent" | "PlayerEvent" | "EntityEvent" | "EntityRemoveEvent" | "LivingEntityInventoryChangeEvent" | "LivingEntityUseBlockEvent" | "BreakBlockEvent" | "PlaceBlockEvent" | "DamageBlockEvent" | "UseBlockEvent" | "DropItemEvent" | "InteractivelyPickupItemEvent" | "ChangeGameModeEvent" | "CraftRecipeEvent" | "DiscoverZoneEvent" | "SwitchActiveSlotEvent" | "PlayerPermissionChangeEvent" | "GroupPermissionChangeEvent" | "PlayerGroupEvent";
|
|
1075
|
+
export type EventType = "BootEvent" | "ShutdownEvent" | "PrepareUniverseEvent" | "PlayerConnectEvent" | "PlayerDisconnectEvent" | "PlayerChatEvent" | "PlayerReadyEvent" | "PlayerInteractEvent" | "PlayerCraftEvent" | "PlayerMouseButtonEvent" | "PlayerMouseMotionEvent" | "PlayerSetupConnectEvent" | "PlayerSetupDisconnectEvent" | "AddPlayerToWorldEvent" | "DrainPlayerFromWorldEvent" | "PlayerRefEvent" | "PlayerEvent" | "EntityEvent" | "EntityRemoveEvent" | "LivingEntityInventoryChangeEvent" | "LivingEntityUseBlockEvent" | "BreakBlockEvent" | "PlaceBlockEvent" | "DamageBlockEvent" | "UseBlockEvent" | "DropItemEvent" | "InteractivelyPickupItemEvent" | "ChangeGameModeEvent" | "CraftRecipeEvent" | "DiscoverZoneEvent" | "SwitchActiveSlotEvent" | "PlayerPermissionChangeEvent" | "GroupPermissionChangeEvent" | "PlayerGroupEvent" | "NPCSpawnEvent" | "NPCDespawnEvent" | "NPCRoleChangeEvent" | "NPCDamageEvent" | "NPCDeathEvent";
|
|
1096
1076
|
export type HexColor = `#${string}`;
|
|
1097
1077
|
export declare const Colors: {
|
|
1098
1078
|
readonly RED: HexColor;
|
|
@@ -1137,10 +1117,20 @@ export interface ScriptLogger {
|
|
|
1137
1117
|
severe(message: string): void;
|
|
1138
1118
|
fine(message: string): void;
|
|
1139
1119
|
}
|
|
1120
|
+
export interface CommandSender {
|
|
1121
|
+
getDisplayName(): string;
|
|
1122
|
+
getUuid(): unknown;
|
|
1123
|
+
sendMessage(message: Message): void;
|
|
1124
|
+
}
|
|
1140
1125
|
export interface CommandContext {
|
|
1141
1126
|
sendMessage(message: string): void;
|
|
1127
|
+
sendFormattedMessage(message: Message): void;
|
|
1142
1128
|
getSenderName(): string;
|
|
1143
1129
|
getInput(): string;
|
|
1130
|
+
isPlayer(): boolean;
|
|
1131
|
+
getSender(): CommandSender;
|
|
1132
|
+
getPlayer(): Player | null;
|
|
1133
|
+
getPlayerRef(): Ref<EntityStore> | null;
|
|
1144
1134
|
}
|
|
1145
1135
|
export interface ScriptCommandRegistry {
|
|
1146
1136
|
register(name: string, description: string, callback: (ctx: CommandContext) => void): void;
|
|
@@ -1323,13 +1313,14 @@ export interface PlayerRef {
|
|
|
1323
1313
|
getTransform(): Transform;
|
|
1324
1314
|
getWorldUuid(): {
|
|
1325
1315
|
toString(): string;
|
|
1326
|
-
};
|
|
1316
|
+
} | null;
|
|
1327
1317
|
getHeadRotation(): Vector3f;
|
|
1328
1318
|
updatePosition(world: World, transform: Transform, headRotation: Vector3f): void;
|
|
1329
1319
|
getPacketHandler(): PacketHandler;
|
|
1330
1320
|
referToServer(host: string, port: number): void;
|
|
1331
1321
|
referToServer(host: string, port: number, data: unknown[]): void;
|
|
1332
1322
|
sendMessage(message: Message): void;
|
|
1323
|
+
getReference(): Ref<EntityStore> | null;
|
|
1333
1324
|
}
|
|
1334
1325
|
export interface DynamicLight {
|
|
1335
1326
|
new (): DynamicLight;
|
|
@@ -1449,7 +1440,8 @@ export interface DisplayNameComponent {
|
|
|
1449
1440
|
}
|
|
1450
1441
|
export interface TransformComponent {
|
|
1451
1442
|
new (): TransformComponent;
|
|
1452
|
-
|
|
1443
|
+
new (position: Vector3d, rotation: Vector3f): TransformComponent;
|
|
1444
|
+
getComponentType(): ComponentType<EntityStore, TransformComponent>;
|
|
1453
1445
|
getPosition(): Vector3d;
|
|
1454
1446
|
setPosition(position: Vector3d): void;
|
|
1455
1447
|
teleportPosition(position: Vector3d): void;
|
|
@@ -5118,687 +5110,357 @@ export interface JavetCallMetrics {
|
|
|
5118
5110
|
getAvgTimeMs(): number;
|
|
5119
5111
|
nanoTime(): number;
|
|
5120
5112
|
}
|
|
5121
|
-
export interface
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
* @param playerRef Referência do Jogador que deseja mostrar o título.
|
|
5153
|
-
* @param primaryTitle O título principal.
|
|
5154
|
-
* @param secondaryTitle O título secundário.
|
|
5155
|
-
* @param isMajor Se o título é major.
|
|
5156
|
-
* @param icon O ícone a ser exibido.
|
|
5157
|
-
* @param duration A duração do título.
|
|
5158
|
-
* @param fadeInDuration A duração do fade in.
|
|
5159
|
-
* @param fadeOutDuration A duração do fade out.
|
|
5160
|
-
*/
|
|
5161
|
-
showEventTitleToPlayer(playerRef: PlayerRef, primaryTitle: Message, secondaryTitle: Message, isMajor: boolean, icon: string | null, duration: number, fadeInDuration: number, fadeOutDuration: number): void;
|
|
5162
|
-
/**
|
|
5163
|
-
* Shows an event title to a specific player with default durations.
|
|
5164
|
-
*/
|
|
5165
|
-
showEventTitleToPlayer(playerRef: PlayerRef, primaryTitle: Message, secondaryTitle: Message, isMajor: boolean): void;
|
|
5166
|
-
/**
|
|
5167
|
-
* Hides the event title from a specific player.
|
|
5168
|
-
*/
|
|
5169
|
-
hideEventTitleFromPlayer(playerRef: PlayerRef, fadeOutDuration: number): void;
|
|
5113
|
+
export interface EntityStore {
|
|
5114
|
+
getWorld(): World;
|
|
5115
|
+
getStore(): Store<EntityStore>;
|
|
5116
|
+
getRefFromUUID(uuid: {
|
|
5117
|
+
toString(): string;
|
|
5118
|
+
}): Ref<EntityStore> | null;
|
|
5119
|
+
getRefFromNetworkId(networkId: number): Ref<EntityStore> | null;
|
|
5120
|
+
}
|
|
5121
|
+
export interface Store<T> {
|
|
5122
|
+
getExternalData(): T;
|
|
5123
|
+
getEntityCount(): number;
|
|
5124
|
+
getComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): C | null;
|
|
5125
|
+
ensureAndGetComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): C;
|
|
5126
|
+
addComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): C;
|
|
5127
|
+
addComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>, component: C): void;
|
|
5128
|
+
putComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>, component: C): void;
|
|
5129
|
+
removeComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): void;
|
|
5130
|
+
getArchetype(ref: Ref<T>): unknown;
|
|
5131
|
+
addEntity(holder: Holder<T>, addReason: AddReason): Ref<T> | null;
|
|
5132
|
+
removeEntity(ref: Ref<T>, removeReason: RemoveReason): void;
|
|
5133
|
+
forEachChunk<C>(componentType: ComponentType<T, C>, callback: (archetypeChunk: ArchetypeChunk<T>, commandBuffer: CommandBuffer<T>) => void): void;
|
|
5134
|
+
forEachEntityParallel<C>(componentType: ComponentType<T, C>, callback: (index: number, archetypeChunk: ArchetypeChunk<T>, commandBuffer: CommandBuffer<T>) => void): void;
|
|
5135
|
+
getResource<R>(resourceType: ResourceType<T, R>): R;
|
|
5136
|
+
}
|
|
5137
|
+
export interface EntityStoreWrapper {
|
|
5138
|
+
getStore(): Store<EntityStore>;
|
|
5139
|
+
}
|
|
5140
|
+
export interface ArchetypeChunk<T> {
|
|
5141
|
+
size(): number;
|
|
5142
|
+
getComponent<C>(index: number, componentType: ComponentType<T, C>): C | null;
|
|
5143
|
+
getReferenceTo(index: number): Ref<T>;
|
|
5170
5144
|
}
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
const scheduler: ScriptScheduler;
|
|
5177
|
-
const metrics: JavetCallMetrics;
|
|
5178
|
-
const Universe: UniverseStatic;
|
|
5179
|
-
const HytaleServer: HytaleServerStatic;
|
|
5180
|
-
const Message: MessageStatic;
|
|
5181
|
-
const ItemStack: ItemStack;
|
|
5182
|
-
const Item: ItemClass;
|
|
5183
|
-
const Vector3i: Vector3i;
|
|
5184
|
-
const Vector3f: Vector3f;
|
|
5185
|
-
const Vector3d: Vector3d;
|
|
5186
|
-
const Vector2i: Vector2i;
|
|
5187
|
-
const Vector2d: Vector2d;
|
|
5188
|
-
const Vector2f: Vector2f;
|
|
5189
|
-
const Transform: Transform;
|
|
5190
|
-
const Color: Color;
|
|
5191
|
-
const ColorLight: ColorLight;
|
|
5192
|
-
const Box: Box;
|
|
5193
|
-
const Cylinder: Cylinder;
|
|
5194
|
-
const SoundEvent: SoundEventClass;
|
|
5195
|
-
const SoundCategory: SoundCategoryEnum;
|
|
5196
|
-
const PlaySoundEvent2D: PlaySoundEvent2D;
|
|
5197
|
-
const DynamicLight: DynamicLight;
|
|
5198
|
-
const PersistentDynamicLight: PersistentDynamicLight;
|
|
5199
|
-
const Position: Position;
|
|
5200
|
-
const Direction: Direction;
|
|
5201
|
-
const PlaySoundEvent3D: PlaySoundEvent3D;
|
|
5202
|
-
const PlaySoundEventEntity: PlaySoundEventEntity;
|
|
5203
|
-
const SpawnParticleSystem: SpawnParticleSystem;
|
|
5204
|
-
const ParticleSystem: ParticleSystemClass;
|
|
5205
|
-
const SetBlockCmd: SetBlockCmd;
|
|
5206
|
-
const ServerSetBlocks: ServerSetBlocks;
|
|
5207
|
-
const BlockType: BlockType;
|
|
5208
|
-
const ChunkUtil: ChunkUtil;
|
|
5209
|
-
const ModelTransform: ModelTransform;
|
|
5210
|
-
const AudioComponent: AudioComponent;
|
|
5211
|
-
const DisplayNameComponent: DisplayNameComponent;
|
|
5212
|
-
const TransformComponent: TransformComponent;
|
|
5213
|
-
const ActiveEntityEffect: ActiveEntityEffect;
|
|
5214
|
-
const CameraManager: CameraManager;
|
|
5215
|
-
const AbilityEffects: AbilityEffects;
|
|
5216
|
-
const ActiveAnimationComponent: ActiveAnimationComponent;
|
|
5217
|
-
const AliveCondition: AliveCondition;
|
|
5218
|
-
const AllLegacyEntityTypesQuery: AllLegacyEntityTypesQuery;
|
|
5219
|
-
const AllLegacyLivingEntityTypesQuery: AllLegacyLivingEntityTypesQuery;
|
|
5220
|
-
const AnimationUtils: AnimationUtils;
|
|
5221
|
-
const AOECircleSelector: AOECircleSelector;
|
|
5222
|
-
const AOECylinderSelector: AOECylinderSelector;
|
|
5223
|
-
const ApplicationEffects: ApplicationEffects;
|
|
5224
|
-
const ApplyEffectInteraction: ApplyEffectInteraction;
|
|
5225
|
-
const ApplyForceInteraction: ApplyForceInteraction;
|
|
5226
|
-
const ApplyRandomSkinPersistedComponent: ApplyRandomSkinPersistedComponent;
|
|
5227
|
-
const AudioSystems: AudioSystems;
|
|
5228
|
-
const BasicCollisionData: BasicCollisionData;
|
|
5229
|
-
const BlockCollisionData: BlockCollisionData;
|
|
5230
|
-
const BlockCollisionProvider: BlockCollisionProvider;
|
|
5231
|
-
const BlockContactData: BlockContactData;
|
|
5232
|
-
const BlockData: BlockData;
|
|
5233
|
-
const BlockEntity: BlockEntity;
|
|
5234
|
-
const BlockEntitySystems: BlockEntitySystems;
|
|
5235
|
-
const BlockHarvestUtils: BlockHarvestUtils;
|
|
5236
|
-
const BlockHealthChunk: BlockHealthChunk;
|
|
5237
|
-
const BlockMigrationExtraInfo: BlockMigrationExtraInfo;
|
|
5238
|
-
const BlockSetModule: BlockSetModule;
|
|
5239
|
-
const BoundingBox: BoundingBox;
|
|
5240
|
-
const BoxCollisionData: BoxCollisionData;
|
|
5241
|
-
const BuilderToolInteraction: BuilderToolInteraction;
|
|
5242
|
-
const CalculationResult: CalculationResult;
|
|
5243
|
-
const CameraInteraction: CameraInteraction;
|
|
5244
|
-
const ChainingInteraction: ChainingInteraction;
|
|
5245
|
-
const ChargingCondition: ChargingCondition;
|
|
5246
|
-
const ChargingInteraction: ChargingInteraction;
|
|
5247
|
-
const CheckUniqueItemUsageInteraction: CheckUniqueItemUsageInteraction;
|
|
5248
|
-
const ChunkLightingManager: ChunkLightingManager;
|
|
5249
|
-
const ChunkTracker: ChunkTracker;
|
|
5250
|
-
const ClearEntityEffectInteraction: ClearEntityEffectInteraction;
|
|
5251
|
-
const ClientDelegatingProvider: ClientDelegatingProvider;
|
|
5252
|
-
const ClientSourcedSelector: ClientSourcedSelector;
|
|
5253
|
-
const CollisionConfig: CollisionConfig;
|
|
5254
|
-
const CollisionModuleConfig: CollisionModuleConfig;
|
|
5255
|
-
const CollisionResultComponent: CollisionResultComponent;
|
|
5256
|
-
const CombatTextUIComponent: CombatTextUIComponent;
|
|
5257
|
-
const CombatTextUIComponentOpacityAnimationEvent: CombatTextUIComponentOpacityAnimationEvent;
|
|
5258
|
-
const CombatTextUIComponentPositionAnimationEvent: CombatTextUIComponentPositionAnimationEvent;
|
|
5259
|
-
const CombatTextUIComponentScaleAnimationEvent: CombatTextUIComponentScaleAnimationEvent;
|
|
5260
|
-
const ContainerBlockWindow: ContainerBlockWindow;
|
|
5261
|
-
const ContainerWindow: ContainerWindow;
|
|
5262
|
-
const CooldownHandler: CooldownHandler;
|
|
5263
|
-
const CraftingRecipePacketGenerator: CraftingRecipePacketGenerator;
|
|
5264
|
-
const DamageCalculator: DamageCalculator;
|
|
5265
|
-
const DamageCalculatorSystems: DamageCalculatorSystems;
|
|
5266
|
-
const DamageCause: DamageCause;
|
|
5267
|
-
const DamageDataComponent: DamageDataComponent;
|
|
5268
|
-
const DamageDataSetupSystem: DamageDataSetupSystem;
|
|
5269
|
-
const DamageEffects: DamageEffects;
|
|
5270
|
-
const DamageEntityInteraction: DamageEntityInteraction;
|
|
5271
|
-
const DamageModule: DamageModule;
|
|
5272
|
-
const DamageSystems: DamageSystems;
|
|
5273
|
-
const DeathComponent: DeathComponent;
|
|
5274
|
-
const DeathItemLoss: DeathItemLoss;
|
|
5275
|
-
const DeathSystems: DeathSystems;
|
|
5276
|
-
const DebugPlugin: DebugPlugin;
|
|
5277
|
-
const DebugUtils: DebugUtils;
|
|
5278
|
-
const DeferredCorpseRemoval: DeferredCorpseRemoval;
|
|
5279
|
-
const DespawnComponent: DespawnComponent;
|
|
5280
|
-
const DespawnSystem: DespawnSystem;
|
|
5281
|
-
const DestroyConditionInteraction: DestroyConditionInteraction;
|
|
5282
|
-
const DesyncDamageCommand: DesyncDamageCommand;
|
|
5283
|
-
const DoorInteraction: DoorInteraction;
|
|
5284
|
-
const DynamicLightSystems: DynamicLightSystems;
|
|
5285
|
-
const EffectConditionInteraction: EffectConditionInteraction;
|
|
5286
|
-
const EffectControllerComponent: EffectControllerComponent;
|
|
5287
|
-
const Emote: Emote;
|
|
5288
|
-
const EntityCleanCommand: EntityCleanCommand;
|
|
5289
|
-
const EntityCloneCommand: EntityCloneCommand;
|
|
5290
|
-
const EntityCollisionProvider: EntityCollisionProvider;
|
|
5291
|
-
const EntityCommand: EntityCommand;
|
|
5292
|
-
const EntityContactData: EntityContactData;
|
|
5293
|
-
const EntityCountCommand: EntityCountCommand;
|
|
5294
|
-
const EntityDumpCommand: EntityDumpCommand;
|
|
5295
|
-
const EntityEffect: EntityEffect;
|
|
5296
|
-
const EntityEffectCommand: EntityEffectCommand;
|
|
5297
|
-
const EntityEffectPacketGenerator: EntityEffectPacketGenerator;
|
|
5298
|
-
const EntityGroup: EntityGroup;
|
|
5299
|
-
const EntityHideFromAdventurePlayersCommand: EntityHideFromAdventurePlayersCommand;
|
|
5300
|
-
const EntityIntangibleCommand: EntityIntangibleCommand;
|
|
5301
|
-
const EntityInteractableSystems: EntityInteractableSystems;
|
|
5302
|
-
const EntityInvulnerableCommand: EntityInvulnerableCommand;
|
|
5303
|
-
const EntityLodCommand: EntityLodCommand;
|
|
5304
|
-
const EntityMakeInteractableCommand: EntityMakeInteractableCommand;
|
|
5305
|
-
const EntityModule: EntityModule;
|
|
5306
|
-
const EntityNameplateCommand: EntityNameplateCommand;
|
|
5307
|
-
const EntityRefCollisionProvider: EntityRefCollisionProvider;
|
|
5308
|
-
const EntityRegistration: EntityRegistration;
|
|
5309
|
-
const EntityRegistry: EntityRegistry;
|
|
5310
|
-
const EntityRemoveCommand: EntityRemoveCommand;
|
|
5311
|
-
const EntityRemoveEvent: EntityRemoveEvent;
|
|
5312
|
-
const EntityResendCommand: EntityResendCommand;
|
|
5313
|
-
const EntityScaleComponent: EntityScaleComponent;
|
|
5314
|
-
const EntitySnapshot: EntitySnapshot;
|
|
5315
|
-
const EntitySnapshotHistoryCommand: EntitySnapshotHistoryCommand;
|
|
5316
|
-
const EntitySnapshotLengthCommand: EntitySnapshotLengthCommand;
|
|
5317
|
-
const EntitySnapshotSubCommand: EntitySnapshotSubCommand;
|
|
5318
|
-
const EntitySpatialSystem: EntitySpatialSystem;
|
|
5319
|
-
const EntityStatMap: EntityStatMap;
|
|
5320
|
-
const EntityStatsAddCommand: EntityStatsAddCommand;
|
|
5321
|
-
const EntityStatsDumpCommand: EntityStatsDumpCommand;
|
|
5322
|
-
const EntityStatsGetCommand: EntityStatsGetCommand;
|
|
5323
|
-
const EntityStatsResetCommand: EntityStatsResetCommand;
|
|
5324
|
-
const EntityStatsSetCommand: EntityStatsSetCommand;
|
|
5325
|
-
const EntityStatsSetToMaxCommand: EntityStatsSetToMaxCommand;
|
|
5326
|
-
const EntityStatsSubCommand: EntityStatsSubCommand;
|
|
5327
|
-
const EntityStatType: EntityStatType;
|
|
5328
|
-
const EntityStatTypePacketGenerator: EntityStatTypePacketGenerator;
|
|
5329
|
-
const EntityStatUIComponent: EntityStatUIComponent;
|
|
5330
|
-
const EntityStatValue: EntityStatValue;
|
|
5331
|
-
const EntitySystems: EntitySystems;
|
|
5332
|
-
const EntityTrackerCommand: EntityTrackerCommand;
|
|
5333
|
-
const EntityTrackerSystems: EntityTrackerSystems;
|
|
5334
|
-
const EntityUIComponentPacketGenerator: EntityUIComponentPacketGenerator;
|
|
5335
|
-
const EntityUIModule: EntityUIModule;
|
|
5336
|
-
const EntityUtils: EntityUtils;
|
|
5337
|
-
const EnvironmentCondition: EnvironmentCondition;
|
|
5338
|
-
const EquipItemInteraction: EquipItemInteraction;
|
|
5339
|
-
const ExplosionConfig: ExplosionConfig;
|
|
5340
|
-
const ExplosionUtils: ExplosionUtils;
|
|
5341
|
-
const FirstClickInteraction: FirstClickInteraction;
|
|
5342
|
-
const FloodLightCalculation: FloodLightCalculation;
|
|
5343
|
-
const ForceProviderEntity: ForceProviderEntity;
|
|
5344
|
-
const FromPrefab: FromPrefab;
|
|
5345
|
-
const FromWorldGen: FromWorldGen;
|
|
5346
|
-
const Frozen: Frozen;
|
|
5347
|
-
const FullBrightLightCalculation: FullBrightLightCalculation;
|
|
5348
|
-
const GenericVelocityInstructionSystem: GenericVelocityInstructionSystem;
|
|
5349
|
-
const GlidingCondition: GlidingCondition;
|
|
5350
|
-
const HeadRotation: HeadRotation;
|
|
5351
|
-
const HiddenFromAdventurePlayers: HiddenFromAdventurePlayers;
|
|
5352
|
-
const HiddenPlayersManager: HiddenPlayersManager;
|
|
5353
|
-
const HideEntitySystems: HideEntitySystems;
|
|
5354
|
-
const HitboxCollision: HitboxCollision;
|
|
5355
|
-
const HitboxCollisionConfig: HitboxCollisionConfig;
|
|
5356
|
-
const HitboxCollisionConfigPacketGenerator: HitboxCollisionConfigPacketGenerator;
|
|
5357
|
-
const HitboxCollisionSystems: HitboxCollisionSystems;
|
|
5358
|
-
const HitboxCommand: HitboxCommand;
|
|
5359
|
-
const HorizontalSelector: HorizontalSelector;
|
|
5360
|
-
const HotbarManager: HotbarManager;
|
|
5361
|
-
const HudManager: HudManager;
|
|
5362
|
-
const HytaleBanProvider: HytaleBanProvider;
|
|
5363
|
-
const IncreaseBackpackCapacityInteraction: IncreaseBackpackCapacityInteraction;
|
|
5364
|
-
const InputUpdate: InputUpdate;
|
|
5365
|
-
const Intangible: Intangible;
|
|
5366
|
-
const IntangibleSystems: IntangibleSystems;
|
|
5367
|
-
const Interactable: Interactable;
|
|
5368
|
-
const InteractionChain: InteractionChain;
|
|
5369
|
-
const InteractionConfiguration: InteractionConfiguration;
|
|
5370
|
-
const InteractionEffects: InteractionEffects;
|
|
5371
|
-
const InteractionEntry: InteractionEntry;
|
|
5372
|
-
const InteractionManager: InteractionManager;
|
|
5373
|
-
const InteractionSimulationHandler: InteractionSimulationHandler;
|
|
5374
|
-
const InteractionSystems: InteractionSystems;
|
|
5375
|
-
const InteractionTarget: InteractionTarget;
|
|
5376
|
-
const InteractionTypeUtils: InteractionTypeUtils;
|
|
5377
|
-
const InvalidatablePersistentRef: InvalidatablePersistentRef;
|
|
5378
|
-
const Invulnerable: Invulnerable;
|
|
5379
|
-
const InvulnerableSystems: InvulnerableSystems;
|
|
5380
|
-
const ItemComponent: ItemComponent;
|
|
5381
|
-
const ItemContainerStateSpatialSystem: ItemContainerStateSpatialSystem;
|
|
5382
|
-
const ItemMergeSystem: ItemMergeSystem;
|
|
5383
|
-
const ItemPacketGenerator: ItemPacketGenerator;
|
|
5384
|
-
const ItemPhysicsComponent: ItemPhysicsComponent;
|
|
5385
|
-
const ItemPhysicsSystem: ItemPhysicsSystem;
|
|
5386
|
-
const ItemPrePhysicsSystem: ItemPrePhysicsSystem;
|
|
5387
|
-
const ItemRepairElement: ItemRepairElement;
|
|
5388
|
-
const ItemRepairPage: ItemRepairPage;
|
|
5389
|
-
const ItemReticleConfigPacketGenerator: ItemReticleConfigPacketGenerator;
|
|
5390
|
-
const ItemSpatialSystem: ItemSpatialSystem;
|
|
5391
|
-
const ItemStackContainerWindow: ItemStackContainerWindow;
|
|
5392
|
-
const ItemSystems: ItemSystems;
|
|
5393
|
-
const ItemUtils: ItemUtils;
|
|
5394
|
-
const JumpOperation: JumpOperation;
|
|
5395
|
-
const KillFeedEvent: KillFeedEvent;
|
|
5396
|
-
const KnockbackComponent: KnockbackComponent;
|
|
5397
|
-
const KnockbackPredictionSystems: KnockbackPredictionSystems;
|
|
5398
|
-
const KnockbackSimulation: KnockbackSimulation;
|
|
5399
|
-
const KnockbackSystems: KnockbackSystems;
|
|
5400
|
-
const Label: Label;
|
|
5401
|
-
const LaunchPadInteraction: LaunchPadInteraction;
|
|
5402
|
-
const LaunchProjectileInteraction: LaunchProjectileInteraction;
|
|
5403
|
-
const LegacyEntityTrackerSystems: LegacyEntityTrackerSystems;
|
|
5404
|
-
const LegacyProjectileSystems: LegacyProjectileSystems;
|
|
5405
|
-
const LivingEntityEffectClearChangesSystem: LivingEntityEffectClearChangesSystem;
|
|
5406
|
-
const LivingEntityEffectSystem: LivingEntityEffectSystem;
|
|
5407
|
-
const LivingEntityInventoryChangeEvent: LivingEntityInventoryChangeEvent;
|
|
5408
|
-
const LivingEntityUseBlockEvent: LivingEntityUseBlockEvent;
|
|
5409
|
-
const LogicCondition: LogicCondition;
|
|
5410
|
-
const MaterialExtraResourcesSection: MaterialExtraResourcesSection;
|
|
5411
|
-
const MessagesUpdated: MessagesUpdated;
|
|
5412
|
-
const ModelComponent: ModelComponent;
|
|
5413
|
-
const ModelOverride: ModelOverride;
|
|
5414
|
-
const ModelSystems: ModelSystems;
|
|
5415
|
-
const ModifyInventoryInteraction: ModifyInventoryInteraction;
|
|
5416
|
-
const MovementAudioComponent: MovementAudioComponent;
|
|
5417
|
-
const MovementConditionInteraction: MovementConditionInteraction;
|
|
5418
|
-
const MovementConfig: MovementConfig;
|
|
5419
|
-
const MovementManager: MovementManager;
|
|
5420
|
-
const MovementStatesComponent: MovementStatesComponent;
|
|
5421
|
-
const MovementStatesSystems: MovementStatesSystems;
|
|
5422
|
-
const Nameplate: Nameplate;
|
|
5423
|
-
const NameplateSystems: NameplateSystems;
|
|
5424
|
-
const NetworkId: NetworkId;
|
|
5425
|
-
const NetworkSendableSpatialSystem: NetworkSendableSpatialSystem;
|
|
5426
|
-
const NewSpawnComponent: NewSpawnComponent;
|
|
5427
|
-
const NoDamageTakenCondition: NoDamageTakenCondition;
|
|
5428
|
-
const OperationsBuilder: OperationsBuilder;
|
|
5429
|
-
const OutOfCombatCondition: OutOfCombatCondition;
|
|
5430
|
-
const OverlapBehavior: OverlapBehavior;
|
|
5431
|
-
const PageManager: PageManager;
|
|
5432
|
-
const ParallelInteraction: ParallelInteraction;
|
|
5433
|
-
const Particle: Particle;
|
|
5434
|
-
const ParticleAnimationFrame: ParticleAnimationFrame;
|
|
5435
|
-
const ParticleAttractor: ParticleAttractor;
|
|
5436
|
-
const ParticleCollision: ParticleCollision;
|
|
5437
|
-
const ParticleCommand: ParticleCommand;
|
|
5438
|
-
const ParticleSpawnCommand: ParticleSpawnCommand;
|
|
5439
|
-
const ParticleSpawner: ParticleSpawner;
|
|
5440
|
-
const ParticleSpawnerGroup: ParticleSpawnerGroup;
|
|
5441
|
-
const ParticleSpawnerPacketGenerator: ParticleSpawnerPacketGenerator;
|
|
5442
|
-
const ParticleSpawnPage: ParticleSpawnPage;
|
|
5443
|
-
const ParticleSystemPacketGenerator: ParticleSystemPacketGenerator;
|
|
5444
|
-
const PendingTeleport: PendingTeleport;
|
|
5445
|
-
const PersistentModel: PersistentModel;
|
|
5446
|
-
const PersistentRef: PersistentRef;
|
|
5447
|
-
const PersistentRefCount: PersistentRefCount;
|
|
5448
|
-
const PhysicsMath: PhysicsMath;
|
|
5449
|
-
const PickBlockInteraction: PickBlockInteraction;
|
|
5450
|
-
const PickupItemComponent: PickupItemComponent;
|
|
5451
|
-
const PickupItemSystem: PickupItemSystem;
|
|
5452
|
-
const PlaceBlockInteraction: PlaceBlockInteraction;
|
|
5453
|
-
const PlacedByInteractionComponent: PlacedByInteractionComponent;
|
|
5454
|
-
const PlaceFluidInteraction: PlaceFluidInteraction;
|
|
5455
|
-
const PlacementCountConditionInteraction: PlacementCountConditionInteraction;
|
|
5456
|
-
const Player: Player;
|
|
5457
|
-
const PlayerCameraAddSystem: PlayerCameraAddSystem;
|
|
5458
|
-
const PlayerChunkTrackerSystems: PlayerChunkTrackerSystems;
|
|
5459
|
-
const PlayerCollisionResultAddSystem: PlayerCollisionResultAddSystem;
|
|
5460
|
-
const PlayerCondition: PlayerCondition;
|
|
5461
|
-
const PlayerConfigData: PlayerConfigData;
|
|
5462
|
-
const PlayerConnectionFlushSystem: PlayerConnectionFlushSystem;
|
|
5463
|
-
const PlayerDeathPositionData: PlayerDeathPositionData;
|
|
5464
|
-
const PlayerHudManagerSystems: PlayerHudManagerSystems;
|
|
5465
|
-
const PlayerItemEntityPickupSystem: PlayerItemEntityPickupSystem;
|
|
5466
|
-
const PlayerMovementManagerSystems: PlayerMovementManagerSystems;
|
|
5467
|
-
const PlayerPingSystem: PlayerPingSystem;
|
|
5468
|
-
const PlayerProcessMovementSystem: PlayerProcessMovementSystem;
|
|
5469
|
-
const PlayerRegenerateStatsSystem: PlayerRegenerateStatsSystem;
|
|
5470
|
-
const PlayerRespawnPointData: PlayerRespawnPointData;
|
|
5471
|
-
const PlayerSavingSystems: PlayerSavingSystems;
|
|
5472
|
-
const PlayerSendInventorySystem: PlayerSendInventorySystem;
|
|
5473
|
-
const PlayerSkinComponent: PlayerSkinComponent;
|
|
5474
|
-
const PlayerSkinGradient: PlayerSkinGradient;
|
|
5475
|
-
const PlayerSkinGradientSet: PlayerSkinGradientSet;
|
|
5476
|
-
const PlayerSkinPart: PlayerSkinPart;
|
|
5477
|
-
const PlayerSkinPartTexture: PlayerSkinPartTexture;
|
|
5478
|
-
const PlayerSkinTintColor: PlayerSkinTintColor;
|
|
5479
|
-
const PlayerSpatialSystem: PlayerSpatialSystem;
|
|
5480
|
-
const PlayerSystems: PlayerSystems;
|
|
5481
|
-
const PlayerWorldData: PlayerWorldData;
|
|
5482
|
-
const PositionDataComponent: PositionDataComponent;
|
|
5483
|
-
const PredictedProjectile: PredictedProjectile;
|
|
5484
|
-
const PredictedProjectileSystems: PredictedProjectileSystems;
|
|
5485
|
-
const PrefabBufferColumn: PrefabBufferColumn;
|
|
5486
|
-
const PrefabBufferUtil: PrefabBufferUtil;
|
|
5487
|
-
const PrefabCopyableComponent: PrefabCopyableComponent;
|
|
5488
|
-
const PrefabLoadException: PrefabLoadException;
|
|
5489
|
-
const PrefabPasteEvent: PrefabPasteEvent;
|
|
5490
|
-
const PrefabPlaceEntityEvent: PrefabPlaceEntityEvent;
|
|
5491
|
-
const PrefabSaveException: PrefabSaveException;
|
|
5492
|
-
const PrefabSpawnerState: PrefabSpawnerState;
|
|
5493
|
-
const PrefabStore: PrefabStore;
|
|
5494
|
-
const PreventItemMerging: PreventItemMerging;
|
|
5495
|
-
const PreventPickup: PreventPickup;
|
|
5496
|
-
const Projectile: Projectile;
|
|
5497
|
-
const ProjectileComponent: ProjectileComponent;
|
|
5498
|
-
const ProjectileConfig: ProjectileConfig;
|
|
5499
|
-
const ProjectileConfigPacketGenerator: ProjectileConfigPacketGenerator;
|
|
5500
|
-
const ProjectileInteraction: ProjectileInteraction;
|
|
5501
|
-
const PropComponent: PropComponent;
|
|
5502
|
-
const RaycastSelector: RaycastSelector;
|
|
5503
|
-
const RecipePacketGenerator: RecipePacketGenerator;
|
|
5504
|
-
const RefillContainerInteraction: RefillContainerInteraction;
|
|
5505
|
-
const RegeneratingModifier: RegeneratingModifier;
|
|
5506
|
-
const RegeneratingValue: RegeneratingValue;
|
|
5507
|
-
const RegenHealthCondition: RegenHealthCondition;
|
|
5508
|
-
const RemovalBehavior: RemovalBehavior;
|
|
5509
|
-
const RemoveEntityInteraction: RemoveEntityInteraction;
|
|
5510
|
-
const RepairItemInteraction: RepairItemInteraction;
|
|
5511
|
-
const RepeatInteraction: RepeatInteraction;
|
|
5512
|
-
const ReplaceInteraction: ReplaceInteraction;
|
|
5513
|
-
const Repulsion: Repulsion;
|
|
5514
|
-
const RepulsionConfig: RepulsionConfig;
|
|
5515
|
-
const RepulsionConfigPacketGenerator: RepulsionConfigPacketGenerator;
|
|
5516
|
-
const RepulsionSystems: RepulsionSystems;
|
|
5517
|
-
const RespawnPage: RespawnPage;
|
|
5518
|
-
const RespawnSystems: RespawnSystems;
|
|
5519
|
-
const RespondToHit: RespondToHit;
|
|
5520
|
-
const RespondToHitSystems: RespondToHitSystems;
|
|
5521
|
-
const RotateObjectComponent: RotateObjectComponent;
|
|
5522
|
-
const RotateObjectSystem: RotateObjectSystem;
|
|
5523
|
-
const SelectInteraction: SelectInteraction;
|
|
5524
|
-
const SelectionManager: SelectionManager;
|
|
5525
|
-
const SerialInteraction: SerialInteraction;
|
|
5526
|
-
const ServerPlayerListModule: ServerPlayerListModule;
|
|
5527
|
-
const SingleplayerRequestAccessEvent: SingleplayerRequestAccessEvent;
|
|
5528
|
-
const SnapshotBuffer: SnapshotBuffer;
|
|
5529
|
-
const SnapshotSystems: SnapshotSystems;
|
|
5530
|
-
const SprintingCondition: SprintingCondition;
|
|
5531
|
-
const SprintStaminaRegenDelay: SprintStaminaRegenDelay;
|
|
5532
|
-
const StabSelector: StabSelector;
|
|
5533
|
-
const StaminaGameplayConfig: StaminaGameplayConfig;
|
|
5534
|
-
const StaminaModule: StaminaModule;
|
|
5535
|
-
const StaminaSystems: StaminaSystems;
|
|
5536
|
-
const StandardPhysicsConfig: StandardPhysicsConfig;
|
|
5537
|
-
const StandardPhysicsTickSystem: StandardPhysicsTickSystem;
|
|
5538
|
-
const StatCondition: StatCondition;
|
|
5539
|
-
const StaticModifier: StaticModifier;
|
|
5540
|
-
const StatModifiersManager: StatModifiersManager;
|
|
5541
|
-
const StatModifyingSystem: StatModifyingSystem;
|
|
5542
|
-
const StringTag: StringTag;
|
|
5543
|
-
const SuffocatingCondition: SuffocatingCondition;
|
|
5544
|
-
const TangiableEntitySpatialSystem: TangiableEntitySpatialSystem;
|
|
5545
|
-
const TargetEntityEffect: TargetEntityEffect;
|
|
5546
|
-
const Teleport: Teleport;
|
|
5547
|
-
const TeleportSystems: TeleportSystems;
|
|
5548
|
-
const TimeModule: TimeModule;
|
|
5549
|
-
const TrackedPlacement: TrackedPlacement;
|
|
5550
|
-
const TransformSystems: TransformSystems;
|
|
5551
|
-
const UIComponentList: UIComponentList;
|
|
5552
|
-
const UIComponentSystems: UIComponentSystems;
|
|
5553
|
-
const UnarmedInteractions: UnarmedInteractions;
|
|
5554
|
-
const UnarmedInteractionsPacketGenerator: UnarmedInteractionsPacketGenerator;
|
|
5555
|
-
const UniqueItemUsagesComponent: UniqueItemUsagesComponent;
|
|
5556
|
-
const UpdateEntitySeedSystem: UpdateEntitySeedSystem;
|
|
5557
|
-
const UpdateLocationSystems: UpdateLocationSystems;
|
|
5558
|
-
const UseEntityInteraction: UseEntityInteraction;
|
|
5559
|
-
const UUIDComponent: UUIDComponent;
|
|
5560
|
-
const VelocityConfig: VelocityConfig;
|
|
5561
|
-
const VelocitySystems: VelocitySystems;
|
|
5562
|
-
const WieldingCondition: WieldingCondition;
|
|
5563
|
-
const WieldingInteraction: WieldingInteraction;
|
|
5564
|
-
const WindowManager: WindowManager;
|
|
5565
|
-
const WorldGenId: WorldGenId;
|
|
5566
|
-
const WorldParticle: WorldParticle;
|
|
5567
|
-
const WorldTimeResource: WorldTimeResource;
|
|
5568
|
-
const WorldTimeSystems: WorldTimeSystems;
|
|
5569
|
-
const WorldUtil: WorldUtil;
|
|
5570
|
-
const AccessControlModule: AccessControlModule;
|
|
5571
|
-
const BlockCounter: BlockCounter;
|
|
5572
|
-
const BlockFilter: BlockFilter;
|
|
5573
|
-
const BlockHealth: BlockHealth;
|
|
5574
|
-
const BlockHealthModule: BlockHealthModule;
|
|
5575
|
-
const BlockMask: BlockMask;
|
|
5576
|
-
const BlockModule: BlockModule;
|
|
5577
|
-
const BlockPattern: BlockPattern;
|
|
5578
|
-
const BlockSetLookupTable: BlockSetLookupTable;
|
|
5579
|
-
const BlockTracker: BlockTracker;
|
|
5580
|
-
const BoxBlockIntersectionEvaluator: BoxBlockIntersectionEvaluator;
|
|
5581
|
-
const ChangeActiveSlotInteraction: ChangeActiveSlotInteraction;
|
|
5582
|
-
const CollisionDataArray: CollisionDataArray<unknown>;
|
|
5583
|
-
const CollisionMath: CollisionMath;
|
|
5584
|
-
const CollisionModule: CollisionModule;
|
|
5585
|
-
const CollisionResult: CollisionResult;
|
|
5586
|
-
const CollisionTracker: CollisionTracker;
|
|
5587
|
-
const CosmeticRegistry: CosmeticRegistry;
|
|
5588
|
-
const CosmeticsModule: CosmeticsModule;
|
|
5589
|
-
const ForceProviderStandardState: ForceProviderStandardState;
|
|
5590
|
-
const FragileBlock: FragileBlock;
|
|
5591
|
-
const HytaleWhitelistProvider: HytaleWhitelistProvider;
|
|
5592
|
-
const I18nModule: I18nModule;
|
|
5593
|
-
const InfiniteBan: InfiniteBan;
|
|
5594
|
-
const InteractionModule: InteractionModule;
|
|
5595
|
-
const Interactions: Interactions;
|
|
5596
|
-
const ItemModule: ItemModule;
|
|
5597
|
-
const LegacyModule: LegacyModule;
|
|
5598
|
-
const ListCollector: ListCollector<unknown>;
|
|
5599
|
-
const MigrationModule: MigrationModule;
|
|
5600
|
-
const MovingBoxBoxCollisionEvaluator: MovingBoxBoxCollisionEvaluator;
|
|
5601
|
-
const PhysicsValues: PhysicsValues;
|
|
5602
|
-
const PhysicsValuesAddSystem: PhysicsValuesAddSystem;
|
|
5603
|
-
const PlayerSkin: PlayerSkin;
|
|
5604
|
-
const PlayerSkinPartId: PlayerSkinPartId;
|
|
5605
|
-
const PrefabLoader: PrefabLoader;
|
|
5606
|
-
const PrefabRotation: PrefabRotation;
|
|
5607
|
-
const PrefabWeights: PrefabWeights;
|
|
5608
|
-
const ProjectileModule: ProjectileModule;
|
|
5609
|
-
const RootInteraction: RootInteraction;
|
|
5610
|
-
const SimpleInteraction: SimpleInteraction;
|
|
5611
|
-
const SimplePhysicsProvider: SimplePhysicsProvider;
|
|
5612
|
-
const SingleCollector: SingleCollector<unknown>;
|
|
5613
|
-
const SingleplayerModule: SingleplayerModule;
|
|
5614
|
-
const StandardPhysicsProvider: StandardPhysicsProvider;
|
|
5615
|
-
const TimeCommand: TimeCommand;
|
|
5616
|
-
const TimedBan: TimedBan;
|
|
5617
|
-
const TimeResource: TimeResource;
|
|
5618
|
-
const TranslationMap: TranslationMap;
|
|
5619
|
-
const TreeCollector: TreeCollector<unknown>;
|
|
5620
|
-
const Velocity: Velocity;
|
|
5621
|
-
const AddItemInteraction: AddItemInteraction;
|
|
5622
|
-
const BanCommand: BanCommand;
|
|
5623
|
-
const BinaryPrefabBufferCodec: BinaryPrefabBufferCodec;
|
|
5624
|
-
const BlockConditionInteraction: BlockConditionInteraction;
|
|
5625
|
-
const BlockDataProvider: BlockDataProvider;
|
|
5626
|
-
const BlockInteractionUtils: BlockInteractionUtils;
|
|
5627
|
-
const BlockMaskConstants: BlockMaskConstants;
|
|
5628
|
-
const BlockPlaceUtils: BlockPlaceUtils;
|
|
5629
|
-
const BlockSetCommand: BlockSetCommand;
|
|
5630
|
-
const BodyType: BodyType;
|
|
5631
|
-
const BreakBlockInteraction: BreakBlockInteraction;
|
|
5632
|
-
const BsonPrefabBufferDeserializer: BsonPrefabBufferDeserializer;
|
|
5633
|
-
const CancelChainInteraction: CancelChainInteraction;
|
|
5634
|
-
const ChainFlagInteraction: ChainFlagInteraction;
|
|
5635
|
-
const ChangeBlockInteraction: ChangeBlockInteraction;
|
|
5636
|
-
const ChangeStateInteraction: ChangeStateInteraction;
|
|
5637
|
-
const ChangeStatInteraction: ChangeStatInteraction;
|
|
5638
|
-
const ChangeStatWithModifierInteraction: ChangeStatWithModifierInteraction;
|
|
5639
|
-
const CharacterCollisionData: CharacterCollisionData;
|
|
5640
|
-
const CollisionMaterial: CollisionMaterial;
|
|
5641
|
-
const ConditionInteraction: ConditionInteraction;
|
|
5642
|
-
const CooldownConditionInteraction: CooldownConditionInteraction;
|
|
5643
|
-
const CosmeticAssetValidator: CosmeticAssetValidator;
|
|
5644
|
-
const CosmeticType: CosmeticType;
|
|
5645
|
-
const CycleBlockGroupInteraction: CycleBlockGroupInteraction;
|
|
5646
|
-
const DamageClass: DamageClass;
|
|
5647
|
-
const DebugCommand: DebugCommand;
|
|
5648
|
-
const DebugShapeArrowCommand: DebugShapeArrowCommand;
|
|
5649
|
-
const DebugShapeClearCommand: DebugShapeClearCommand;
|
|
5650
|
-
const DebugShapeConeCommand: DebugShapeConeCommand;
|
|
5651
|
-
const DebugShapeCubeCommand: DebugShapeCubeCommand;
|
|
5652
|
-
const DebugShapeCylinderCommand: DebugShapeCylinderCommand;
|
|
5653
|
-
const DebugShapeShowForceCommand: DebugShapeShowForceCommand;
|
|
5654
|
-
const DebugShapeSphereCommand: DebugShapeSphereCommand;
|
|
5655
|
-
const DebugShapeSubCommand: DebugShapeSubCommand;
|
|
5656
|
-
const DestroyBlockInteraction: DestroyBlockInteraction;
|
|
5657
|
-
const DirectionalKnockback: DirectionalKnockback;
|
|
5658
|
-
const EmoteCommand: EmoteCommand;
|
|
5659
|
-
const EnableTmpTagsCommand: EnableTmpTagsCommand;
|
|
5660
|
-
const ExplodeInteraction: ExplodeInteraction;
|
|
5661
|
-
const FluidIterator: FluidIterator;
|
|
5662
|
-
const FlyCameraModule: FlyCameraModule;
|
|
5663
|
-
const ForceAccumulator: ForceAccumulator;
|
|
5664
|
-
const ForceKnockback: ForceKnockback;
|
|
5665
|
-
const GenerateDefaultLanguageEvent: GenerateDefaultLanguageEvent;
|
|
5666
|
-
const GenerateI18nCommand: GenerateI18nCommand;
|
|
5667
|
-
const IncrementCooldownInteraction: IncrementCooldownInteraction;
|
|
5668
|
-
const InteractionCameraSettings: InteractionCameraSettings;
|
|
5669
|
-
const InteractionClearCommand: InteractionClearCommand;
|
|
5670
|
-
const InteractionCommand: InteractionCommand;
|
|
5671
|
-
const InteractionPacketGenerator: InteractionPacketGenerator;
|
|
5672
|
-
const InteractionPriorityCodec: InteractionPriorityCodec;
|
|
5673
|
-
const InteractionRules: InteractionRules;
|
|
5674
|
-
const InteractionRunCommand: InteractionRunCommand;
|
|
5675
|
-
const InteractionRunSpecificCommand: InteractionRunSpecificCommand;
|
|
5676
|
-
const InteractionSetSnapshotSourceCommand: InteractionSetSnapshotSourceCommand;
|
|
5677
|
-
const InteractionSnapshotSourceCommand: InteractionSnapshotSourceCommand;
|
|
5678
|
-
const InternationalizationCommands: InternationalizationCommands;
|
|
5679
|
-
const InterruptInteraction: InterruptInteraction;
|
|
5680
|
-
const ItemQualityPacketGenerator: ItemQualityPacketGenerator;
|
|
5681
|
-
const ItemRepairPageSupplier: ItemRepairPageSupplier;
|
|
5682
|
-
const LangFileParser: LangFileParser;
|
|
5683
|
-
const MultiBlockMask: MultiBlockMask;
|
|
5684
|
-
const OpenContainerInteraction: OpenContainerInteraction;
|
|
5685
|
-
const OpenItemStackContainerInteraction: OpenItemStackContainerInteraction;
|
|
5686
|
-
const PhysicsBodyState: PhysicsBodyState;
|
|
5687
|
-
const PhysicsBodyStateUpdater: PhysicsBodyStateUpdater;
|
|
5688
|
-
const PhysicsBodyStateUpdaterMidpoint: PhysicsBodyStateUpdaterMidpoint;
|
|
5689
|
-
const PhysicsBodyStateUpdaterRK4: PhysicsBodyStateUpdaterRK4;
|
|
5690
|
-
const PhysicsBodyStateUpdaterSymplecticEuler: PhysicsBodyStateUpdaterSymplecticEuler;
|
|
5691
|
-
const PhysicsConstants: PhysicsConstants;
|
|
5692
|
-
const PhysicsFlags: PhysicsFlags;
|
|
5693
|
-
const PlayCommand: PlayCommand;
|
|
5694
|
-
const PlayerMatcher: PlayerMatcher;
|
|
5695
|
-
const PlayerSkinPartType: PlayerSkinPartType;
|
|
5696
|
-
const PlayFriendCommand: PlayFriendCommand;
|
|
5697
|
-
const PlayLanCommand: PlayLanCommand;
|
|
5698
|
-
const PlayOnlineCommand: PlayOnlineCommand;
|
|
5699
|
-
const PointKnockback: PointKnockback;
|
|
5700
|
-
const PrefabBufferBlockEntry: PrefabBufferBlockEntry;
|
|
5701
|
-
const PrefabBufferCall: PrefabBufferCall;
|
|
5702
|
-
const PrefabSpawnerCommand: PrefabSpawnerCommand;
|
|
5703
|
-
const PrefabSpawnerGetCommand: PrefabSpawnerGetCommand;
|
|
5704
|
-
const PrefabSpawnerModule: PrefabSpawnerModule;
|
|
5705
|
-
const PrefabSpawnerSetCommand: PrefabSpawnerSetCommand;
|
|
5706
|
-
const PrefabSpawnerWeightCommand: PrefabSpawnerWeightCommand;
|
|
5707
|
-
const ResetCooldownInteraction: ResetCooldownInteraction;
|
|
5708
|
-
const RestingSupport: RestingSupport;
|
|
5709
|
-
const RootInteractionPacketGenerator: RootInteractionPacketGenerator;
|
|
5710
|
-
const RunRootInteraction: RunRootInteraction;
|
|
5711
|
-
const SelectionPrefabSerializer: SelectionPrefabSerializer;
|
|
5712
|
-
const SendMessageInteraction: SendMessageInteraction;
|
|
5713
|
-
const SpawnItemCommand: SpawnItemCommand;
|
|
5714
|
-
const SpawnPrefabInteraction: SpawnPrefabInteraction;
|
|
5715
|
-
const SplitVelocity: SplitVelocity;
|
|
5716
|
-
const StatsConditionInteraction: StatsConditionInteraction;
|
|
5717
|
-
const StatsConditionWithModifierInteraction: StatsConditionWithModifierInteraction;
|
|
5718
|
-
const TimePacketSystem: TimePacketSystem;
|
|
5719
|
-
const TimeSystem: TimeSystem;
|
|
5720
|
-
const ToggleGliderInteraction: ToggleGliderInteraction;
|
|
5721
|
-
const TriggerCooldownInteraction: TriggerCooldownInteraction;
|
|
5722
|
-
const UnbanCommand: UnbanCommand;
|
|
5723
|
-
const UpdateBinaryPrefabException: UpdateBinaryPrefabException;
|
|
5724
|
-
const UseBlockInteraction: UseBlockInteraction;
|
|
5725
|
-
const VulnerableMatcher: VulnerableMatcher;
|
|
5726
|
-
const WhitelistAddCommand: WhitelistAddCommand;
|
|
5727
|
-
const WhitelistClearCommand: WhitelistClearCommand;
|
|
5728
|
-
const WhitelistCommand: WhitelistCommand;
|
|
5729
|
-
const WhitelistDisableCommand: WhitelistDisableCommand;
|
|
5730
|
-
const WhitelistEnableCommand: WhitelistEnableCommand;
|
|
5731
|
-
const WhitelistListCommand: WhitelistListCommand;
|
|
5732
|
-
const WhitelistRemoveCommand: WhitelistRemoveCommand;
|
|
5733
|
-
const WhitelistStatusCommand: WhitelistStatusCommand;
|
|
5734
|
-
const EventTitleUtil: EventTitleUtil;
|
|
5735
|
-
const MySQLManager: MySQLManager;
|
|
5736
|
-
const TableBuilder: TableBuilderConstructor;
|
|
5145
|
+
export interface CommandBuffer<T> {
|
|
5146
|
+
getComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): C | null;
|
|
5147
|
+
putComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>, component: C): void;
|
|
5148
|
+
removeComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>): void;
|
|
5149
|
+
addComponent<C>(ref: Ref<T>, componentType: ComponentType<T, C>, component: C): void;
|
|
5737
5150
|
}
|
|
5738
|
-
export interface
|
|
5739
|
-
|
|
5740
|
-
clear(): void;
|
|
5741
|
-
contains(o: unknown): boolean;
|
|
5742
|
-
isEmpty(): boolean;
|
|
5743
|
-
iterator(): unknown;
|
|
5744
|
-
remove(o: unknown): boolean;
|
|
5745
|
-
size(): number;
|
|
5746
|
-
toArray(): T[];
|
|
5151
|
+
export interface AddReason {
|
|
5152
|
+
name(): string;
|
|
5747
5153
|
}
|
|
5748
|
-
export interface
|
|
5749
|
-
|
|
5750
|
-
|
|
5154
|
+
export interface AddReasonEnum {
|
|
5155
|
+
SPAWN: AddReason;
|
|
5156
|
+
LOAD: AddReason;
|
|
5157
|
+
EXTERNAL: AddReason;
|
|
5158
|
+
WORLDGEN: AddReason;
|
|
5751
5159
|
}
|
|
5752
|
-
export interface
|
|
5753
|
-
|
|
5754
|
-
getCustomHud(): ScriptCustomUIHud | null;
|
|
5160
|
+
export interface RemoveReason {
|
|
5161
|
+
name(): string;
|
|
5755
5162
|
}
|
|
5756
|
-
export interface
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5163
|
+
export interface RemoveReasonEnum {
|
|
5164
|
+
DESPAWN: RemoveReason;
|
|
5165
|
+
UNLOAD: RemoveReason;
|
|
5166
|
+
EXTERNAL: RemoveReason;
|
|
5167
|
+
}
|
|
5168
|
+
export interface Area {
|
|
5169
|
+
x: number;
|
|
5170
|
+
y: number;
|
|
5171
|
+
width: number;
|
|
5172
|
+
height: number;
|
|
5173
|
+
}
|
|
5174
|
+
export interface Anchor {
|
|
5175
|
+
width: number | null;
|
|
5176
|
+
height: number | null;
|
|
5177
|
+
top: number | null;
|
|
5178
|
+
bottom: number | null;
|
|
5179
|
+
left: number | null;
|
|
5180
|
+
right: number | null;
|
|
5181
|
+
full: number | null;
|
|
5182
|
+
horizontal: number | null;
|
|
5183
|
+
vertical: number | null;
|
|
5184
|
+
}
|
|
5185
|
+
export interface LocalizableString {
|
|
5186
|
+
key: string;
|
|
5187
|
+
params: JavaMap<string, string> | null;
|
|
5188
|
+
}
|
|
5189
|
+
export interface PatchStyle {
|
|
5190
|
+
texturePath: string;
|
|
5191
|
+
border: number | null;
|
|
5192
|
+
horizontalBorder: number | null;
|
|
5193
|
+
verticalBorder: number | null;
|
|
5194
|
+
}
|
|
5195
|
+
export interface ItemGridSlot {
|
|
5196
|
+
slotIndex: number;
|
|
5197
|
+
itemStack: ItemStack | null;
|
|
5198
|
+
}
|
|
5199
|
+
export interface DropdownEntryInfo {
|
|
5200
|
+
label: string;
|
|
5201
|
+
value: string;
|
|
5202
|
+
}
|
|
5203
|
+
export interface CustomUIEventBindingType {
|
|
5204
|
+
getValue(): number;
|
|
5205
|
+
name(): string;
|
|
5206
|
+
}
|
|
5207
|
+
export interface CustomUIEventBindingTypeEnum {
|
|
5208
|
+
Activating: CustomUIEventBindingType;
|
|
5209
|
+
RightClicking: CustomUIEventBindingType;
|
|
5210
|
+
DoubleClicking: CustomUIEventBindingType;
|
|
5211
|
+
MouseEntered: CustomUIEventBindingType;
|
|
5212
|
+
MouseExited: CustomUIEventBindingType;
|
|
5213
|
+
ValueChanged: CustomUIEventBindingType;
|
|
5214
|
+
ElementReordered: CustomUIEventBindingType;
|
|
5215
|
+
Validating: CustomUIEventBindingType;
|
|
5216
|
+
Dismissing: CustomUIEventBindingType;
|
|
5217
|
+
FocusGained: CustomUIEventBindingType;
|
|
5218
|
+
FocusLost: CustomUIEventBindingType;
|
|
5219
|
+
KeyDown: CustomUIEventBindingType;
|
|
5220
|
+
MouseButtonReleased: CustomUIEventBindingType;
|
|
5221
|
+
SlotClicking: CustomUIEventBindingType;
|
|
5222
|
+
SlotDoubleClicking: CustomUIEventBindingType;
|
|
5223
|
+
SlotMouseEntered: CustomUIEventBindingType;
|
|
5224
|
+
SlotMouseExited: CustomUIEventBindingType;
|
|
5225
|
+
DragCancelled: CustomUIEventBindingType;
|
|
5226
|
+
Dropped: CustomUIEventBindingType;
|
|
5227
|
+
SlotMouseDragCompleted: CustomUIEventBindingType;
|
|
5228
|
+
SlotMouseDragExited: CustomUIEventBindingType;
|
|
5229
|
+
SlotClickReleaseWhileDragging: CustomUIEventBindingType;
|
|
5230
|
+
SlotClickPressWhileDragging: CustomUIEventBindingType;
|
|
5231
|
+
SelectedTabChanged: CustomUIEventBindingType;
|
|
5232
|
+
VALUES: CustomUIEventBindingType[];
|
|
5233
|
+
fromValue(value: number): CustomUIEventBindingType;
|
|
5234
|
+
}
|
|
5235
|
+
export interface CustomPageLifetime {
|
|
5236
|
+
getValue(): number;
|
|
5237
|
+
name(): string;
|
|
5238
|
+
}
|
|
5239
|
+
export interface CustomPageLifetimeEnum {
|
|
5240
|
+
CantClose: CustomPageLifetime;
|
|
5241
|
+
CanDismiss: CustomPageLifetime;
|
|
5242
|
+
CanDismissOrCloseThroughInteraction: CustomPageLifetime;
|
|
5243
|
+
VALUES: CustomPageLifetime[];
|
|
5244
|
+
fromValue(value: number): CustomPageLifetime;
|
|
5245
|
+
}
|
|
5246
|
+
export interface CustomUICommandType {
|
|
5247
|
+
getValue(): number;
|
|
5248
|
+
name(): string;
|
|
5249
|
+
}
|
|
5250
|
+
export interface CustomUICommandTypeEnum {
|
|
5251
|
+
Clear: CustomUICommandType;
|
|
5252
|
+
Remove: CustomUICommandType;
|
|
5253
|
+
Append: CustomUICommandType;
|
|
5254
|
+
AppendInline: CustomUICommandType;
|
|
5255
|
+
InsertBefore: CustomUICommandType;
|
|
5256
|
+
InsertBeforeInline: CustomUICommandType;
|
|
5257
|
+
Set: CustomUICommandType;
|
|
5258
|
+
VALUES: CustomUICommandType[];
|
|
5259
|
+
fromValue(value: number): CustomUICommandType;
|
|
5260
|
+
}
|
|
5261
|
+
export interface HudComponent {
|
|
5262
|
+
getValue(): number;
|
|
5263
|
+
name(): string;
|
|
5264
|
+
}
|
|
5265
|
+
export interface HudComponentEnum {
|
|
5266
|
+
Hotbar: HudComponent;
|
|
5267
|
+
StatusIcons: HudComponent;
|
|
5268
|
+
Reticle: HudComponent;
|
|
5269
|
+
Chat: HudComponent;
|
|
5270
|
+
Requests: HudComponent;
|
|
5271
|
+
Notifications: HudComponent;
|
|
5272
|
+
KillFeed: HudComponent;
|
|
5273
|
+
InputBindings: HudComponent;
|
|
5274
|
+
PlayerList: HudComponent;
|
|
5275
|
+
EventTitle: HudComponent;
|
|
5276
|
+
Compass: HudComponent;
|
|
5277
|
+
ObjectivePanel: HudComponent;
|
|
5278
|
+
PortalPanel: HudComponent;
|
|
5279
|
+
BuilderToolsLegend: HudComponent;
|
|
5280
|
+
Speedometer: HudComponent;
|
|
5281
|
+
UtilitySlotSelector: HudComponent;
|
|
5282
|
+
BlockVariantSelector: HudComponent;
|
|
5283
|
+
BuilderToolsMaterialSlotSelector: HudComponent;
|
|
5284
|
+
Stamina: HudComponent;
|
|
5285
|
+
AmmoIndicator: HudComponent;
|
|
5286
|
+
Health: HudComponent;
|
|
5287
|
+
Mana: HudComponent;
|
|
5288
|
+
Oxygen: HudComponent;
|
|
5289
|
+
Sleep: HudComponent;
|
|
5290
|
+
VALUES: HudComponent[];
|
|
5291
|
+
fromValue(value: number): HudComponent;
|
|
5292
|
+
}
|
|
5293
|
+
export interface Page {
|
|
5294
|
+
getValue(): number;
|
|
5295
|
+
name(): string;
|
|
5296
|
+
}
|
|
5297
|
+
export interface PageEnum {
|
|
5298
|
+
None: Page;
|
|
5299
|
+
Inventory: Page;
|
|
5300
|
+
Crafting: Page;
|
|
5301
|
+
Map: Page;
|
|
5302
|
+
Container: Page;
|
|
5303
|
+
Respawn: Page;
|
|
5304
|
+
Shop: Page;
|
|
5305
|
+
VALUES: Page[];
|
|
5306
|
+
fromValue(value: number): Page;
|
|
5307
|
+
}
|
|
5308
|
+
export interface Value<T> {
|
|
5309
|
+
getValue(): T | null;
|
|
5310
|
+
getDocumentPath(): string | null;
|
|
5311
|
+
getValueName(): string | null;
|
|
5312
|
+
}
|
|
5313
|
+
export interface ValueStatic {
|
|
5314
|
+
ref<T>(document: string, value: string): Value<T>;
|
|
5315
|
+
of<T>(value: T): Value<T>;
|
|
5316
|
+
}
|
|
5317
|
+
export interface EventData {
|
|
5318
|
+
events(): JavaMap<string, string>;
|
|
5319
|
+
append(key: string, value: string): EventData;
|
|
5320
|
+
append<T extends string>(key: string, enumValue: {
|
|
5321
|
+
name(): T;
|
|
5322
|
+
}): EventData;
|
|
5323
|
+
put(key: string, value: string): EventData;
|
|
5324
|
+
}
|
|
5325
|
+
export interface EventDataStatic {
|
|
5326
|
+
new (): EventData;
|
|
5327
|
+
of(key: string, value: string): EventData;
|
|
5328
|
+
}
|
|
5329
|
+
export interface UICommandBuilder {
|
|
5330
|
+
clear(selector: string): UICommandBuilder;
|
|
5331
|
+
remove(selector: string): UICommandBuilder;
|
|
5332
|
+
append(documentPath: string): UICommandBuilder;
|
|
5333
|
+
append(selector: string, documentPath: string): UICommandBuilder;
|
|
5334
|
+
appendInline(selector: string, document: string): UICommandBuilder;
|
|
5335
|
+
insertBefore(selector: string, documentPath: string): UICommandBuilder;
|
|
5336
|
+
insertBeforeInline(selector: string, document: string): UICommandBuilder;
|
|
5337
|
+
set<T>(selector: string, ref: Value<T>): UICommandBuilder;
|
|
5338
|
+
set(selector: string, value: string): UICommandBuilder;
|
|
5339
|
+
set(selector: string, value: Message): UICommandBuilder;
|
|
5340
|
+
set(selector: string, value: boolean): UICommandBuilder;
|
|
5341
|
+
set(selector: string, value: number): UICommandBuilder;
|
|
5342
|
+
setNull(selector: string): UICommandBuilder;
|
|
5343
|
+
setObject(selector: string, data: Area | ItemGridSlot | ItemStack | LocalizableString | PatchStyle | DropdownEntryInfo | Anchor): UICommandBuilder;
|
|
5344
|
+
set<T>(selector: string, data: T[]): UICommandBuilder;
|
|
5345
|
+
set<T>(selector: string, data: JavaList<T>): UICommandBuilder;
|
|
5346
|
+
getCommands(): CustomUICommand[];
|
|
5347
|
+
}
|
|
5348
|
+
export interface UICommandBuilderStatic {
|
|
5349
|
+
new (): UICommandBuilder;
|
|
5350
|
+
EMPTY_COMMAND_ARRAY: CustomUICommand[];
|
|
5351
|
+
}
|
|
5352
|
+
export interface UIEventBuilder {
|
|
5353
|
+
addEventBinding(type: CustomUIEventBindingType, selector: string): UIEventBuilder;
|
|
5354
|
+
addEventBinding(type: CustomUIEventBindingType, selector: string, locksInterface: boolean): UIEventBuilder;
|
|
5355
|
+
addEventBinding(type: CustomUIEventBindingType, selector: string, data: EventData): UIEventBuilder;
|
|
5356
|
+
addEventBinding(type: CustomUIEventBindingType, selector: string, data: EventData | null, locksInterface: boolean): UIEventBuilder;
|
|
5357
|
+
getEvents(): CustomUIEventBinding[];
|
|
5358
|
+
}
|
|
5359
|
+
export interface UIEventBuilderStatic {
|
|
5360
|
+
new (): UIEventBuilder;
|
|
5361
|
+
EMPTY_EVENT_BINDING_ARRAY: CustomUIEventBinding[];
|
|
5362
|
+
}
|
|
5363
|
+
export interface CustomUICommand {
|
|
5364
|
+
type: CustomUICommandType;
|
|
5365
|
+
selector: string | null;
|
|
5366
|
+
value: string | null;
|
|
5367
|
+
documentPath: string | null;
|
|
5368
|
+
}
|
|
5369
|
+
export interface CustomUIEventBinding {
|
|
5370
|
+
type: CustomUIEventBindingType;
|
|
5371
|
+
selector: string | null;
|
|
5372
|
+
data: string | null;
|
|
5373
|
+
locksInterface: boolean;
|
|
5374
|
+
}
|
|
5375
|
+
export interface CustomPage {
|
|
5376
|
+
name: string;
|
|
5377
|
+
open: boolean;
|
|
5378
|
+
clear: boolean;
|
|
5379
|
+
lifetime: CustomPageLifetime;
|
|
5380
|
+
commands: CustomUICommand[];
|
|
5381
|
+
events: CustomUIEventBinding[];
|
|
5382
|
+
}
|
|
5383
|
+
export interface CustomHud {
|
|
5384
|
+
clear: boolean;
|
|
5385
|
+
commands: CustomUICommand[] | null;
|
|
5386
|
+
}
|
|
5387
|
+
export interface CustomUIPage {
|
|
5388
|
+
getLifetime(): CustomPageLifetime;
|
|
5389
|
+
setLifetime(lifetime: CustomPageLifetime): void;
|
|
5390
|
+
build(ref: Ref<EntityStore>, commandBuilder: UICommandBuilder, eventBuilder: UIEventBuilder, store: Store<EntityStore>): void;
|
|
5391
|
+
handleDataEvent(ref: Ref<EntityStore>, store: Store<EntityStore>, rawData: string): void;
|
|
5392
|
+
onDismiss(ref: Ref<EntityStore>, store: Store<EntityStore>): void;
|
|
5393
|
+
}
|
|
5394
|
+
export interface CustomUIHud {
|
|
5395
|
+
build(commandBuilder: UICommandBuilder): void;
|
|
5396
|
+
show(): void;
|
|
5397
|
+
update(clear: boolean, commandBuilder: UICommandBuilder): void;
|
|
5398
|
+
getPlayerRef(): PlayerRef;
|
|
5399
|
+
}
|
|
5400
|
+
export interface PageManager {
|
|
5401
|
+
getCustomPage(): CustomUIPage | null;
|
|
5402
|
+
setPage(ref: Ref<EntityStore>, store: Store<EntityStore>, page: Page): void;
|
|
5403
|
+
setPage(ref: Ref<EntityStore>, store: Store<EntityStore>, page: Page, canCloseThroughInteraction: boolean): void;
|
|
5404
|
+
openCustomPage(ref: Ref<EntityStore>, store: Store<EntityStore>, page: CustomUIPage): void;
|
|
5405
|
+
updateCustomPage(page: CustomPage): void;
|
|
5760
5406
|
}
|
|
5761
|
-
export interface
|
|
5407
|
+
export interface HudManager {
|
|
5408
|
+
getCustomHud(): CustomUIHud | null;
|
|
5409
|
+
getVisibleHudComponents(): JavaSet<HudComponent>;
|
|
5410
|
+
setVisibleHudComponents(ref: PlayerRef, ...hudComponents: HudComponent[]): void;
|
|
5411
|
+
showHudComponents(ref: PlayerRef, ...hudComponents: HudComponent[]): void;
|
|
5412
|
+
hideHudComponents(ref: PlayerRef, ...hudComponents: HudComponent[]): void;
|
|
5413
|
+
setCustomHud(ref: PlayerRef, hud: CustomUIHud | null): void;
|
|
5414
|
+
resetHud(ref: PlayerRef): void;
|
|
5415
|
+
resetUserInterface(ref: PlayerRef): void;
|
|
5416
|
+
}
|
|
5417
|
+
export type ScriptCustomUIPageBuildCallback = (ref: Ref<EntityStore>, commandBuilder: UICommandBuilder, eventBuilder: UIEventBuilder, store: Store<EntityStore>) => void;
|
|
5418
|
+
export type ScriptCustomUIPageEventCallback = (ref: Ref<EntityStore>, store: Store<EntityStore>, rawData: string) => void;
|
|
5419
|
+
export type ScriptCustomUIPageDismissCallback = (ref: Ref<EntityStore>, store: Store<EntityStore>) => void;
|
|
5420
|
+
export interface ScriptCustomUIPage extends CustomUIPage {
|
|
5762
5421
|
triggerRebuild(): void;
|
|
5763
5422
|
triggerSendUpdate(): void;
|
|
5764
5423
|
triggerSendUpdate(commandBuilder: UICommandBuilder): void;
|
|
5765
5424
|
triggerSendUpdate(commandBuilder: UICommandBuilder, clear: boolean): void;
|
|
5766
5425
|
triggerClose(): void;
|
|
5767
5426
|
getPlayerRef(): PlayerRef;
|
|
5768
|
-
getPageLifetime():
|
|
5769
|
-
setPageLifetime(lifetime:
|
|
5427
|
+
getPageLifetime(): CustomPageLifetime;
|
|
5428
|
+
setPageLifetime(lifetime: CustomPageLifetime): void;
|
|
5770
5429
|
}
|
|
5771
|
-
export interface
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
set(selector: string, value: boolean): UICommandBuilder;
|
|
5430
|
+
export interface ScriptCustomUIPageStatic {
|
|
5431
|
+
new (playerRef: PlayerRef, lifetime: CustomPageLifetime, buildCallback: ScriptCustomUIPageBuildCallback): ScriptCustomUIPage;
|
|
5432
|
+
new (playerRef: PlayerRef, lifetime: CustomPageLifetime, buildCallback: ScriptCustomUIPageBuildCallback, eventCallback: ScriptCustomUIPageEventCallback | null): ScriptCustomUIPage;
|
|
5433
|
+
new (playerRef: PlayerRef, lifetime: CustomPageLifetime, buildCallback: ScriptCustomUIPageBuildCallback, eventCallback: ScriptCustomUIPageEventCallback | null, dismissCallback: ScriptCustomUIPageDismissCallback | null): ScriptCustomUIPage;
|
|
5776
5434
|
}
|
|
5777
|
-
export
|
|
5778
|
-
|
|
5435
|
+
export type ScriptCustomUIHudBuildCallback = (commandBuilder: UICommandBuilder) => void;
|
|
5436
|
+
export interface ScriptCustomUIHud extends CustomUIHud {
|
|
5437
|
+
triggerShow(): void;
|
|
5438
|
+
triggerUpdate(commandBuilder: UICommandBuilder): void;
|
|
5439
|
+
triggerUpdate(commandBuilder: UICommandBuilder, clear: boolean): void;
|
|
5440
|
+
getPlayerRef(): PlayerRef;
|
|
5441
|
+
}
|
|
5442
|
+
export interface ScriptCustomUIHudStatic {
|
|
5443
|
+
new (playerRef: PlayerRef, buildCallback: ScriptCustomUIHudBuildCallback): ScriptCustomUIHud;
|
|
5779
5444
|
}
|
|
5780
|
-
export
|
|
5445
|
+
export type JavaByteArray = unknown;
|
|
5446
|
+
export type JavaCompletableFuture<T> = unknown;
|
|
5447
|
+
export interface CommonAsset {
|
|
5781
5448
|
getName(): string;
|
|
5782
5449
|
getHash(): string;
|
|
5450
|
+
getBlob(): JavaCompletableFuture<JavaByteArray>;
|
|
5783
5451
|
}
|
|
5784
|
-
export interface
|
|
5785
|
-
new (name: string, bytes: unknown): ByteArrayCommonAsset;
|
|
5786
|
-
new (name: string, content: string): ByteArrayCommonAsset;
|
|
5787
|
-
}
|
|
5788
|
-
export interface ScriptCustomUIHudConstructor {
|
|
5789
|
-
new (playerRef: PlayerRef, buildCallback: (cmd: UICommandBuilder) => void): ScriptCustomUIHud;
|
|
5452
|
+
export interface ByteArrayCommonAsset extends CommonAsset {
|
|
5790
5453
|
}
|
|
5791
|
-
export interface
|
|
5792
|
-
new (
|
|
5454
|
+
export interface ByteArrayCommonAssetStatic {
|
|
5455
|
+
new (name: string, bytes: JavaByteArray): ByteArrayCommonAsset;
|
|
5456
|
+
new (name: string, content: string): ByteArrayCommonAsset;
|
|
5793
5457
|
}
|
|
5794
5458
|
export interface CommonAssetModule {
|
|
5795
|
-
|
|
5796
|
-
addCommonAsset(
|
|
5459
|
+
addCommonAsset<T extends CommonAsset>(pack: string, asset: T): void;
|
|
5460
|
+
addCommonAsset<T extends CommonAsset>(pack: string, asset: T, log: boolean): void;
|
|
5797
5461
|
}
|
|
5798
|
-
export interface
|
|
5799
|
-
|
|
5800
|
-
setInventory(inventory: Inventory): Inventory;
|
|
5801
|
-
getStatMap(): EntityStatMap | null;
|
|
5462
|
+
export interface CommonAssetModuleStatic {
|
|
5463
|
+
get(): CommonAssetModule;
|
|
5802
5464
|
}
|
|
5803
5465
|
export interface NPCEntity extends LivingEntity {
|
|
5804
5466
|
getRole(): Role | null;
|
|
@@ -5824,9 +5486,9 @@ export interface NPCEntity extends LivingEntity {
|
|
|
5824
5486
|
setDespawnAnimationRemainingSeconds(seconds: number): void;
|
|
5825
5487
|
setInitialModelScale(scale: number): void;
|
|
5826
5488
|
getOldPosition(): Vector3d;
|
|
5827
|
-
playAnimation(ref: Ref
|
|
5828
|
-
onFlockSetState(ref: Ref
|
|
5829
|
-
onFlockSetTarget(targetSlot: string, target: Ref): void;
|
|
5489
|
+
playAnimation(ref: Ref<EntityStore>, animationSlot: AnimationSlot, animationId: string | null, componentAccessor: ComponentAccessor<EntityStore>): void;
|
|
5490
|
+
onFlockSetState(ref: Ref<EntityStore>, state: string, subState: string | null, componentAccessor: ComponentAccessor<EntityStore>): void;
|
|
5491
|
+
onFlockSetTarget(targetSlot: string, target: Ref<EntityStore>): void;
|
|
5830
5492
|
getSpawnInstant(): unknown;
|
|
5831
5493
|
setSpawnInstant(instant: unknown): void;
|
|
5832
5494
|
getEnvironmentIndex(): number;
|
|
@@ -5835,9 +5497,14 @@ export interface NPCEntity extends LivingEntity {
|
|
|
5835
5497
|
setSpawnTracked(tracked: boolean): void;
|
|
5836
5498
|
}
|
|
5837
5499
|
export interface NPCEntityStatic {
|
|
5838
|
-
getComponentType(): ComponentType | null;
|
|
5500
|
+
getComponentType(): ComponentType<EntityStore, NPCEntity> | null;
|
|
5839
5501
|
CODEC: unknown;
|
|
5840
5502
|
}
|
|
5503
|
+
export interface LivingEntity extends Entity {
|
|
5504
|
+
getInventory(): Inventory;
|
|
5505
|
+
setInventory(inventory: Inventory): Inventory;
|
|
5506
|
+
getStatMap(): EntityStatMap | null;
|
|
5507
|
+
}
|
|
5841
5508
|
export interface Role {
|
|
5842
5509
|
getRoleIndex(): number;
|
|
5843
5510
|
getRoleName(): string;
|
|
@@ -5852,7 +5519,7 @@ export interface Role {
|
|
|
5852
5519
|
isRoleChangeRequested(): boolean;
|
|
5853
5520
|
canBreathe(breathingMaterial: unknown, fluidId: number): boolean;
|
|
5854
5521
|
requiresLeashPosition(): boolean;
|
|
5855
|
-
setMarkedTarget(targetSlot: string, target: Ref): void;
|
|
5522
|
+
setMarkedTarget(targetSlot: string, target: Ref<EntityStore>): void;
|
|
5856
5523
|
getAppearance(): string;
|
|
5857
5524
|
getInitialMaxHealth(): number;
|
|
5858
5525
|
getCollisionRadius(): number;
|
|
@@ -5878,18 +5545,18 @@ export interface Role {
|
|
|
5878
5545
|
getNameTranslationKey(): string;
|
|
5879
5546
|
}
|
|
5880
5547
|
export interface CombatSupport {
|
|
5881
|
-
getCanCauseDamage(attackerRef: Ref
|
|
5548
|
+
getCanCauseDamage(attackerRef: Ref<EntityStore>, componentAccessor: ComponentAccessor<EntityStore>): boolean;
|
|
5882
5549
|
}
|
|
5883
5550
|
export interface StateSupport {
|
|
5884
|
-
setState(ref: Ref
|
|
5551
|
+
setState(ref: Ref<EntityStore>, state: string, subState: string | null, componentAccessor: ComponentAccessor<EntityStore>): void;
|
|
5885
5552
|
getState(): string | null;
|
|
5886
5553
|
getSubState(): string | null;
|
|
5887
|
-
addInteraction(ref: Ref
|
|
5888
|
-
willInteractWith(ref: Ref): boolean;
|
|
5554
|
+
addInteraction(ref: Ref<EntityStore>, interactionRef: Ref<EntityStore>, componentAccessor: ComponentAccessor<EntityStore>): void;
|
|
5555
|
+
willInteractWith(ref: Ref<EntityStore>): boolean;
|
|
5889
5556
|
}
|
|
5890
5557
|
export interface MarkedEntitySupport {
|
|
5891
|
-
getMarkedTarget(targetSlot: string): Ref | null;
|
|
5892
|
-
setMarkedTarget(targetSlot: string, target: Ref): void;
|
|
5558
|
+
getMarkedTarget(targetSlot: string): Ref<EntityStore> | null;
|
|
5559
|
+
setMarkedTarget(targetSlot: string, target: Ref<EntityStore>): void;
|
|
5893
5560
|
clearMarkedTarget(targetSlot: string): void;
|
|
5894
5561
|
hasMarkedTarget(targetSlot: string): boolean;
|
|
5895
5562
|
}
|
|
@@ -5898,7 +5565,7 @@ export interface WorldSupport {
|
|
|
5898
5565
|
}
|
|
5899
5566
|
export interface EntitySupport {
|
|
5900
5567
|
getDisplayName(): string | null;
|
|
5901
|
-
setDisplayName(ref: Ref
|
|
5568
|
+
setDisplayName(ref: Ref<EntityStore>, displayName: string, componentAccessor: ComponentAccessor<EntityStore>): void;
|
|
5902
5569
|
}
|
|
5903
5570
|
export interface PositionCache {
|
|
5904
5571
|
getPosition(): Vector3d;
|
|
@@ -5916,7 +5583,7 @@ export interface AlarmStore {
|
|
|
5916
5583
|
}
|
|
5917
5584
|
export interface DamageData {
|
|
5918
5585
|
reset(): void;
|
|
5919
|
-
getLastDamageSource(): Ref | null;
|
|
5586
|
+
getLastDamageSource(): Ref<EntityStore> | null;
|
|
5920
5587
|
getLastDamageAmount(): number;
|
|
5921
5588
|
getLastDamageTime(): number;
|
|
5922
5589
|
getTotalDamageReceived(): number;
|
|
@@ -5939,40 +5606,40 @@ export interface NPCPlugin {
|
|
|
5939
5606
|
hasRoleName(roleName: string): boolean;
|
|
5940
5607
|
validateSpawnableRole(roleName: string): void;
|
|
5941
5608
|
getRoleTemplateNames(spawnableOnly: boolean): string[];
|
|
5942
|
-
tryGetCachedValidRole(roleIndex: number): Builder | null;
|
|
5609
|
+
tryGetCachedValidRole(roleIndex: number): Builder<Role> | null;
|
|
5943
5610
|
getRoleBuilderInfo(roleIndex: number): BuilderInfo | null;
|
|
5944
|
-
spawnNPC(store:
|
|
5945
|
-
spawnEntity(store:
|
|
5946
|
-
getBlackboardResourceType():
|
|
5947
|
-
getNpcSpatialResource():
|
|
5611
|
+
spawnNPC(store: Store<EntityStore>, npcType: string, groupType: string | null, position: Vector3d, rotation: Vector3f): JavaPair<Ref<EntityStore>, INonPlayerCharacter> | null;
|
|
5612
|
+
spawnEntity(store: Store<EntityStore>, roleIndex: number, position: Vector3d, rotation: Vector3f | null, spawnModel: Model | null, postSpawn: TriConsumer<NPCEntity, Ref<EntityStore>, Store<EntityStore>> | null): JavaPair<Ref<EntityStore>, NPCEntity> | null;
|
|
5613
|
+
getBlackboardResourceType(): ResourceType<EntityStore, Blackboard>;
|
|
5614
|
+
getNpcSpatialResource(): SpatialResource<EntityStore>;
|
|
5948
5615
|
getAttitudeMap(): AttitudeMap;
|
|
5949
5616
|
getItemAttitudeMap(): ItemAttitudeMap;
|
|
5950
5617
|
getBuilderManager(): BuilderManager;
|
|
5951
|
-
getBeaconSupportComponentType(): ComponentType
|
|
5952
|
-
getNpcBlockEventSupportComponentType(): ComponentType
|
|
5953
|
-
getNpcEntityEventSupportComponentType(): ComponentType
|
|
5954
|
-
getTimersComponentType(): ComponentType
|
|
5955
|
-
getStateEvaluatorComponentType(): ComponentType
|
|
5956
|
-
getValueStoreComponentType(): ComponentType
|
|
5618
|
+
getBeaconSupportComponentType(): ComponentType<EntityStore, BeaconSupport>;
|
|
5619
|
+
getNpcBlockEventSupportComponentType(): ComponentType<EntityStore, NPCBlockEventSupport>;
|
|
5620
|
+
getNpcEntityEventSupportComponentType(): ComponentType<EntityStore, NPCEntityEventSupport>;
|
|
5621
|
+
getTimersComponentType(): ComponentType<EntityStore, Timers>;
|
|
5622
|
+
getStateEvaluatorComponentType(): ComponentType<EntityStore, StateEvaluator>;
|
|
5623
|
+
getValueStoreComponentType(): ComponentType<EntityStore, ValueStore>;
|
|
5957
5624
|
}
|
|
5958
5625
|
export interface NPCPluginStatic {
|
|
5959
5626
|
get(): NPCPlugin;
|
|
5960
5627
|
reloadNPCsWithRole(roleIndex: number): void;
|
|
5961
|
-
buildRole(roleBuilder: Builder
|
|
5628
|
+
buildRole(roleBuilder: Builder<Role>, builderInfo: BuilderInfo, builderSupport: BuilderSupport, roleIndex: number): Role;
|
|
5962
5629
|
}
|
|
5963
5630
|
export interface INonPlayerCharacter {
|
|
5964
5631
|
getRole(): Role | null;
|
|
5965
5632
|
getRoleIndex(): number;
|
|
5966
5633
|
}
|
|
5967
|
-
export interface Builder {
|
|
5968
|
-
build2(builderSupport: BuilderSupport):
|
|
5634
|
+
export interface Builder<T> {
|
|
5635
|
+
build2(builderSupport: BuilderSupport): T;
|
|
5969
5636
|
getBuilderParameters(): unknown;
|
|
5970
5637
|
category(): unknown;
|
|
5971
5638
|
isSpawnable(): boolean;
|
|
5972
5639
|
}
|
|
5973
5640
|
export interface BuilderInfo {
|
|
5974
5641
|
getKeyName(): string;
|
|
5975
|
-
getBuilder(): Builder
|
|
5642
|
+
getBuilder(): Builder<unknown>;
|
|
5976
5643
|
isValid(): boolean;
|
|
5977
5644
|
isValidated(): boolean;
|
|
5978
5645
|
setNeedsReload(): void;
|
|
@@ -5984,7 +5651,7 @@ export interface BuilderSupport {
|
|
|
5984
5651
|
export interface BuilderManager {
|
|
5985
5652
|
getIndex(builderName: string): number;
|
|
5986
5653
|
lookupName(builderIndex: number): string | null;
|
|
5987
|
-
tryGetCachedValidRole(roleIndex: number): Builder | null;
|
|
5654
|
+
tryGetCachedValidRole(roleIndex: number): Builder<Role> | null;
|
|
5988
5655
|
tryGetBuilderInfo(builderIndex: number): BuilderInfo | null;
|
|
5989
5656
|
getCachedBuilderInfo(roleIndex: number, category: unknown): BuilderInfo;
|
|
5990
5657
|
validateBuilder(builderInfo: BuilderInfo): boolean;
|
|
@@ -6004,6 +5671,22 @@ export interface ItemAttitudeMap {
|
|
|
6004
5671
|
getAttitude(groupIndex: number, itemIndex: number): number;
|
|
6005
5672
|
getAttitudeGroupCount(): number;
|
|
6006
5673
|
}
|
|
5674
|
+
export interface BeaconSupport {
|
|
5675
|
+
}
|
|
5676
|
+
export interface NPCBlockEventSupport {
|
|
5677
|
+
}
|
|
5678
|
+
export interface NPCEntityEventSupport {
|
|
5679
|
+
}
|
|
5680
|
+
export interface Timers {
|
|
5681
|
+
}
|
|
5682
|
+
export interface StateEvaluator {
|
|
5683
|
+
}
|
|
5684
|
+
export interface ValueStore {
|
|
5685
|
+
getValue(key: string): unknown;
|
|
5686
|
+
setValue(key: string, value: unknown): void;
|
|
5687
|
+
hasValue(key: string): boolean;
|
|
5688
|
+
removeValue(key: string): void;
|
|
5689
|
+
}
|
|
6007
5690
|
export interface Model {
|
|
6008
5691
|
getId(): string;
|
|
6009
5692
|
getModelAssetId(): string;
|
|
@@ -6017,36 +5700,56 @@ export interface ModelStatic {
|
|
|
6017
5700
|
export interface ModelAsset {
|
|
6018
5701
|
getId(): string;
|
|
6019
5702
|
}
|
|
6020
|
-
export interface JavaPair {
|
|
6021
|
-
first():
|
|
6022
|
-
second():
|
|
5703
|
+
export interface JavaPair<F, S> {
|
|
5704
|
+
first(): F;
|
|
5705
|
+
second(): S;
|
|
6023
5706
|
}
|
|
6024
5707
|
export interface JavaPairStatic {
|
|
6025
|
-
of(first:
|
|
5708
|
+
of<F, S>(first: F, second: S): JavaPair<F, S>;
|
|
5709
|
+
}
|
|
5710
|
+
export type TriConsumer<A, B, C> = (a: A, b: B, c: C) => void;
|
|
5711
|
+
export interface ResourceType<S, R> {
|
|
5712
|
+
}
|
|
5713
|
+
export interface SpatialResource<S> {
|
|
5714
|
+
}
|
|
5715
|
+
export interface SpawningPlugin {
|
|
5716
|
+
get(): SpawningPlugin;
|
|
5717
|
+
}
|
|
5718
|
+
export interface SpawningPluginStatic {
|
|
5719
|
+
get(): SpawningPlugin;
|
|
6026
5720
|
}
|
|
6027
|
-
export type TriConsumer = (a: unknown, b: unknown, c: unknown) => void;
|
|
6028
5721
|
export interface FlockPlugin {
|
|
6029
5722
|
get(): FlockPlugin;
|
|
6030
|
-
trySpawnFlock(npcRef: Ref
|
|
5723
|
+
trySpawnFlock(npcRef: Ref<EntityStore>, npcComponent: NPCEntity, store: Store<EntityStore>, roleIndex: number, position: Vector3d, rotation: Vector3f, flockDefinition: FlockAsset | null, postSpawn: TriConsumer<NPCEntity, Ref<EntityStore>, Store<EntityStore>> | null): void;
|
|
6031
5724
|
}
|
|
6032
5725
|
export interface FlockPluginStatic {
|
|
6033
5726
|
get(): FlockPlugin;
|
|
6034
|
-
trySpawnFlock(npcRef: Ref
|
|
5727
|
+
trySpawnFlock(npcRef: Ref<EntityStore>, npcComponent: NPCEntity, store: Store<EntityStore>, roleIndex: number, position: Vector3d, rotation: Vector3f, flockDefinition: FlockAsset | null, postSpawn: TriConsumer<NPCEntity, Ref<EntityStore>, Store<EntityStore>> | null): void;
|
|
6035
5728
|
}
|
|
6036
5729
|
export interface FlockAsset {
|
|
6037
5730
|
getId(): string;
|
|
6038
5731
|
}
|
|
6039
|
-
export interface
|
|
6040
|
-
|
|
5732
|
+
export interface FlockAssetStatic {
|
|
5733
|
+
getAssetMap(): IndexedLookupTableAssetMap<string, FlockAsset>;
|
|
6041
5734
|
}
|
|
6042
|
-
export interface
|
|
6043
|
-
|
|
5735
|
+
export interface IndexedLookupTableAssetMap<K, V> {
|
|
5736
|
+
getIndex(key: K): number;
|
|
5737
|
+
getAsset(key: K): V | null;
|
|
5738
|
+
getAssetOrDefault(index: number, defaultValue: V | null): V | null;
|
|
5739
|
+
}
|
|
5740
|
+
export interface UseNPCInteraction {
|
|
5741
|
+
DEFAULT_ID: string;
|
|
5742
|
+
DEFAULT_ROOT: unknown;
|
|
5743
|
+
}
|
|
5744
|
+
export interface SpawnNPCInteraction {
|
|
5745
|
+
}
|
|
5746
|
+
export interface ContextualUseNPCInteraction {
|
|
6044
5747
|
}
|
|
6045
5748
|
export interface NPCSpawnEvent {
|
|
6046
5749
|
toString(): string;
|
|
6047
|
-
getNpcRef(): Ref
|
|
5750
|
+
getNpcRef(): Ref<EntityStore>;
|
|
6048
5751
|
getNpcEntity(): NPCEntity;
|
|
6049
|
-
getStore():
|
|
5752
|
+
getStore(): Store<EntityStore>;
|
|
6050
5753
|
getRoleIndex(): number;
|
|
6051
5754
|
getRoleName(): string;
|
|
6052
5755
|
getPosition(): Vector3d;
|
|
@@ -6056,15 +5759,15 @@ export interface NPCSpawnEvent {
|
|
|
6056
5759
|
}
|
|
6057
5760
|
export interface NPCDespawnEvent {
|
|
6058
5761
|
toString(): string;
|
|
6059
|
-
getNpcRef(): Ref
|
|
5762
|
+
getNpcRef(): Ref<EntityStore>;
|
|
6060
5763
|
getNpcEntity(): NPCEntity;
|
|
6061
|
-
getStore():
|
|
5764
|
+
getStore(): Store<EntityStore>;
|
|
6062
5765
|
getRoleIndex(): number;
|
|
6063
5766
|
getRoleName(): string;
|
|
6064
5767
|
}
|
|
6065
5768
|
export interface NPCRoleChangeEvent {
|
|
6066
5769
|
toString(): string;
|
|
6067
|
-
getNpcRef(): Ref
|
|
5770
|
+
getNpcRef(): Ref<EntityStore>;
|
|
6068
5771
|
getNpcEntity(): NPCEntity;
|
|
6069
5772
|
getOldRoleIndex(): number;
|
|
6070
5773
|
getNewRoleIndex(): number;
|
|
@@ -6073,9 +5776,9 @@ export interface NPCRoleChangeEvent {
|
|
|
6073
5776
|
}
|
|
6074
5777
|
export interface NPCDamageEvent {
|
|
6075
5778
|
toString(): string;
|
|
6076
|
-
getNpcRef(): Ref
|
|
5779
|
+
getNpcRef(): Ref<EntityStore>;
|
|
6077
5780
|
getNpcEntity(): NPCEntity;
|
|
6078
|
-
getDamageSource(): Ref | null;
|
|
5781
|
+
getDamageSource(): Ref<EntityStore> | null;
|
|
6079
5782
|
getDamageAmount(): number;
|
|
6080
5783
|
isCancelled(): boolean;
|
|
6081
5784
|
setCancelled(cancelled: boolean): void;
|
|
@@ -6083,31 +5786,648 @@ export interface NPCDamageEvent {
|
|
|
6083
5786
|
}
|
|
6084
5787
|
export interface NPCDeathEvent {
|
|
6085
5788
|
toString(): string;
|
|
6086
|
-
getNpcRef(): Ref
|
|
5789
|
+
getNpcRef(): Ref<EntityStore>;
|
|
6087
5790
|
getNpcEntity(): NPCEntity;
|
|
6088
|
-
getKillerRef(): Ref | null;
|
|
5791
|
+
getKillerRef(): Ref<EntityStore> | null;
|
|
5792
|
+
}
|
|
5793
|
+
export interface EventTitleUtil {
|
|
5794
|
+
DEFAULT_ZONE: string;
|
|
5795
|
+
DEFAULT_DURATION: number;
|
|
5796
|
+
DEFAULT_FADE_DURATION: number;
|
|
5797
|
+
/**
|
|
5798
|
+
* @param primaryTitle O título principal.
|
|
5799
|
+
* @param secondaryTitle O título secundário.
|
|
5800
|
+
* @param isMajor Se o título é major.
|
|
5801
|
+
* @param icon O ícone a ser exibido.
|
|
5802
|
+
* @param duration A duração do título.
|
|
5803
|
+
* @param fadeInDuration A duração do fade in.
|
|
5804
|
+
* @param fadeOutDuration A duração do fade out.
|
|
5805
|
+
*/
|
|
5806
|
+
showEventTitleToUniverse(primaryTitle: Message, secondaryTitle: Message, isMajor: boolean, icon: string | null, duration: number, fadeInDuration: number, fadeOutDuration: number): void;
|
|
5807
|
+
/**
|
|
5808
|
+
* @param primaryTitle O título principal.
|
|
5809
|
+
* @param secondaryTitle O título secundário.
|
|
5810
|
+
* @param isMajor Se o título é major.
|
|
5811
|
+
* @param icon O ícone a ser exibido.
|
|
5812
|
+
* @param duration A duração do título.
|
|
5813
|
+
* @param fadeInDuration A duração do fade in.
|
|
5814
|
+
* @param fadeOutDuration A duração do fade out.
|
|
5815
|
+
* @param store Referência do mundo.
|
|
5816
|
+
*/
|
|
5817
|
+
showEventTitleToWorld(primaryTitle: Message, secondaryTitle: Message, isMajor: boolean, icon: string | null, duration: number, fadeInDuration: number, fadeOutDuration: number, store: unknown): void;
|
|
5818
|
+
/**
|
|
5819
|
+
* @param fadeOutDuration A duração do fade out.
|
|
5820
|
+
* @param store Referência do mundo.
|
|
5821
|
+
*/
|
|
5822
|
+
hideEventTitleFromWorld(fadeOutDuration: number, store: unknown): void;
|
|
5823
|
+
/**
|
|
5824
|
+
* @param playerRef Referência do Jogador que deseja mostrar o título.
|
|
5825
|
+
* @param primaryTitle O título principal.
|
|
5826
|
+
* @param secondaryTitle O título secundário.
|
|
5827
|
+
* @param isMajor Se o título é major.
|
|
5828
|
+
* @param icon O ícone a ser exibido.
|
|
5829
|
+
* @param duration A duração do título.
|
|
5830
|
+
* @param fadeInDuration A duração do fade in.
|
|
5831
|
+
* @param fadeOutDuration A duração do fade out.
|
|
5832
|
+
*/
|
|
5833
|
+
showEventTitleToPlayer(playerRef: PlayerRef, primaryTitle: Message, secondaryTitle: Message, isMajor: boolean, icon: string | null, duration: number, fadeInDuration: number, fadeOutDuration: number): void;
|
|
5834
|
+
/**
|
|
5835
|
+
* Shows an event title to a specific player with default durations.
|
|
5836
|
+
*/
|
|
5837
|
+
showEventTitleToPlayer(playerRef: PlayerRef, primaryTitle: Message, secondaryTitle: Message, isMajor: boolean): void;
|
|
5838
|
+
/**
|
|
5839
|
+
* Hides the event title from a specific player.
|
|
5840
|
+
*/
|
|
5841
|
+
hideEventTitleFromPlayer(playerRef: PlayerRef, fadeOutDuration: number): void;
|
|
6089
5842
|
}
|
|
6090
5843
|
declare global {
|
|
6091
|
-
const
|
|
6092
|
-
const
|
|
6093
|
-
const
|
|
6094
|
-
const
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
const
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
const
|
|
6101
|
-
const
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
5844
|
+
const Java: JavaInterop;
|
|
5845
|
+
const logger: ScriptLogger;
|
|
5846
|
+
const plugin: unknown;
|
|
5847
|
+
const commands: ScriptCommandRegistry;
|
|
5848
|
+
const scheduler: ScriptScheduler;
|
|
5849
|
+
const metrics: JavetCallMetrics;
|
|
5850
|
+
const Universe: UniverseStatic;
|
|
5851
|
+
const HytaleServer: HytaleServerStatic;
|
|
5852
|
+
const Message: MessageStatic;
|
|
5853
|
+
const ItemStack: ItemStack;
|
|
5854
|
+
const Item: ItemClass;
|
|
5855
|
+
const Vector3i: Vector3i;
|
|
5856
|
+
const Vector3f: Vector3f;
|
|
5857
|
+
const Vector3d: Vector3d;
|
|
5858
|
+
const Vector2i: Vector2i;
|
|
5859
|
+
const Vector2d: Vector2d;
|
|
5860
|
+
const Vector2f: Vector2f;
|
|
5861
|
+
const Transform: Transform;
|
|
5862
|
+
const Color: Color;
|
|
5863
|
+
const ColorLight: ColorLight;
|
|
5864
|
+
const Box: Box;
|
|
5865
|
+
const Cylinder: Cylinder;
|
|
5866
|
+
const SoundEvent: SoundEventClass;
|
|
5867
|
+
const SoundCategory: SoundCategoryEnum;
|
|
5868
|
+
const PlaySoundEvent2D: PlaySoundEvent2D;
|
|
5869
|
+
const UICommandBuilder: UICommandBuilderStatic;
|
|
5870
|
+
const UIEventBuilder: UIEventBuilderStatic;
|
|
5871
|
+
const EventData: EventDataStatic;
|
|
5872
|
+
const Value: ValueStatic;
|
|
5873
|
+
const CustomUIEventBindingType: CustomUIEventBindingTypeEnum;
|
|
5874
|
+
const CustomPageLifetime: CustomPageLifetimeEnum;
|
|
5875
|
+
const CustomUICommandType: CustomUICommandTypeEnum;
|
|
5876
|
+
const HudComponent: HudComponentEnum;
|
|
5877
|
+
const Page: PageEnum;
|
|
5878
|
+
const ScriptCustomUIPage: ScriptCustomUIPageStatic;
|
|
5879
|
+
const ScriptCustomUIHud: ScriptCustomUIHudStatic;
|
|
5880
|
+
const ByteArrayCommonAsset: ByteArrayCommonAssetStatic;
|
|
5881
|
+
const CommonAssetModule: CommonAssetModuleStatic;
|
|
5882
|
+
const DynamicLight: DynamicLight;
|
|
5883
|
+
const PersistentDynamicLight: PersistentDynamicLight;
|
|
5884
|
+
const Position: Position;
|
|
5885
|
+
const Direction: Direction;
|
|
5886
|
+
const PlaySoundEvent3D: PlaySoundEvent3D;
|
|
5887
|
+
const PlaySoundEventEntity: PlaySoundEventEntity;
|
|
5888
|
+
const SpawnParticleSystem: SpawnParticleSystem;
|
|
5889
|
+
const ParticleSystem: ParticleSystemClass;
|
|
5890
|
+
const SetBlockCmd: SetBlockCmd;
|
|
5891
|
+
const ServerSetBlocks: ServerSetBlocks;
|
|
5892
|
+
const BlockType: BlockType;
|
|
5893
|
+
const ChunkUtil: ChunkUtil;
|
|
5894
|
+
const ModelTransform: ModelTransform;
|
|
5895
|
+
const AudioComponent: AudioComponent;
|
|
5896
|
+
const DisplayNameComponent: DisplayNameComponent;
|
|
5897
|
+
const TransformComponent: TransformComponent;
|
|
5898
|
+
const ActiveEntityEffect: ActiveEntityEffect;
|
|
5899
|
+
const CameraManager: CameraManager;
|
|
5900
|
+
const AbilityEffects: AbilityEffects;
|
|
5901
|
+
const ActiveAnimationComponent: ActiveAnimationComponent;
|
|
5902
|
+
const AliveCondition: AliveCondition;
|
|
5903
|
+
const AllLegacyEntityTypesQuery: AllLegacyEntityTypesQuery;
|
|
5904
|
+
const AllLegacyLivingEntityTypesQuery: AllLegacyLivingEntityTypesQuery;
|
|
5905
|
+
const AnimationUtils: AnimationUtils;
|
|
5906
|
+
const AOECircleSelector: AOECircleSelector;
|
|
5907
|
+
const AOECylinderSelector: AOECylinderSelector;
|
|
5908
|
+
const ApplicationEffects: ApplicationEffects;
|
|
5909
|
+
const ApplyEffectInteraction: ApplyEffectInteraction;
|
|
5910
|
+
const ApplyForceInteraction: ApplyForceInteraction;
|
|
5911
|
+
const ApplyRandomSkinPersistedComponent: ApplyRandomSkinPersistedComponent;
|
|
5912
|
+
const AudioSystems: AudioSystems;
|
|
5913
|
+
const BasicCollisionData: BasicCollisionData;
|
|
5914
|
+
const BlockCollisionData: BlockCollisionData;
|
|
5915
|
+
const BlockCollisionProvider: BlockCollisionProvider;
|
|
5916
|
+
const BlockContactData: BlockContactData;
|
|
5917
|
+
const BlockData: BlockData;
|
|
5918
|
+
const BlockEntity: BlockEntity;
|
|
5919
|
+
const BlockEntitySystems: BlockEntitySystems;
|
|
5920
|
+
const BlockHarvestUtils: BlockHarvestUtils;
|
|
5921
|
+
const BlockHealthChunk: BlockHealthChunk;
|
|
5922
|
+
const BlockMigrationExtraInfo: BlockMigrationExtraInfo;
|
|
5923
|
+
const BlockSetModule: BlockSetModule;
|
|
5924
|
+
const BoundingBox: BoundingBox;
|
|
5925
|
+
const BoxCollisionData: BoxCollisionData;
|
|
5926
|
+
const BuilderToolInteraction: BuilderToolInteraction;
|
|
5927
|
+
const CalculationResult: CalculationResult;
|
|
5928
|
+
const CameraInteraction: CameraInteraction;
|
|
5929
|
+
const ChainingInteraction: ChainingInteraction;
|
|
5930
|
+
const ChargingCondition: ChargingCondition;
|
|
5931
|
+
const ChargingInteraction: ChargingInteraction;
|
|
5932
|
+
const CheckUniqueItemUsageInteraction: CheckUniqueItemUsageInteraction;
|
|
5933
|
+
const ChunkLightingManager: ChunkLightingManager;
|
|
5934
|
+
const ChunkTracker: ChunkTracker;
|
|
5935
|
+
const ClearEntityEffectInteraction: ClearEntityEffectInteraction;
|
|
5936
|
+
const ClientDelegatingProvider: ClientDelegatingProvider;
|
|
5937
|
+
const ClientSourcedSelector: ClientSourcedSelector;
|
|
5938
|
+
const CollisionConfig: CollisionConfig;
|
|
5939
|
+
const CollisionModuleConfig: CollisionModuleConfig;
|
|
5940
|
+
const CollisionResultComponent: CollisionResultComponent;
|
|
5941
|
+
const CombatTextUIComponent: CombatTextUIComponent;
|
|
5942
|
+
const CombatTextUIComponentOpacityAnimationEvent: CombatTextUIComponentOpacityAnimationEvent;
|
|
5943
|
+
const CombatTextUIComponentPositionAnimationEvent: CombatTextUIComponentPositionAnimationEvent;
|
|
5944
|
+
const CombatTextUIComponentScaleAnimationEvent: CombatTextUIComponentScaleAnimationEvent;
|
|
5945
|
+
const ContainerBlockWindow: ContainerBlockWindow;
|
|
5946
|
+
const ContainerWindow: ContainerWindow;
|
|
5947
|
+
const CooldownHandler: CooldownHandler;
|
|
5948
|
+
const CraftingRecipePacketGenerator: CraftingRecipePacketGenerator;
|
|
5949
|
+
const DamageCalculator: DamageCalculator;
|
|
5950
|
+
const DamageCalculatorSystems: DamageCalculatorSystems;
|
|
5951
|
+
const DamageCause: DamageCause;
|
|
5952
|
+
const DamageDataComponent: DamageDataComponent;
|
|
5953
|
+
const DamageDataSetupSystem: DamageDataSetupSystem;
|
|
5954
|
+
const DamageEffects: DamageEffects;
|
|
5955
|
+
const DamageEntityInteraction: DamageEntityInteraction;
|
|
5956
|
+
const DamageModule: DamageModule;
|
|
5957
|
+
const DamageSystems: DamageSystems;
|
|
5958
|
+
const DeathComponent: DeathComponent;
|
|
5959
|
+
const DeathItemLoss: DeathItemLoss;
|
|
5960
|
+
const DeathSystems: DeathSystems;
|
|
5961
|
+
const DebugPlugin: DebugPlugin;
|
|
5962
|
+
const DebugUtils: DebugUtils;
|
|
5963
|
+
const DeferredCorpseRemoval: DeferredCorpseRemoval;
|
|
5964
|
+
const DespawnComponent: DespawnComponent;
|
|
5965
|
+
const DespawnSystem: DespawnSystem;
|
|
5966
|
+
const DestroyConditionInteraction: DestroyConditionInteraction;
|
|
5967
|
+
const DesyncDamageCommand: DesyncDamageCommand;
|
|
5968
|
+
const DoorInteraction: DoorInteraction;
|
|
5969
|
+
const DynamicLightSystems: DynamicLightSystems;
|
|
5970
|
+
const EffectConditionInteraction: EffectConditionInteraction;
|
|
5971
|
+
const EffectControllerComponent: EffectControllerComponent;
|
|
5972
|
+
const Emote: Emote;
|
|
5973
|
+
const EntityCleanCommand: EntityCleanCommand;
|
|
5974
|
+
const EntityCloneCommand: EntityCloneCommand;
|
|
5975
|
+
const EntityCollisionProvider: EntityCollisionProvider;
|
|
5976
|
+
const EntityCommand: EntityCommand;
|
|
5977
|
+
const EntityContactData: EntityContactData;
|
|
5978
|
+
const EntityCountCommand: EntityCountCommand;
|
|
5979
|
+
const EntityDumpCommand: EntityDumpCommand;
|
|
5980
|
+
const EntityEffect: EntityEffect;
|
|
5981
|
+
const EntityEffectCommand: EntityEffectCommand;
|
|
5982
|
+
const EntityEffectPacketGenerator: EntityEffectPacketGenerator;
|
|
5983
|
+
const EntityGroup: EntityGroup;
|
|
5984
|
+
const EntityHideFromAdventurePlayersCommand: EntityHideFromAdventurePlayersCommand;
|
|
5985
|
+
const EntityIntangibleCommand: EntityIntangibleCommand;
|
|
5986
|
+
const EntityInteractableSystems: EntityInteractableSystems;
|
|
5987
|
+
const EntityInvulnerableCommand: EntityInvulnerableCommand;
|
|
5988
|
+
const EntityLodCommand: EntityLodCommand;
|
|
5989
|
+
const EntityMakeInteractableCommand: EntityMakeInteractableCommand;
|
|
5990
|
+
const EntityModule: EntityModule;
|
|
5991
|
+
const EntityNameplateCommand: EntityNameplateCommand;
|
|
5992
|
+
const EntityRefCollisionProvider: EntityRefCollisionProvider;
|
|
5993
|
+
const EntityRegistration: EntityRegistration;
|
|
5994
|
+
const EntityRegistry: EntityRegistry;
|
|
5995
|
+
const EntityRemoveCommand: EntityRemoveCommand;
|
|
5996
|
+
const EntityRemoveEvent: EntityRemoveEvent;
|
|
5997
|
+
const EntityResendCommand: EntityResendCommand;
|
|
5998
|
+
const EntityScaleComponent: EntityScaleComponent;
|
|
5999
|
+
const EntitySnapshot: EntitySnapshot;
|
|
6000
|
+
const EntitySnapshotHistoryCommand: EntitySnapshotHistoryCommand;
|
|
6001
|
+
const EntitySnapshotLengthCommand: EntitySnapshotLengthCommand;
|
|
6002
|
+
const EntitySnapshotSubCommand: EntitySnapshotSubCommand;
|
|
6003
|
+
const EntitySpatialSystem: EntitySpatialSystem;
|
|
6004
|
+
const EntityStatMap: EntityStatMap;
|
|
6005
|
+
const EntityStatsAddCommand: EntityStatsAddCommand;
|
|
6006
|
+
const EntityStatsDumpCommand: EntityStatsDumpCommand;
|
|
6007
|
+
const EntityStatsGetCommand: EntityStatsGetCommand;
|
|
6008
|
+
const EntityStatsResetCommand: EntityStatsResetCommand;
|
|
6009
|
+
const EntityStatsSetCommand: EntityStatsSetCommand;
|
|
6010
|
+
const EntityStatsSetToMaxCommand: EntityStatsSetToMaxCommand;
|
|
6011
|
+
const EntityStatsSubCommand: EntityStatsSubCommand;
|
|
6012
|
+
const EntityStatType: EntityStatType;
|
|
6013
|
+
const EntityStatTypePacketGenerator: EntityStatTypePacketGenerator;
|
|
6014
|
+
const EntityStatUIComponent: EntityStatUIComponent;
|
|
6015
|
+
const EntityStatValue: EntityStatValue;
|
|
6016
|
+
const EntitySystems: EntitySystems;
|
|
6017
|
+
const EntityTrackerCommand: EntityTrackerCommand;
|
|
6018
|
+
const EntityTrackerSystems: EntityTrackerSystems;
|
|
6019
|
+
const EntityUIComponentPacketGenerator: EntityUIComponentPacketGenerator;
|
|
6020
|
+
const EntityUIModule: EntityUIModule;
|
|
6021
|
+
const EntityUtils: EntityUtils;
|
|
6022
|
+
const EnvironmentCondition: EnvironmentCondition;
|
|
6023
|
+
const EquipItemInteraction: EquipItemInteraction;
|
|
6024
|
+
const ExplosionConfig: ExplosionConfig;
|
|
6025
|
+
const ExplosionUtils: ExplosionUtils;
|
|
6026
|
+
const FirstClickInteraction: FirstClickInteraction;
|
|
6027
|
+
const FloodLightCalculation: FloodLightCalculation;
|
|
6028
|
+
const ForceProviderEntity: ForceProviderEntity;
|
|
6029
|
+
const FromPrefab: FromPrefab;
|
|
6030
|
+
const FromWorldGen: FromWorldGen;
|
|
6031
|
+
const Frozen: Frozen;
|
|
6032
|
+
const FullBrightLightCalculation: FullBrightLightCalculation;
|
|
6033
|
+
const GenericVelocityInstructionSystem: GenericVelocityInstructionSystem;
|
|
6034
|
+
const GlidingCondition: GlidingCondition;
|
|
6035
|
+
const HeadRotation: HeadRotation;
|
|
6036
|
+
const HiddenFromAdventurePlayers: HiddenFromAdventurePlayers;
|
|
6037
|
+
const HiddenPlayersManager: HiddenPlayersManager;
|
|
6038
|
+
const HideEntitySystems: HideEntitySystems;
|
|
6039
|
+
const HitboxCollision: HitboxCollision;
|
|
6040
|
+
const HitboxCollisionConfig: HitboxCollisionConfig;
|
|
6041
|
+
const HitboxCollisionConfigPacketGenerator: HitboxCollisionConfigPacketGenerator;
|
|
6042
|
+
const HitboxCollisionSystems: HitboxCollisionSystems;
|
|
6043
|
+
const HitboxCommand: HitboxCommand;
|
|
6044
|
+
const HorizontalSelector: HorizontalSelector;
|
|
6045
|
+
const HotbarManager: HotbarManager;
|
|
6046
|
+
const HudManager: HudManager;
|
|
6047
|
+
const HytaleBanProvider: HytaleBanProvider;
|
|
6048
|
+
const IncreaseBackpackCapacityInteraction: IncreaseBackpackCapacityInteraction;
|
|
6049
|
+
const InputUpdate: InputUpdate;
|
|
6050
|
+
const Intangible: Intangible;
|
|
6051
|
+
const IntangibleSystems: IntangibleSystems;
|
|
6052
|
+
const Interactable: Interactable;
|
|
6053
|
+
const InteractionChain: InteractionChain;
|
|
6054
|
+
const InteractionConfiguration: InteractionConfiguration;
|
|
6055
|
+
const InteractionEffects: InteractionEffects;
|
|
6056
|
+
const InteractionEntry: InteractionEntry;
|
|
6057
|
+
const InteractionManager: InteractionManager;
|
|
6058
|
+
const InteractionSimulationHandler: InteractionSimulationHandler;
|
|
6059
|
+
const InteractionSystems: InteractionSystems;
|
|
6060
|
+
const InteractionTarget: InteractionTarget;
|
|
6061
|
+
const InteractionTypeUtils: InteractionTypeUtils;
|
|
6062
|
+
const InvalidatablePersistentRef: InvalidatablePersistentRef;
|
|
6063
|
+
const Invulnerable: Invulnerable;
|
|
6064
|
+
const InvulnerableSystems: InvulnerableSystems;
|
|
6065
|
+
const ItemComponent: ItemComponent;
|
|
6066
|
+
const ItemContainerStateSpatialSystem: ItemContainerStateSpatialSystem;
|
|
6067
|
+
const ItemMergeSystem: ItemMergeSystem;
|
|
6068
|
+
const ItemPacketGenerator: ItemPacketGenerator;
|
|
6069
|
+
const ItemPhysicsComponent: ItemPhysicsComponent;
|
|
6070
|
+
const ItemPhysicsSystem: ItemPhysicsSystem;
|
|
6071
|
+
const ItemPrePhysicsSystem: ItemPrePhysicsSystem;
|
|
6072
|
+
const ItemRepairElement: ItemRepairElement;
|
|
6073
|
+
const ItemRepairPage: ItemRepairPage;
|
|
6074
|
+
const ItemReticleConfigPacketGenerator: ItemReticleConfigPacketGenerator;
|
|
6075
|
+
const ItemSpatialSystem: ItemSpatialSystem;
|
|
6076
|
+
const ItemStackContainerWindow: ItemStackContainerWindow;
|
|
6077
|
+
const ItemSystems: ItemSystems;
|
|
6078
|
+
const ItemUtils: ItemUtils;
|
|
6079
|
+
const JumpOperation: JumpOperation;
|
|
6080
|
+
const KillFeedEvent: KillFeedEvent;
|
|
6081
|
+
const KnockbackComponent: KnockbackComponent;
|
|
6082
|
+
const KnockbackPredictionSystems: KnockbackPredictionSystems;
|
|
6083
|
+
const KnockbackSimulation: KnockbackSimulation;
|
|
6084
|
+
const KnockbackSystems: KnockbackSystems;
|
|
6085
|
+
const Label: Label;
|
|
6086
|
+
const LaunchPadInteraction: LaunchPadInteraction;
|
|
6087
|
+
const LaunchProjectileInteraction: LaunchProjectileInteraction;
|
|
6088
|
+
const LegacyEntityTrackerSystems: LegacyEntityTrackerSystems;
|
|
6089
|
+
const LegacyProjectileSystems: LegacyProjectileSystems;
|
|
6090
|
+
const LivingEntityEffectClearChangesSystem: LivingEntityEffectClearChangesSystem;
|
|
6091
|
+
const LivingEntityEffectSystem: LivingEntityEffectSystem;
|
|
6092
|
+
const LivingEntityInventoryChangeEvent: LivingEntityInventoryChangeEvent;
|
|
6093
|
+
const LivingEntityUseBlockEvent: LivingEntityUseBlockEvent;
|
|
6094
|
+
const LogicCondition: LogicCondition;
|
|
6095
|
+
const MaterialExtraResourcesSection: MaterialExtraResourcesSection;
|
|
6096
|
+
const MessagesUpdated: MessagesUpdated;
|
|
6097
|
+
const ModelComponent: ModelComponent;
|
|
6098
|
+
const ModelOverride: ModelOverride;
|
|
6099
|
+
const ModelSystems: ModelSystems;
|
|
6100
|
+
const ModifyInventoryInteraction: ModifyInventoryInteraction;
|
|
6101
|
+
const MovementAudioComponent: MovementAudioComponent;
|
|
6102
|
+
const MovementConditionInteraction: MovementConditionInteraction;
|
|
6103
|
+
const MovementConfig: MovementConfig;
|
|
6104
|
+
const MovementManager: MovementManager;
|
|
6105
|
+
const MovementStatesComponent: MovementStatesComponent;
|
|
6106
|
+
const MovementStatesSystems: MovementStatesSystems;
|
|
6107
|
+
const Nameplate: Nameplate;
|
|
6108
|
+
const NameplateSystems: NameplateSystems;
|
|
6109
|
+
const NetworkId: NetworkId;
|
|
6110
|
+
const NetworkSendableSpatialSystem: NetworkSendableSpatialSystem;
|
|
6111
|
+
const NewSpawnComponent: NewSpawnComponent;
|
|
6112
|
+
const NoDamageTakenCondition: NoDamageTakenCondition;
|
|
6113
|
+
const OperationsBuilder: OperationsBuilder;
|
|
6114
|
+
const OutOfCombatCondition: OutOfCombatCondition;
|
|
6115
|
+
const OverlapBehavior: OverlapBehavior;
|
|
6116
|
+
const PageManager: PageManager;
|
|
6117
|
+
const ParallelInteraction: ParallelInteraction;
|
|
6118
|
+
const Particle: Particle;
|
|
6119
|
+
const ParticleAnimationFrame: ParticleAnimationFrame;
|
|
6120
|
+
const ParticleAttractor: ParticleAttractor;
|
|
6121
|
+
const ParticleCollision: ParticleCollision;
|
|
6122
|
+
const ParticleCommand: ParticleCommand;
|
|
6123
|
+
const ParticleSpawnCommand: ParticleSpawnCommand;
|
|
6124
|
+
const ParticleSpawner: ParticleSpawner;
|
|
6125
|
+
const ParticleSpawnerGroup: ParticleSpawnerGroup;
|
|
6126
|
+
const ParticleSpawnerPacketGenerator: ParticleSpawnerPacketGenerator;
|
|
6127
|
+
const ParticleSpawnPage: ParticleSpawnPage;
|
|
6128
|
+
const ParticleSystemPacketGenerator: ParticleSystemPacketGenerator;
|
|
6129
|
+
const PendingTeleport: PendingTeleport;
|
|
6130
|
+
const PersistentModel: PersistentModel;
|
|
6131
|
+
const PersistentRef: PersistentRef;
|
|
6132
|
+
const PersistentRefCount: PersistentRefCount;
|
|
6133
|
+
const PhysicsMath: PhysicsMath;
|
|
6134
|
+
const PickBlockInteraction: PickBlockInteraction;
|
|
6135
|
+
const PickupItemComponent: PickupItemComponent;
|
|
6136
|
+
const PickupItemSystem: PickupItemSystem;
|
|
6137
|
+
const PlaceBlockInteraction: PlaceBlockInteraction;
|
|
6138
|
+
const PlacedByInteractionComponent: PlacedByInteractionComponent;
|
|
6139
|
+
const PlaceFluidInteraction: PlaceFluidInteraction;
|
|
6140
|
+
const PlacementCountConditionInteraction: PlacementCountConditionInteraction;
|
|
6141
|
+
const Player: Player;
|
|
6142
|
+
const PlayerCameraAddSystem: PlayerCameraAddSystem;
|
|
6143
|
+
const PlayerChunkTrackerSystems: PlayerChunkTrackerSystems;
|
|
6144
|
+
const PlayerCollisionResultAddSystem: PlayerCollisionResultAddSystem;
|
|
6145
|
+
const PlayerCondition: PlayerCondition;
|
|
6146
|
+
const PlayerConfigData: PlayerConfigData;
|
|
6147
|
+
const PlayerConnectionFlushSystem: PlayerConnectionFlushSystem;
|
|
6148
|
+
const PlayerDeathPositionData: PlayerDeathPositionData;
|
|
6149
|
+
const PlayerHudManagerSystems: PlayerHudManagerSystems;
|
|
6150
|
+
const PlayerItemEntityPickupSystem: PlayerItemEntityPickupSystem;
|
|
6151
|
+
const PlayerMovementManagerSystems: PlayerMovementManagerSystems;
|
|
6152
|
+
const PlayerPingSystem: PlayerPingSystem;
|
|
6153
|
+
const PlayerProcessMovementSystem: PlayerProcessMovementSystem;
|
|
6154
|
+
const PlayerRegenerateStatsSystem: PlayerRegenerateStatsSystem;
|
|
6155
|
+
const PlayerRespawnPointData: PlayerRespawnPointData;
|
|
6156
|
+
const PlayerSavingSystems: PlayerSavingSystems;
|
|
6157
|
+
const PlayerSendInventorySystem: PlayerSendInventorySystem;
|
|
6158
|
+
const PlayerSkinComponent: PlayerSkinComponent;
|
|
6159
|
+
const PlayerSkinGradient: PlayerSkinGradient;
|
|
6160
|
+
const PlayerSkinGradientSet: PlayerSkinGradientSet;
|
|
6161
|
+
const PlayerSkinPart: PlayerSkinPart;
|
|
6162
|
+
const PlayerSkinPartTexture: PlayerSkinPartTexture;
|
|
6163
|
+
const PlayerSkinTintColor: PlayerSkinTintColor;
|
|
6164
|
+
const PlayerSpatialSystem: PlayerSpatialSystem;
|
|
6165
|
+
const PlayerSystems: PlayerSystems;
|
|
6166
|
+
const PlayerWorldData: PlayerWorldData;
|
|
6167
|
+
const PositionDataComponent: PositionDataComponent;
|
|
6168
|
+
const PredictedProjectile: PredictedProjectile;
|
|
6169
|
+
const PredictedProjectileSystems: PredictedProjectileSystems;
|
|
6170
|
+
const PrefabBufferColumn: PrefabBufferColumn;
|
|
6171
|
+
const PrefabBufferUtil: PrefabBufferUtil;
|
|
6172
|
+
const PrefabCopyableComponent: PrefabCopyableComponent;
|
|
6173
|
+
const PrefabLoadException: PrefabLoadException;
|
|
6174
|
+
const PrefabPasteEvent: PrefabPasteEvent;
|
|
6175
|
+
const PrefabPlaceEntityEvent: PrefabPlaceEntityEvent;
|
|
6176
|
+
const PrefabSaveException: PrefabSaveException;
|
|
6177
|
+
const PrefabSpawnerState: PrefabSpawnerState;
|
|
6178
|
+
const PrefabStore: PrefabStore;
|
|
6179
|
+
const PreventItemMerging: PreventItemMerging;
|
|
6180
|
+
const PreventPickup: PreventPickup;
|
|
6181
|
+
const Projectile: Projectile;
|
|
6182
|
+
const ProjectileComponent: ProjectileComponent;
|
|
6183
|
+
const ProjectileConfig: ProjectileConfig;
|
|
6184
|
+
const ProjectileConfigPacketGenerator: ProjectileConfigPacketGenerator;
|
|
6185
|
+
const ProjectileInteraction: ProjectileInteraction;
|
|
6186
|
+
const PropComponent: PropComponent;
|
|
6187
|
+
const RaycastSelector: RaycastSelector;
|
|
6188
|
+
const RecipePacketGenerator: RecipePacketGenerator;
|
|
6189
|
+
const RefillContainerInteraction: RefillContainerInteraction;
|
|
6190
|
+
const RegeneratingModifier: RegeneratingModifier;
|
|
6191
|
+
const RegeneratingValue: RegeneratingValue;
|
|
6192
|
+
const RegenHealthCondition: RegenHealthCondition;
|
|
6193
|
+
const RemovalBehavior: RemovalBehavior;
|
|
6194
|
+
const RemoveEntityInteraction: RemoveEntityInteraction;
|
|
6195
|
+
const RepairItemInteraction: RepairItemInteraction;
|
|
6196
|
+
const RepeatInteraction: RepeatInteraction;
|
|
6197
|
+
const ReplaceInteraction: ReplaceInteraction;
|
|
6198
|
+
const Repulsion: Repulsion;
|
|
6199
|
+
const RepulsionConfig: RepulsionConfig;
|
|
6200
|
+
const RepulsionConfigPacketGenerator: RepulsionConfigPacketGenerator;
|
|
6201
|
+
const RepulsionSystems: RepulsionSystems;
|
|
6202
|
+
const RespawnPage: RespawnPage;
|
|
6203
|
+
const RespawnSystems: RespawnSystems;
|
|
6204
|
+
const RespondToHit: RespondToHit;
|
|
6205
|
+
const RespondToHitSystems: RespondToHitSystems;
|
|
6206
|
+
const RotateObjectComponent: RotateObjectComponent;
|
|
6207
|
+
const RotateObjectSystem: RotateObjectSystem;
|
|
6208
|
+
const SelectInteraction: SelectInteraction;
|
|
6209
|
+
const SelectionManager: SelectionManager;
|
|
6210
|
+
const SerialInteraction: SerialInteraction;
|
|
6211
|
+
const ServerPlayerListModule: ServerPlayerListModule;
|
|
6212
|
+
const SingleplayerRequestAccessEvent: SingleplayerRequestAccessEvent;
|
|
6213
|
+
const SnapshotBuffer: SnapshotBuffer;
|
|
6214
|
+
const SnapshotSystems: SnapshotSystems;
|
|
6215
|
+
const SprintingCondition: SprintingCondition;
|
|
6216
|
+
const SprintStaminaRegenDelay: SprintStaminaRegenDelay;
|
|
6217
|
+
const StabSelector: StabSelector;
|
|
6218
|
+
const StaminaGameplayConfig: StaminaGameplayConfig;
|
|
6219
|
+
const StaminaModule: StaminaModule;
|
|
6220
|
+
const StaminaSystems: StaminaSystems;
|
|
6221
|
+
const StandardPhysicsConfig: StandardPhysicsConfig;
|
|
6222
|
+
const StandardPhysicsTickSystem: StandardPhysicsTickSystem;
|
|
6223
|
+
const StatCondition: StatCondition;
|
|
6224
|
+
const StaticModifier: StaticModifier;
|
|
6225
|
+
const StatModifiersManager: StatModifiersManager;
|
|
6226
|
+
const StatModifyingSystem: StatModifyingSystem;
|
|
6227
|
+
const StringTag: StringTag;
|
|
6228
|
+
const SuffocatingCondition: SuffocatingCondition;
|
|
6229
|
+
const TangiableEntitySpatialSystem: TangiableEntitySpatialSystem;
|
|
6230
|
+
const TargetEntityEffect: TargetEntityEffect;
|
|
6231
|
+
const Teleport: Teleport;
|
|
6232
|
+
const TeleportSystems: TeleportSystems;
|
|
6233
|
+
const TimeModule: TimeModule;
|
|
6234
|
+
const TrackedPlacement: TrackedPlacement;
|
|
6235
|
+
const TransformSystems: TransformSystems;
|
|
6236
|
+
const UIComponentList: UIComponentList;
|
|
6237
|
+
const UIComponentSystems: UIComponentSystems;
|
|
6238
|
+
const UnarmedInteractions: UnarmedInteractions;
|
|
6239
|
+
const UnarmedInteractionsPacketGenerator: UnarmedInteractionsPacketGenerator;
|
|
6240
|
+
const UniqueItemUsagesComponent: UniqueItemUsagesComponent;
|
|
6241
|
+
const UpdateEntitySeedSystem: UpdateEntitySeedSystem;
|
|
6242
|
+
const UpdateLocationSystems: UpdateLocationSystems;
|
|
6243
|
+
const UseEntityInteraction: UseEntityInteraction;
|
|
6244
|
+
const UUIDComponent: UUIDComponent;
|
|
6245
|
+
const VelocityConfig: VelocityConfig;
|
|
6246
|
+
const VelocitySystems: VelocitySystems;
|
|
6247
|
+
const WieldingCondition: WieldingCondition;
|
|
6248
|
+
const WieldingInteraction: WieldingInteraction;
|
|
6249
|
+
const WindowManager: WindowManager;
|
|
6250
|
+
const WorldGenId: WorldGenId;
|
|
6251
|
+
const WorldParticle: WorldParticle;
|
|
6252
|
+
const WorldTimeResource: WorldTimeResource;
|
|
6253
|
+
const WorldTimeSystems: WorldTimeSystems;
|
|
6254
|
+
const WorldUtil: WorldUtil;
|
|
6255
|
+
const AccessControlModule: AccessControlModule;
|
|
6256
|
+
const BlockCounter: BlockCounter;
|
|
6257
|
+
const BlockFilter: BlockFilter;
|
|
6258
|
+
const BlockHealth: BlockHealth;
|
|
6259
|
+
const BlockHealthModule: BlockHealthModule;
|
|
6260
|
+
const BlockMask: BlockMask;
|
|
6261
|
+
const BlockModule: BlockModule;
|
|
6262
|
+
const BlockPattern: BlockPattern;
|
|
6263
|
+
const BlockSetLookupTable: BlockSetLookupTable;
|
|
6264
|
+
const BlockTracker: BlockTracker;
|
|
6265
|
+
const BoxBlockIntersectionEvaluator: BoxBlockIntersectionEvaluator;
|
|
6266
|
+
const ChangeActiveSlotInteraction: ChangeActiveSlotInteraction;
|
|
6267
|
+
const CollisionDataArray: CollisionDataArray<unknown>;
|
|
6268
|
+
const CollisionMath: CollisionMath;
|
|
6269
|
+
const CollisionModule: CollisionModule;
|
|
6270
|
+
const CollisionResult: CollisionResult;
|
|
6271
|
+
const CollisionTracker: CollisionTracker;
|
|
6272
|
+
const CosmeticRegistry: CosmeticRegistry;
|
|
6273
|
+
const CosmeticsModule: CosmeticsModule;
|
|
6274
|
+
const ForceProviderStandardState: ForceProviderStandardState;
|
|
6275
|
+
const FragileBlock: FragileBlock;
|
|
6276
|
+
const HytaleWhitelistProvider: HytaleWhitelistProvider;
|
|
6277
|
+
const I18nModule: I18nModule;
|
|
6278
|
+
const InfiniteBan: InfiniteBan;
|
|
6279
|
+
const InteractionModule: InteractionModule;
|
|
6280
|
+
const Interactions: Interactions;
|
|
6281
|
+
const ItemModule: ItemModule;
|
|
6282
|
+
const LegacyModule: LegacyModule;
|
|
6283
|
+
const ListCollector: ListCollector<unknown>;
|
|
6284
|
+
const MigrationModule: MigrationModule;
|
|
6285
|
+
const MovingBoxBoxCollisionEvaluator: MovingBoxBoxCollisionEvaluator;
|
|
6286
|
+
const PhysicsValues: PhysicsValues;
|
|
6287
|
+
const PhysicsValuesAddSystem: PhysicsValuesAddSystem;
|
|
6288
|
+
const PlayerSkin: PlayerSkin;
|
|
6289
|
+
const PlayerSkinPartId: PlayerSkinPartId;
|
|
6290
|
+
const PrefabLoader: PrefabLoader;
|
|
6291
|
+
const PrefabRotation: PrefabRotation;
|
|
6292
|
+
const PrefabWeights: PrefabWeights;
|
|
6293
|
+
const ProjectileModule: ProjectileModule;
|
|
6294
|
+
const RootInteraction: RootInteraction;
|
|
6295
|
+
const SimpleInteraction: SimpleInteraction;
|
|
6296
|
+
const SimplePhysicsProvider: SimplePhysicsProvider;
|
|
6297
|
+
const SingleCollector: SingleCollector<unknown>;
|
|
6298
|
+
const SingleplayerModule: SingleplayerModule;
|
|
6299
|
+
const StandardPhysicsProvider: StandardPhysicsProvider;
|
|
6300
|
+
const TimeCommand: TimeCommand;
|
|
6301
|
+
const TimedBan: TimedBan;
|
|
6302
|
+
const TimeResource: TimeResource;
|
|
6303
|
+
const TranslationMap: TranslationMap;
|
|
6304
|
+
const TreeCollector: TreeCollector<unknown>;
|
|
6305
|
+
const Velocity: Velocity;
|
|
6306
|
+
const AddItemInteraction: AddItemInteraction;
|
|
6307
|
+
const BanCommand: BanCommand;
|
|
6308
|
+
const BinaryPrefabBufferCodec: BinaryPrefabBufferCodec;
|
|
6309
|
+
const BlockConditionInteraction: BlockConditionInteraction;
|
|
6310
|
+
const BlockDataProvider: BlockDataProvider;
|
|
6311
|
+
const BlockInteractionUtils: BlockInteractionUtils;
|
|
6312
|
+
const BlockMaskConstants: BlockMaskConstants;
|
|
6313
|
+
const BlockPlaceUtils: BlockPlaceUtils;
|
|
6314
|
+
const BlockSetCommand: BlockSetCommand;
|
|
6315
|
+
const BodyType: BodyType;
|
|
6316
|
+
const BreakBlockInteraction: BreakBlockInteraction;
|
|
6317
|
+
const BsonPrefabBufferDeserializer: BsonPrefabBufferDeserializer;
|
|
6318
|
+
const CancelChainInteraction: CancelChainInteraction;
|
|
6319
|
+
const ChainFlagInteraction: ChainFlagInteraction;
|
|
6320
|
+
const ChangeBlockInteraction: ChangeBlockInteraction;
|
|
6321
|
+
const ChangeStateInteraction: ChangeStateInteraction;
|
|
6322
|
+
const ChangeStatInteraction: ChangeStatInteraction;
|
|
6323
|
+
const ChangeStatWithModifierInteraction: ChangeStatWithModifierInteraction;
|
|
6324
|
+
const CharacterCollisionData: CharacterCollisionData;
|
|
6325
|
+
const CollisionMaterial: CollisionMaterial;
|
|
6326
|
+
const ConditionInteraction: ConditionInteraction;
|
|
6327
|
+
const CooldownConditionInteraction: CooldownConditionInteraction;
|
|
6328
|
+
const CosmeticAssetValidator: CosmeticAssetValidator;
|
|
6329
|
+
const CosmeticType: CosmeticType;
|
|
6330
|
+
const CycleBlockGroupInteraction: CycleBlockGroupInteraction;
|
|
6331
|
+
const DamageClass: DamageClass;
|
|
6332
|
+
const DebugCommand: DebugCommand;
|
|
6333
|
+
const DebugShapeArrowCommand: DebugShapeArrowCommand;
|
|
6334
|
+
const DebugShapeClearCommand: DebugShapeClearCommand;
|
|
6335
|
+
const DebugShapeConeCommand: DebugShapeConeCommand;
|
|
6336
|
+
const DebugShapeCubeCommand: DebugShapeCubeCommand;
|
|
6337
|
+
const DebugShapeCylinderCommand: DebugShapeCylinderCommand;
|
|
6338
|
+
const DebugShapeShowForceCommand: DebugShapeShowForceCommand;
|
|
6339
|
+
const DebugShapeSphereCommand: DebugShapeSphereCommand;
|
|
6340
|
+
const DebugShapeSubCommand: DebugShapeSubCommand;
|
|
6341
|
+
const DestroyBlockInteraction: DestroyBlockInteraction;
|
|
6342
|
+
const DirectionalKnockback: DirectionalKnockback;
|
|
6343
|
+
const EmoteCommand: EmoteCommand;
|
|
6344
|
+
const EnableTmpTagsCommand: EnableTmpTagsCommand;
|
|
6345
|
+
const ExplodeInteraction: ExplodeInteraction;
|
|
6346
|
+
const FluidIterator: FluidIterator;
|
|
6347
|
+
const FlyCameraModule: FlyCameraModule;
|
|
6348
|
+
const ForceAccumulator: ForceAccumulator;
|
|
6349
|
+
const ForceKnockback: ForceKnockback;
|
|
6350
|
+
const GenerateDefaultLanguageEvent: GenerateDefaultLanguageEvent;
|
|
6351
|
+
const GenerateI18nCommand: GenerateI18nCommand;
|
|
6352
|
+
const IncrementCooldownInteraction: IncrementCooldownInteraction;
|
|
6353
|
+
const InteractionCameraSettings: InteractionCameraSettings;
|
|
6354
|
+
const InteractionClearCommand: InteractionClearCommand;
|
|
6355
|
+
const InteractionCommand: InteractionCommand;
|
|
6356
|
+
const InteractionPacketGenerator: InteractionPacketGenerator;
|
|
6357
|
+
const InteractionPriorityCodec: InteractionPriorityCodec;
|
|
6358
|
+
const InteractionRules: InteractionRules;
|
|
6359
|
+
const InteractionRunCommand: InteractionRunCommand;
|
|
6360
|
+
const InteractionRunSpecificCommand: InteractionRunSpecificCommand;
|
|
6361
|
+
const InteractionSetSnapshotSourceCommand: InteractionSetSnapshotSourceCommand;
|
|
6362
|
+
const InteractionSnapshotSourceCommand: InteractionSnapshotSourceCommand;
|
|
6363
|
+
const InternationalizationCommands: InternationalizationCommands;
|
|
6364
|
+
const InterruptInteraction: InterruptInteraction;
|
|
6365
|
+
const ItemQualityPacketGenerator: ItemQualityPacketGenerator;
|
|
6366
|
+
const ItemRepairPageSupplier: ItemRepairPageSupplier;
|
|
6367
|
+
const LangFileParser: LangFileParser;
|
|
6368
|
+
const MultiBlockMask: MultiBlockMask;
|
|
6369
|
+
const OpenContainerInteraction: OpenContainerInteraction;
|
|
6370
|
+
const OpenItemStackContainerInteraction: OpenItemStackContainerInteraction;
|
|
6371
|
+
const PhysicsBodyState: PhysicsBodyState;
|
|
6372
|
+
const PhysicsBodyStateUpdater: PhysicsBodyStateUpdater;
|
|
6373
|
+
const PhysicsBodyStateUpdaterMidpoint: PhysicsBodyStateUpdaterMidpoint;
|
|
6374
|
+
const PhysicsBodyStateUpdaterRK4: PhysicsBodyStateUpdaterRK4;
|
|
6375
|
+
const PhysicsBodyStateUpdaterSymplecticEuler: PhysicsBodyStateUpdaterSymplecticEuler;
|
|
6376
|
+
const PhysicsConstants: PhysicsConstants;
|
|
6377
|
+
const PhysicsFlags: PhysicsFlags;
|
|
6378
|
+
const PlayCommand: PlayCommand;
|
|
6379
|
+
const PlayerMatcher: PlayerMatcher;
|
|
6380
|
+
const PlayerSkinPartType: PlayerSkinPartType;
|
|
6381
|
+
const PlayFriendCommand: PlayFriendCommand;
|
|
6382
|
+
const PlayLanCommand: PlayLanCommand;
|
|
6383
|
+
const PlayOnlineCommand: PlayOnlineCommand;
|
|
6384
|
+
const PointKnockback: PointKnockback;
|
|
6385
|
+
const PrefabBufferBlockEntry: PrefabBufferBlockEntry;
|
|
6386
|
+
const PrefabBufferCall: PrefabBufferCall;
|
|
6387
|
+
const PrefabSpawnerCommand: PrefabSpawnerCommand;
|
|
6388
|
+
const PrefabSpawnerGetCommand: PrefabSpawnerGetCommand;
|
|
6389
|
+
const PrefabSpawnerModule: PrefabSpawnerModule;
|
|
6390
|
+
const PrefabSpawnerSetCommand: PrefabSpawnerSetCommand;
|
|
6391
|
+
const PrefabSpawnerWeightCommand: PrefabSpawnerWeightCommand;
|
|
6392
|
+
const ResetCooldownInteraction: ResetCooldownInteraction;
|
|
6393
|
+
const RestingSupport: RestingSupport;
|
|
6394
|
+
const RootInteractionPacketGenerator: RootInteractionPacketGenerator;
|
|
6395
|
+
const RunRootInteraction: RunRootInteraction;
|
|
6396
|
+
const SelectionPrefabSerializer: SelectionPrefabSerializer;
|
|
6397
|
+
const SendMessageInteraction: SendMessageInteraction;
|
|
6398
|
+
const SpawnItemCommand: SpawnItemCommand;
|
|
6399
|
+
const SpawnPrefabInteraction: SpawnPrefabInteraction;
|
|
6400
|
+
const SplitVelocity: SplitVelocity;
|
|
6401
|
+
const StatsConditionInteraction: StatsConditionInteraction;
|
|
6402
|
+
const StatsConditionWithModifierInteraction: StatsConditionWithModifierInteraction;
|
|
6403
|
+
const TimePacketSystem: TimePacketSystem;
|
|
6404
|
+
const TimeSystem: TimeSystem;
|
|
6405
|
+
const ToggleGliderInteraction: ToggleGliderInteraction;
|
|
6406
|
+
const TriggerCooldownInteraction: TriggerCooldownInteraction;
|
|
6407
|
+
const UnbanCommand: UnbanCommand;
|
|
6408
|
+
const UpdateBinaryPrefabException: UpdateBinaryPrefabException;
|
|
6409
|
+
const UseBlockInteraction: UseBlockInteraction;
|
|
6410
|
+
const VulnerableMatcher: VulnerableMatcher;
|
|
6411
|
+
const WhitelistAddCommand: WhitelistAddCommand;
|
|
6412
|
+
const WhitelistClearCommand: WhitelistClearCommand;
|
|
6413
|
+
const WhitelistCommand: WhitelistCommand;
|
|
6414
|
+
const WhitelistDisableCommand: WhitelistDisableCommand;
|
|
6415
|
+
const WhitelistEnableCommand: WhitelistEnableCommand;
|
|
6416
|
+
const WhitelistListCommand: WhitelistListCommand;
|
|
6417
|
+
const WhitelistRemoveCommand: WhitelistRemoveCommand;
|
|
6418
|
+
const WhitelistStatusCommand: WhitelistStatusCommand;
|
|
6105
6419
|
const NPCPlugin: NPCPluginStatic;
|
|
6106
6420
|
const NPCEntity: NPCEntityStatic;
|
|
6107
6421
|
const FlockPlugin: FlockPluginStatic;
|
|
6422
|
+
const FlockAsset: FlockAssetStatic;
|
|
6108
6423
|
const SpawningPlugin: SpawningPluginStatic;
|
|
6109
6424
|
const AnimationSlot: AnimationSlotEnum;
|
|
6110
6425
|
const Model: ModelStatic;
|
|
6111
6426
|
const Pair: JavaPairStatic;
|
|
6427
|
+
const AddReason: AddReasonEnum;
|
|
6428
|
+
const RemoveReason: RemoveReasonEnum;
|
|
6429
|
+
const EventTitleUtil: EventTitleUtil;
|
|
6430
|
+
const MySQLManager: MySQLManager;
|
|
6431
|
+
const TableBuilder: TableBuilderConstructor;
|
|
6112
6432
|
}
|
|
6113
6433
|
//# sourceMappingURL=types.d.ts.map
|