@hylithiumjs.com/core 1.3.2 → 1.3.3
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/index.d.ts +26 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -0
- package/dist/types.d.ts +1376 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -6422,7 +6422,6 @@ declare global {
|
|
|
6422
6422
|
const WhitelistListCommand: WhitelistListCommand;
|
|
6423
6423
|
const WhitelistRemoveCommand: WhitelistRemoveCommand;
|
|
6424
6424
|
const WhitelistStatusCommand: WhitelistStatusCommand;
|
|
6425
|
-
const NPCPlugin: NPCPluginStatic;
|
|
6426
6425
|
const NPCEntity: NPCEntityStatic;
|
|
6427
6426
|
const FlockPlugin: FlockPluginStatic;
|
|
6428
6427
|
const FlockAsset: FlockAssetStatic;
|
|
@@ -6603,11 +6602,1387 @@ export interface WorldHelper {
|
|
|
6603
6602
|
teleportPlayer(player: any, targetWorld: unknown): void;
|
|
6604
6603
|
deleteWorld(worldName: string): boolean;
|
|
6605
6604
|
}
|
|
6605
|
+
export interface BuilderContext {
|
|
6606
|
+
}
|
|
6607
|
+
export interface BuilderSupport {
|
|
6608
|
+
}
|
|
6609
|
+
export interface BuilderParameters {
|
|
6610
|
+
addParametersToScope(): void;
|
|
6611
|
+
}
|
|
6612
|
+
export interface BuilderDescriptor {
|
|
6613
|
+
}
|
|
6614
|
+
export interface Builder<T> {
|
|
6615
|
+
build(support: BuilderSupport): T | null;
|
|
6616
|
+
validate(name: string, validationHelper: unknown, execContext: unknown, scope: unknown, errors: string[]): boolean;
|
|
6617
|
+
setTypeName(name: string): void;
|
|
6618
|
+
getTypeName(): string;
|
|
6619
|
+
setLabel(label: string): void;
|
|
6620
|
+
getBuilderParameters(): BuilderParameters;
|
|
6621
|
+
}
|
|
6622
|
+
export interface SpawnableWithModelBuilder<T> extends Builder<T> {
|
|
6623
|
+
isSpawnable(): boolean;
|
|
6624
|
+
}
|
|
6625
|
+
export interface BuilderFactory<T> {
|
|
6626
|
+
createBuilder(data: unknown): Builder<T>;
|
|
6627
|
+
getKeyName(data: unknown): string;
|
|
6628
|
+
getCategory(): unknown;
|
|
6629
|
+
getBuilderNames(): string[];
|
|
6630
|
+
tryCreateDefaultBuilder(): Builder<T> | null;
|
|
6631
|
+
}
|
|
6632
|
+
export interface BuilderInfo {
|
|
6633
|
+
getIndex(): number;
|
|
6634
|
+
getKeyName(): string;
|
|
6635
|
+
isValidated(): boolean;
|
|
6636
|
+
isValid(): boolean;
|
|
6637
|
+
getBuilder(): Builder<unknown>;
|
|
6638
|
+
}
|
|
6639
|
+
export interface BuilderManager {
|
|
6640
|
+
registerFactory(factory: BuilderFactory<unknown>): void;
|
|
6641
|
+
getFactory(clazz: unknown): BuilderFactory<unknown>;
|
|
6642
|
+
loadFile(fileName: Path, errors: string[], typeCounter: unknown, includeTests: boolean, reloading: boolean): number;
|
|
6643
|
+
getOrCreateIndex(name: string): number;
|
|
6644
|
+
lookupName(index: number): string | null;
|
|
6645
|
+
getCachedBuilder(index: number, classType: unknown): Builder<unknown>;
|
|
6646
|
+
getAllBuilders(): unknown;
|
|
6647
|
+
}
|
|
6648
|
+
export interface NPCPlugin {
|
|
6649
|
+
getBuilderManager(): BuilderManager;
|
|
6650
|
+
getBlackboardResourceType(): ResourceType<EntityStore, Blackboard>;
|
|
6651
|
+
getCombatDataPoolResourceType(): ResourceType<EntityStore, unknown>;
|
|
6652
|
+
getRoleChangeQueueResourceType(): ResourceType<EntityStore, unknown>;
|
|
6653
|
+
getNewSpawnStartTickingQueueResourceType(): ResourceType<EntityStore, unknown>;
|
|
6654
|
+
getSortBufferProviderResourceResourceType(): ResourceType<EntityStore, unknown>;
|
|
6655
|
+
getAStarNodePoolProviderSimpleResourceType(): ResourceType<EntityStore, unknown>;
|
|
6656
|
+
getNpcSpatialResource(): ResourceType<EntityStore, SpatialResource<EntityStore>>;
|
|
6657
|
+
getCombatDataComponentType(): ComponentType<EntityStore, unknown>;
|
|
6658
|
+
getNpcTestDataComponentType(): ComponentType<EntityStore, unknown>;
|
|
6659
|
+
getBeaconSupportComponentType(): ComponentType<EntityStore, BeaconSupport>;
|
|
6660
|
+
getNpcBlockEventSupportComponentType(): ComponentType<EntityStore, unknown>;
|
|
6661
|
+
getPlayerBlockEventSupportComponentType(): ComponentType<EntityStore, unknown>;
|
|
6662
|
+
getNpcEntityEventSupportComponentType(): ComponentType<EntityStore, unknown>;
|
|
6663
|
+
getPlayerEntityEventSupportComponentType(): ComponentType<EntityStore, unknown>;
|
|
6664
|
+
getStepComponentType(): ComponentType<EntityStore, unknown>;
|
|
6665
|
+
getFailedSpawnComponentType(): ComponentType<EntityStore, unknown>;
|
|
6666
|
+
getTimersComponentType(): ComponentType<EntityStore, unknown>;
|
|
6667
|
+
getStateEvaluatorComponentType(): ComponentType<EntityStore, unknown>;
|
|
6668
|
+
getValueStoreComponentType(): ComponentType<EntityStore, unknown>;
|
|
6669
|
+
setupNPCLoading(): void;
|
|
6670
|
+
spawnNPC(store: unknown, npcType: string, groupType: string | null, position: Vector3d, rotation: Vector3f): Pair<Ref<EntityStore>, NPCEntity> | null;
|
|
6671
|
+
getName(builderIndex: number): string | null;
|
|
6672
|
+
getIndex(builderName: string): number;
|
|
6673
|
+
tryGetCachedValidRole(roleIndex: number): Builder<Role> | null;
|
|
6674
|
+
getBuilderInfo(builder: Builder<unknown>): BuilderInfo | null;
|
|
6675
|
+
getRoleTemplateNames(spawnableOnly: boolean): string[];
|
|
6676
|
+
hasRoleName(roleName: string): boolean;
|
|
6677
|
+
validateSpawnableRole(roleName: string): void;
|
|
6678
|
+
getRoleBuilderInfo(roleIndex: number): BuilderInfo | null;
|
|
6679
|
+
setBuilderInvalid(builderIndex: number): void;
|
|
6680
|
+
getAttitudeMap(): unknown;
|
|
6681
|
+
getItemAttitudeMap(): unknown;
|
|
6682
|
+
testAndValidateRole(builderInfo: BuilderInfo | null): boolean;
|
|
6683
|
+
forceValidation(builderIndex: number): void;
|
|
6684
|
+
spawnEntity(store: unknown, roleIndex: number, position: Vector3d, rotation: Vector3f | null, spawnModel: Model | null, preAddToWorld: unknown | null, postSpawn: unknown | null): Pair<Ref<EntityStore>, NPCEntity> | null;
|
|
6685
|
+
prepareRoleBuilderInfo(roleIndex: number): BuilderInfo;
|
|
6686
|
+
getMaxBlackboardBlockCountPerType(): number;
|
|
6687
|
+
isLogFailingTestErrors(): boolean;
|
|
6688
|
+
startRoleBenchmark(seconds: number, onFinished: (distribution: unknown) => void): boolean;
|
|
6689
|
+
collectRoleTick(roleIndex: number, nanos: number): void;
|
|
6690
|
+
isBenchmarkingRole(): boolean;
|
|
6691
|
+
startSensorSupportBenchmark(seconds: number, onFinished: (distribution: unknown) => void): boolean;
|
|
6692
|
+
isBenchmarkingSensorSupport(): boolean;
|
|
6693
|
+
collectSensorSupportPlayerList(roleIndex: number, getNanos: number, maxPlayerDistanceSorted: number, maxPlayerDistance: number, maxPlayerDistanceAvoidance: number, numPlayers: number): void;
|
|
6694
|
+
collectSensorSupportEntityList(roleIndex: number, getNanos: number, maxEntityDistanceSorted: number, maxEntityDistance: number, maxEntityDistanceAvoidance: number, numEntities: number): void;
|
|
6695
|
+
collectSensorSupportLosTest(roleIndex: number, cacheHit: boolean, time: number): void;
|
|
6696
|
+
collectSensorSupportInverseLosTest(roleIndex: number, cacheHit: boolean): void;
|
|
6697
|
+
collectSensorSupportFriendlyBlockingTest(roleIndex: number, cacheHit: boolean): void;
|
|
6698
|
+
collectSensorSupportTickDone(roleIndex: number): void;
|
|
6699
|
+
registerCoreComponentType(name: string, builder: () => Builder<unknown>): NPCPlugin;
|
|
6700
|
+
setRoleBuilderNeedsReload(builder: Builder<unknown>): void;
|
|
6701
|
+
getPresetCoverageTestNPCs(): string[];
|
|
6702
|
+
}
|
|
6703
|
+
export interface Pair<K, V> {
|
|
6704
|
+
getKey(): K;
|
|
6705
|
+
getValue(): V;
|
|
6706
|
+
}
|
|
6707
|
+
export interface AttitudeMap {
|
|
6708
|
+
getAttitude(groupIndex: number, targetGroupIndex: number): number;
|
|
6709
|
+
getAttitudeGroupCount(): number;
|
|
6710
|
+
}
|
|
6711
|
+
export interface ItemAttitudeMap {
|
|
6712
|
+
getAttitude(groupIndex: number, itemIndex: number): number;
|
|
6713
|
+
getAttitudeGroupCount(): number;
|
|
6714
|
+
}
|
|
6715
|
+
export interface BeaconSupport {
|
|
6716
|
+
}
|
|
6717
|
+
export interface NPCBlockEventSupport {
|
|
6718
|
+
}
|
|
6719
|
+
export interface PlayerBlockEventSupport {
|
|
6720
|
+
}
|
|
6721
|
+
export interface NPCEntityEventSupport {
|
|
6722
|
+
}
|
|
6723
|
+
export interface PlayerEntityEventSupport {
|
|
6724
|
+
}
|
|
6725
|
+
export interface StepComponent {
|
|
6726
|
+
}
|
|
6727
|
+
export interface FailedSpawnComponent {
|
|
6728
|
+
}
|
|
6729
|
+
export interface Timers {
|
|
6730
|
+
}
|
|
6731
|
+
export interface StateEvaluator {
|
|
6732
|
+
}
|
|
6733
|
+
export interface ValueStore {
|
|
6734
|
+
}
|
|
6735
|
+
export interface ObjectivePlugin {
|
|
6736
|
+
getObjectiveDataStore(): ObjectiveDataStore;
|
|
6737
|
+
startObjective(objectiveId: string, playerUUIDs: any, worldUUID: any, markerUUID: any, store: any): Objective | null;
|
|
6738
|
+
cancelObjective(objectiveUUID: any, store: any): void;
|
|
6739
|
+
createTask(task: any, taskSetIndex: number, taskIndex: number): any;
|
|
6740
|
+
createCompletion(completionAsset: any): any;
|
|
6741
|
+
}
|
|
6742
|
+
export interface Objective {
|
|
6743
|
+
getObjectiveId(): string;
|
|
6744
|
+
getObjectiveUUID(): any;
|
|
6745
|
+
setup(store: any): boolean;
|
|
6746
|
+
cancel(): void;
|
|
6747
|
+
markDirty(): void;
|
|
6748
|
+
}
|
|
6749
|
+
export interface ObjectiveDataStore {
|
|
6750
|
+
addObjective(uuid: any, objective: Objective): boolean;
|
|
6751
|
+
getObjective(uuid: any): Objective | null;
|
|
6752
|
+
removeObjective(uuid: any): void;
|
|
6753
|
+
saveToDisk(uuidStr: string, objective: Objective): void;
|
|
6754
|
+
}
|
|
6755
|
+
export interface DialogPage {
|
|
6756
|
+
}
|
|
6757
|
+
export interface ReputationPlugin {
|
|
6758
|
+
getReputationValue(store: any, playerEntityRef: any, npcEntityRef: any): number;
|
|
6759
|
+
changeReputation(player: any, npcRef: any, value: number, componentAccessor: any): number;
|
|
6760
|
+
getReputationRank(store: any, ref: any, npcRef: any): any;
|
|
6761
|
+
getAttitude(store: any, ref: any, npcRef: any): any;
|
|
6762
|
+
}
|
|
6763
|
+
export interface ReputationGameplayConfig {
|
|
6764
|
+
}
|
|
6765
|
+
export interface ReputationGroupComponent {
|
|
6766
|
+
getReputationGroupId(): string;
|
|
6767
|
+
}
|
|
6768
|
+
export interface ShopPlugin {
|
|
6769
|
+
}
|
|
6770
|
+
export interface ShopElement {
|
|
6771
|
+
}
|
|
6772
|
+
export interface ShopPage {
|
|
6773
|
+
}
|
|
6774
|
+
export interface ShopPageSupplier {
|
|
6775
|
+
}
|
|
6776
|
+
export interface GiveItemInteraction {
|
|
6777
|
+
}
|
|
6778
|
+
export interface NPCObjectivesPlugin {
|
|
6779
|
+
}
|
|
6780
|
+
export interface NPCReputationPlugin {
|
|
6781
|
+
}
|
|
6782
|
+
export interface NPCShopPlugin {
|
|
6783
|
+
}
|
|
6784
|
+
export interface ObjectiveShopPlugin {
|
|
6785
|
+
}
|
|
6786
|
+
export interface ObjectiveReputationPlugin {
|
|
6787
|
+
}
|
|
6788
|
+
export interface ShopReputationPlugin {
|
|
6789
|
+
}
|
|
6790
|
+
export interface KillTask {
|
|
6791
|
+
}
|
|
6792
|
+
export interface KillObjectiveTask {
|
|
6793
|
+
}
|
|
6794
|
+
export interface KillNPCObjectiveTask {
|
|
6795
|
+
}
|
|
6796
|
+
export interface KillTrackerSystem {
|
|
6797
|
+
}
|
|
6798
|
+
export interface ActionStartObjective {
|
|
6799
|
+
}
|
|
6800
|
+
export interface ActionCompleteTask {
|
|
6801
|
+
}
|
|
6802
|
+
export interface NPCReputationHolderSystem {
|
|
6803
|
+
}
|
|
6804
|
+
export interface ReputationAttitudeSystem {
|
|
6805
|
+
}
|
|
6806
|
+
export interface ActionOpenShop {
|
|
6807
|
+
}
|
|
6808
|
+
export interface ActionOpenBarterShop {
|
|
6809
|
+
}
|
|
6810
|
+
export interface ObjectiveCommand {
|
|
6811
|
+
}
|
|
6812
|
+
export interface ObjectiveStartCommand {
|
|
6813
|
+
}
|
|
6814
|
+
export interface ObjectiveCompleteCommand {
|
|
6815
|
+
}
|
|
6816
|
+
export interface TreasureChestState {
|
|
6817
|
+
}
|
|
6818
|
+
export interface ObjectiveHistoryComponent {
|
|
6819
|
+
}
|
|
6820
|
+
export interface ReputationCommand {
|
|
6821
|
+
}
|
|
6822
|
+
export interface ReputationAddCommand {
|
|
6823
|
+
}
|
|
6824
|
+
export interface ReputationRankCommand {
|
|
6825
|
+
}
|
|
6826
|
+
export interface ReputationSetCommand {
|
|
6827
|
+
}
|
|
6828
|
+
export interface ReputationValueCommand {
|
|
6829
|
+
}
|
|
6830
|
+
export interface ReputationRank {
|
|
6831
|
+
}
|
|
6832
|
+
export interface ReputationGroup {
|
|
6833
|
+
}
|
|
6834
|
+
export interface ReputationRequirement {
|
|
6835
|
+
}
|
|
6836
|
+
export interface ReputationDataResource {
|
|
6837
|
+
}
|
|
6838
|
+
export interface ShopAsset {
|
|
6839
|
+
}
|
|
6840
|
+
export interface BarterShopAsset {
|
|
6841
|
+
}
|
|
6842
|
+
export interface BarterShopState {
|
|
6843
|
+
}
|
|
6844
|
+
export interface BarterPage {
|
|
6845
|
+
}
|
|
6846
|
+
export interface BarterTrade {
|
|
6847
|
+
}
|
|
6848
|
+
export interface BarterItemStack {
|
|
6849
|
+
}
|
|
6850
|
+
export interface FixedTradeSlot {
|
|
6851
|
+
}
|
|
6852
|
+
export interface PoolTradeSlot {
|
|
6853
|
+
}
|
|
6854
|
+
export interface TradeSlot {
|
|
6855
|
+
}
|
|
6856
|
+
export interface WeightedTrade {
|
|
6857
|
+
}
|
|
6858
|
+
export interface RefreshInterval {
|
|
6859
|
+
}
|
|
6860
|
+
export interface NPCPluginStatics {
|
|
6861
|
+
get(): NPCPlugin;
|
|
6862
|
+
reloadNPCsWithRole(roleIndex: number): void;
|
|
6863
|
+
buildRole(roleBuilder: Builder<Role>, builderInfo: BuilderInfo, builderSupport: BuilderSupport, roleIndex: number): Role;
|
|
6864
|
+
FACTORY_CLASS_ROLE: string;
|
|
6865
|
+
FACTORY_CLASS_BODY_MOTION: string;
|
|
6866
|
+
FACTORY_CLASS_HEAD_MOTION: string;
|
|
6867
|
+
FACTORY_CLASS_ACTION: string;
|
|
6868
|
+
FACTORY_CLASS_SENSOR: string;
|
|
6869
|
+
FACTORY_CLASS_INSTRUCTION: string;
|
|
6870
|
+
FACTORY_CLASS_TRANSIENT_PATH: string;
|
|
6871
|
+
FACTORY_CLASS_ACTION_LIST: string;
|
|
6872
|
+
ROLE_ASSETS_PATH: string;
|
|
6873
|
+
PRIORITY_LOAD_NPC: number;
|
|
6874
|
+
PRIORITY_SPAWN_VALIDATION: number;
|
|
6875
|
+
}
|
|
6606
6876
|
declare global {
|
|
6877
|
+
const NPCPlugin: NPCPluginStatics;
|
|
6607
6878
|
const EventTitleUtil: EventTitleUtil;
|
|
6608
6879
|
const InstancesPlugin: InstancesPluginClass;
|
|
6880
|
+
const BuilderManager: BuilderManager;
|
|
6609
6881
|
const worldHelper: WorldHelper;
|
|
6882
|
+
const SpawnManager: any;
|
|
6883
|
+
const BeaconSpawnManager: any;
|
|
6884
|
+
const SpawnBeacon: any;
|
|
6885
|
+
const ISpawnable: any;
|
|
6886
|
+
const SpawningContext: any;
|
|
6887
|
+
const LoadedNPCEvent: any;
|
|
6888
|
+
const NPCSpawn: any;
|
|
6889
|
+
const BeaconNPCSpawn: any;
|
|
6890
|
+
const WorldNPCSpawn: any;
|
|
6891
|
+
const Blackboard: any;
|
|
6892
|
+
const IBlackboardView: any;
|
|
6893
|
+
const NPCAllCommand: any;
|
|
6894
|
+
const NPCAppearanceCommand: any;
|
|
6895
|
+
const NPCAttackCommand: any;
|
|
6896
|
+
const NPCBenchmarkCommand: any;
|
|
6897
|
+
const NPCBlackboardCommand: any;
|
|
6898
|
+
const NPCCleanCommand: any;
|
|
6899
|
+
const NPCCommand: any;
|
|
6900
|
+
const NPCCommandUtils: any;
|
|
6901
|
+
const NPCDebugCommand: any;
|
|
6902
|
+
const NPCDumpCommand: any;
|
|
6903
|
+
const NPCFreezeCommand: any;
|
|
6904
|
+
const NPCGiveCommand: any;
|
|
6905
|
+
const NPCMessageCommand: any;
|
|
6906
|
+
const NPCMultiSelectCommandBase: any;
|
|
6907
|
+
const NPCPathCommand: any;
|
|
6908
|
+
const NPCRoleCommand: any;
|
|
6909
|
+
const NPCRunTestsCommand: any;
|
|
6910
|
+
const NPCSensorStatsCommand: any;
|
|
6911
|
+
const NPCStepCommand: any;
|
|
6912
|
+
const NPCTestCommand: any;
|
|
6913
|
+
const NPCThawCommand: any;
|
|
6914
|
+
const NPCWorldCommandBase: any;
|
|
6915
|
+
const SpawnBeaconsCommand: any;
|
|
6916
|
+
const SpawnMarkersCommand: any;
|
|
6917
|
+
const SpawnPopulateCommand: any;
|
|
6918
|
+
const SpawnStatsCommand: any;
|
|
6919
|
+
const SpawnSuppressionCommand: any;
|
|
6920
|
+
const SpawnCommand: any;
|
|
6921
|
+
const NPCSpawnCommand: any;
|
|
6922
|
+
const AvoidanceSystem: any;
|
|
6923
|
+
const BalancingInitialisationSystem: any;
|
|
6924
|
+
const BlackboardSystems: any;
|
|
6925
|
+
const ComputeVelocitySystem: any;
|
|
6926
|
+
const FailedSpawnSystem: any;
|
|
6927
|
+
const MessageSupportSystem: any;
|
|
6928
|
+
const MovementStatesSystem: any;
|
|
6929
|
+
const NPCDamageSystems: any;
|
|
6930
|
+
const NPCDeathSystems: any;
|
|
6931
|
+
const NPCInteractionSystems: any;
|
|
6932
|
+
const NPCPreTickSystem: any;
|
|
6933
|
+
const NPCSpatialSystem: any;
|
|
6934
|
+
const NPCSystems: any;
|
|
6935
|
+
const NPCVelocityInstructionSystem: any;
|
|
6936
|
+
const NewSpawnStartTickingSystem: any;
|
|
6937
|
+
const PositionCacheSystems: any;
|
|
6938
|
+
const RoleBuilderSystem: any;
|
|
6939
|
+
const RoleChangeSystem: any;
|
|
6940
|
+
const RoleSystems: any;
|
|
6941
|
+
const SpawnReferenceSystems: any;
|
|
6942
|
+
const StateEvaluatorSystem: any;
|
|
6943
|
+
const SteeringSystem: any;
|
|
6944
|
+
const StepCleanupSystem: any;
|
|
6945
|
+
const SteppableTickingSystem: any;
|
|
6946
|
+
const TimerSystem: any;
|
|
6947
|
+
const BeaconSpatialSystem: any;
|
|
6948
|
+
const LegacyBeaconSpatialSystem: any;
|
|
6949
|
+
const SpawnMarkerSpatialSystem: any;
|
|
6950
|
+
const RoleDebugDisplay: any;
|
|
6951
|
+
const RoleDebugFlags: any;
|
|
6952
|
+
const RoleUtils: any;
|
|
6953
|
+
const SpawnEffect: any;
|
|
6954
|
+
const Codec: any;
|
|
6955
|
+
const DirectDecodeCodec: any;
|
|
6956
|
+
const DocumentContainingCodec: any;
|
|
6957
|
+
const EmptyExtraInfo: any;
|
|
6958
|
+
const ExtraInfo: any;
|
|
6959
|
+
const InheritCodec: any;
|
|
6960
|
+
const KeyedCodec: any;
|
|
6961
|
+
const PrimitiveCodec: any;
|
|
6962
|
+
const RawJsonCodec: any;
|
|
6963
|
+
const RawJsonInheritCodec: any;
|
|
6964
|
+
const VersionedExtraInfo: any;
|
|
6965
|
+
const WrappedCodec: any;
|
|
6966
|
+
const BuilderCodec: any;
|
|
6967
|
+
const BuilderField: any;
|
|
6968
|
+
const StringTreeMap: any;
|
|
6969
|
+
const BsonDocumentCodec: any;
|
|
6970
|
+
const EnumCodec: any;
|
|
6971
|
+
const InetSocketAddressCodec: any;
|
|
6972
|
+
const StringIntegerCodec: any;
|
|
6973
|
+
const UUIDBinaryCodec: any;
|
|
6974
|
+
const NamedSchema: any;
|
|
6975
|
+
const SchemaContext: any;
|
|
6976
|
+
const SchemaConvertable: any;
|
|
6977
|
+
const LateValidator: any;
|
|
6978
|
+
const LegacyValidator: any;
|
|
6979
|
+
const ThrowingValidationResults: any;
|
|
6980
|
+
const ValidatableCodec: any;
|
|
6981
|
+
const ValidationResults: any;
|
|
6982
|
+
const Validator: any;
|
|
6983
|
+
const ValidatorCache: any;
|
|
6984
|
+
const Validators: any;
|
|
6985
|
+
const CodecException: any;
|
|
6986
|
+
const CodecValidationException: any;
|
|
6987
|
+
const BsonFunctionCodec: any;
|
|
6988
|
+
const FunctionCodec: any;
|
|
6989
|
+
const ACodecMapCodec: any;
|
|
6990
|
+
const AMapProvidedMapCodec: any;
|
|
6991
|
+
const BuilderCodecMapCodec: any;
|
|
6992
|
+
const CodecMapCodec: any;
|
|
6993
|
+
const MapKeyMapCodec: any;
|
|
6994
|
+
const MapProvidedMapCodec: any;
|
|
6995
|
+
const ObjectCodecMapCodec: any;
|
|
6996
|
+
const Priority: any;
|
|
6997
|
+
const StringCodecMapCodec: any;
|
|
6998
|
+
const CodecKey: any;
|
|
6999
|
+
const CodecStore: any;
|
|
7000
|
+
const StoredCodec: any;
|
|
7001
|
+
const Documentation: any;
|
|
7002
|
+
const RawJsonReader: any;
|
|
6610
7003
|
const MySQLManager: MySQLManager;
|
|
6611
7004
|
const TableBuilder: TableBuilderConstructor;
|
|
7005
|
+
const ObjectivePlugin: {
|
|
7006
|
+
get(): ObjectivePlugin;
|
|
7007
|
+
};
|
|
7008
|
+
const ReputationPlugin: {
|
|
7009
|
+
get(): ReputationPlugin;
|
|
7010
|
+
};
|
|
7011
|
+
const ShopPlugin: {
|
|
7012
|
+
get(): ShopPlugin;
|
|
7013
|
+
};
|
|
7014
|
+
const NPCObjectivesPlugin: any;
|
|
7015
|
+
const NPCReputationPlugin: any;
|
|
7016
|
+
const NPCShopPlugin: any;
|
|
7017
|
+
const ObjectiveShopPlugin: any;
|
|
7018
|
+
const ObjectiveReputationPlugin: any;
|
|
7019
|
+
const ShopReputationPlugin: any;
|
|
7020
|
+
const DialogPage: any;
|
|
7021
|
+
const KillTask: any;
|
|
7022
|
+
const KillObjectiveTask: any;
|
|
7023
|
+
const KillNPCObjectiveTask: any;
|
|
7024
|
+
const KillTrackerSystem: any;
|
|
7025
|
+
const ActionStartObjective: any;
|
|
7026
|
+
const ActionCompleteTask: any;
|
|
7027
|
+
const NPCReputationHolderSystem: any;
|
|
7028
|
+
const ReputationAttitudeSystem: any;
|
|
7029
|
+
const ActionOpenShop: any;
|
|
7030
|
+
const ActionOpenBarterShop: any;
|
|
7031
|
+
const ObjectiveCommand: any;
|
|
7032
|
+
const ObjectiveStartCommand: any;
|
|
7033
|
+
const ObjectiveCompleteCommand: any;
|
|
7034
|
+
const TreasureChestState: any;
|
|
7035
|
+
const ObjectiveHistoryComponent: any;
|
|
7036
|
+
const ReputationCommand: any;
|
|
7037
|
+
const ReputationAddCommand: any;
|
|
7038
|
+
const ReputationRankCommand: any;
|
|
7039
|
+
const ReputationSetCommand: any;
|
|
7040
|
+
const ReputationValueCommand: any;
|
|
7041
|
+
const ReputationRank: any;
|
|
7042
|
+
const ReputationGroup: any;
|
|
7043
|
+
const ReputationRequirement: any;
|
|
7044
|
+
const ReputationDataResource: any;
|
|
7045
|
+
const ShopAsset: any;
|
|
7046
|
+
const BarterShopAsset: any;
|
|
7047
|
+
const BarterShopState: any;
|
|
7048
|
+
const BarterPage: any;
|
|
7049
|
+
const BarterTrade: any;
|
|
7050
|
+
const BarterItemStack: any;
|
|
7051
|
+
const FixedTradeSlot: any;
|
|
7052
|
+
const PoolTradeSlot: any;
|
|
7053
|
+
const TradeSlot: any;
|
|
7054
|
+
const WeightedTrade: any;
|
|
7055
|
+
const RefreshInterval: any;
|
|
7056
|
+
const BountyObjectiveTaskAsset: any;
|
|
7057
|
+
const KillObjectiveTaskAsset: any;
|
|
7058
|
+
const KillSpawnBeaconObjectiveTaskAsset: any;
|
|
7059
|
+
const KillSpawnMarkerObjectiveTaskAsset: any;
|
|
7060
|
+
const SensorHasTask: any;
|
|
7061
|
+
const BuilderActionCompleteTask: any;
|
|
7062
|
+
const BuilderActionStartObjective: any;
|
|
7063
|
+
const BuilderSensorHasTask: any;
|
|
7064
|
+
const ObjectiveExistsValidator: any;
|
|
7065
|
+
const KillTrackerResource: any;
|
|
7066
|
+
const SpawnBeaconCheckRemovalSystem: any;
|
|
7067
|
+
const BountyObjectiveTask: any;
|
|
7068
|
+
const KillSpawnBeaconObjectiveTask: any;
|
|
7069
|
+
const KillSpawnMarkerObjectiveTask: any;
|
|
7070
|
+
const KillTaskTransaction: any;
|
|
7071
|
+
const BarterShopExistsValidator: any;
|
|
7072
|
+
const ShopExistsValidator: any;
|
|
7073
|
+
const BuilderActionOpenBarterShop: any;
|
|
7074
|
+
const BuilderActionOpenShop: any;
|
|
7075
|
+
const ReputationCompletion: any;
|
|
7076
|
+
const ReputationCompletionAsset: any;
|
|
7077
|
+
const ReputationObjectiveRewardHistoryData: any;
|
|
7078
|
+
const ObjectiveAdminPanelPage: any;
|
|
7079
|
+
const ObjectiveHistoryCommand: any;
|
|
7080
|
+
const ObjectiveLocationMarkerCommand: any;
|
|
7081
|
+
const ObjectivePanelCommand: any;
|
|
7082
|
+
const ObjectiveReachLocationMarkerCommand: any;
|
|
7083
|
+
const ClearObjectiveItemsCompletion: any;
|
|
7084
|
+
const GiveItemsCompletion: any;
|
|
7085
|
+
const ObjectiveCompletion: any;
|
|
7086
|
+
const ObjectiveAsset: any;
|
|
7087
|
+
const ObjectiveLineAsset: any;
|
|
7088
|
+
const ObjectiveLocationMarkerAsset: any;
|
|
7089
|
+
const ClearObjectiveItemsCompletionAsset: any;
|
|
7090
|
+
const GiveItemsCompletionAsset: any;
|
|
7091
|
+
const ObjectiveCompletionAsset: any;
|
|
7092
|
+
const ObjectiveGameplayConfig: any;
|
|
7093
|
+
const ObjectiveLocationAreaBox: any;
|
|
7094
|
+
const ObjectiveLocationAreaRadius: any;
|
|
7095
|
+
const ObjectiveLocationMarkerArea: any;
|
|
7096
|
+
const ObjectiveTypeSetup: any;
|
|
7097
|
+
const SetupObjective: any;
|
|
7098
|
+
const SetupObjectiveLine: any;
|
|
7099
|
+
const BlockTagOrItemIdField: any;
|
|
7100
|
+
const CountObjectiveTaskAsset: any;
|
|
7101
|
+
const CraftObjectiveTaskAsset: any;
|
|
7102
|
+
const GatherObjectiveTaskAsset: any;
|
|
7103
|
+
const ObjectiveTaskAsset: any;
|
|
7104
|
+
const ReachLocationTaskAsset: any;
|
|
7105
|
+
const TaskSet: any;
|
|
7106
|
+
const TreasureMapObjectiveTaskAsset: any;
|
|
7107
|
+
const UseBlockObjectiveTaskAsset: any;
|
|
7108
|
+
const UseEntityObjectiveTaskAsset: any;
|
|
7109
|
+
const SoloInventoryCondition: any;
|
|
7110
|
+
const TaskConditionAsset: any;
|
|
7111
|
+
const HourRangeTriggerCondition: any;
|
|
7112
|
+
const ObjectiveLocationTriggerCondition: any;
|
|
7113
|
+
const WeatherTriggerCondition: any;
|
|
7114
|
+
const CheckTagWorldHeightRadiusProvider: any;
|
|
7115
|
+
const LocationRadiusProvider: any;
|
|
7116
|
+
const LookBlocksBelowProvider: any;
|
|
7117
|
+
const WorldLocationProvider: any;
|
|
7118
|
+
const TreasureChestOpeningEvent: any;
|
|
7119
|
+
const CommonObjectiveHistoryData: any;
|
|
7120
|
+
const ItemObjectiveRewardHistoryData: any;
|
|
7121
|
+
const ObjectiveHistoryData: any;
|
|
7122
|
+
const ObjectiveLineHistoryData: any;
|
|
7123
|
+
const ObjectiveRewardHistoryData: any;
|
|
7124
|
+
const CanBreakRespawnPointInteraction: any;
|
|
7125
|
+
const StartObjectiveInteraction: any;
|
|
7126
|
+
const ObjectiveMarkerProvider: any;
|
|
7127
|
+
const ObjectiveLocationMarker: any;
|
|
7128
|
+
const ObjectiveLocationMarkerSystems: any;
|
|
7129
|
+
const ReachLocationMarker: any;
|
|
7130
|
+
const ReachLocationMarkerAsset: any;
|
|
7131
|
+
const ReachLocationMarkerSystems: any;
|
|
7132
|
+
const ObjectiveItemEntityRemovalSystem: any;
|
|
7133
|
+
const ObjectivePlayerSetupSystem: any;
|
|
7134
|
+
const CountObjectiveTask: any;
|
|
7135
|
+
const CraftObjectiveTask: any;
|
|
7136
|
+
const GatherObjectiveTask: any;
|
|
7137
|
+
const ObjectiveTask: any;
|
|
7138
|
+
const ObjectiveTaskRef: any;
|
|
7139
|
+
const ReachLocationTask: any;
|
|
7140
|
+
const TreasureMapObjectiveTask: any;
|
|
7141
|
+
const UseBlockObjectiveTask: any;
|
|
7142
|
+
const UseEntityObjectiveTask: any;
|
|
7143
|
+
const RegistrationTransactionRecord: any;
|
|
7144
|
+
const SpawnEntityTransactionRecord: any;
|
|
7145
|
+
const SpawnTreasureChestTransactionRecord: any;
|
|
7146
|
+
const TransactionRecord: any;
|
|
7147
|
+
const TransactionStatus: any;
|
|
7148
|
+
const TransactionUtil: any;
|
|
7149
|
+
const UseEntityTransactionRecord: any;
|
|
7150
|
+
const WorldTransactionRecord: any;
|
|
7151
|
+
const CanStartObjectiveRequirement: any;
|
|
7152
|
+
const ObjectiveShopStartObjectiveInteraction: any;
|
|
7153
|
+
const ArrayCodec: any;
|
|
7154
|
+
const DoubleArrayCodec: any;
|
|
7155
|
+
const FloatArrayCodec: any;
|
|
7156
|
+
const IntArrayCodec: any;
|
|
7157
|
+
const LongArrayCodec: any;
|
|
7158
|
+
const EnumMapCodec: any;
|
|
7159
|
+
const Float2ObjectMapCodec: any;
|
|
7160
|
+
const Int2ObjectMapCodec: any;
|
|
7161
|
+
const MapCodec: any;
|
|
7162
|
+
const MergedEnumMapCodec: any;
|
|
7163
|
+
const Object2DoubleMapCodec: any;
|
|
7164
|
+
const Object2FloatMapCodec: any;
|
|
7165
|
+
const Object2IntMapCodec: any;
|
|
7166
|
+
const ObjectMapCodec: any;
|
|
7167
|
+
const Short2ObjectMapCodec: any;
|
|
7168
|
+
const SetCodec: any;
|
|
7169
|
+
const BooleanCodec: any;
|
|
7170
|
+
const ByteCodec: any;
|
|
7171
|
+
const DoubleCodec: any;
|
|
7172
|
+
const FloatCodec: any;
|
|
7173
|
+
const IntegerCodec: any;
|
|
7174
|
+
const LongCodec: any;
|
|
7175
|
+
const ShortCodec: any;
|
|
7176
|
+
const StringCodec: any;
|
|
7177
|
+
const ArraySchema: any;
|
|
7178
|
+
const BooleanSchema: any;
|
|
7179
|
+
const IntegerSchema: any;
|
|
7180
|
+
const NullSchema: any;
|
|
7181
|
+
const NumberSchema: any;
|
|
7182
|
+
const ObjectSchema: any;
|
|
7183
|
+
const Schema: any;
|
|
7184
|
+
const StringSchema: any;
|
|
7185
|
+
const AllowEmptyObject: any;
|
|
7186
|
+
const HytaleType: any;
|
|
7187
|
+
const MetadataAnnotation: any;
|
|
7188
|
+
const NoDefaultValue: any;
|
|
7189
|
+
const VirtualPath: any;
|
|
7190
|
+
const UIButton: any;
|
|
7191
|
+
const UICreateButtons: any;
|
|
7192
|
+
const UIDefaultCollapsedState: any;
|
|
7193
|
+
const UIDisplayMode: any;
|
|
7194
|
+
const UIEditorAnnotation: any;
|
|
7195
|
+
const UIEditorFeatures: any;
|
|
7196
|
+
const UIEditorPreview: any;
|
|
7197
|
+
const UIEditorSectionStart: any;
|
|
7198
|
+
const UIPropertyTitle: any;
|
|
7199
|
+
const UIRebuildCaches: any;
|
|
7200
|
+
const UISidebarButtons: any;
|
|
7201
|
+
const UITypeIcon: any;
|
|
7202
|
+
const ArraySizeRangeValidator: any;
|
|
7203
|
+
const ArraySizeValidator: any;
|
|
7204
|
+
const ArrayValidatorCodec: any;
|
|
7205
|
+
const DeprecatedValidator: any;
|
|
7206
|
+
const DoubleArraySizeValidator: any;
|
|
7207
|
+
const DoubleArrayValidator: any;
|
|
7208
|
+
const EqualValidator: any;
|
|
7209
|
+
const FloatArrayValidator: any;
|
|
7210
|
+
const IntArraySizeValidator: any;
|
|
7211
|
+
const IntArrayValidator: any;
|
|
7212
|
+
const ListValidator: any;
|
|
7213
|
+
const MapKeyValidator: any;
|
|
7214
|
+
const MapValidatorCodec: any;
|
|
7215
|
+
const MapValueValidator: any;
|
|
7216
|
+
const NonEmptyArrayValidator: any;
|
|
7217
|
+
const NonEmptyDoubleArrayValidator: any;
|
|
7218
|
+
const NonEmptyFloatArrayValidator: any;
|
|
7219
|
+
const NonEmptyMapValidator: any;
|
|
7220
|
+
const NonEmptyStringValidator: any;
|
|
7221
|
+
const NonNullValidator: any;
|
|
7222
|
+
const NotEqualValidator: any;
|
|
7223
|
+
const OrValidatorCodec: any;
|
|
7224
|
+
const RangeRefValidator: any;
|
|
7225
|
+
const RangeValidatorCodec: any;
|
|
7226
|
+
const RequiredMapKeysValidator: any;
|
|
7227
|
+
const SequentialDoubleArrayValidator: any;
|
|
7228
|
+
const UniqueInArrayValidator: any;
|
|
7229
|
+
const AStarBase: any;
|
|
7230
|
+
const AStarDebugBase: any;
|
|
7231
|
+
const AStarDebugWithTarget: any;
|
|
7232
|
+
const AStarEvaluator: any;
|
|
7233
|
+
const AStarNode: any;
|
|
7234
|
+
const AStarNodePool: any;
|
|
7235
|
+
const AStarNodePoolProvider: any;
|
|
7236
|
+
const AStarNodePoolProviderSimple: any;
|
|
7237
|
+
const AStarNodePoolSimple: any;
|
|
7238
|
+
const AStarWithTarget: any;
|
|
7239
|
+
const IWaypoint: any;
|
|
7240
|
+
const PathFollower: any;
|
|
7241
|
+
const PathManager: any;
|
|
7242
|
+
const MotionController: any;
|
|
7243
|
+
const MotionControllerBase: any;
|
|
7244
|
+
const MotionControllerDive: any;
|
|
7245
|
+
const MotionControllerFly: any;
|
|
7246
|
+
const MotionControllerWalk: any;
|
|
7247
|
+
const SteeringForce: any;
|
|
7248
|
+
const SteeringForceAvoidCollision: any;
|
|
7249
|
+
const SteeringForceEvade: any;
|
|
7250
|
+
const SteeringForcePursue: any;
|
|
7251
|
+
const SteeringForceRotate: any;
|
|
7252
|
+
const SteeringForceWander: any;
|
|
7253
|
+
const SteeringForceWithGroup: any;
|
|
7254
|
+
const SteeringForceWithTarget: any;
|
|
7255
|
+
const MovementStateNPC: any;
|
|
7256
|
+
const NavState: any;
|
|
7257
|
+
const SteeringNPC: any;
|
|
7258
|
+
const MotionKind: any;
|
|
7259
|
+
const GroupSteeringAccumulator: any;
|
|
7260
|
+
const BuilderRole: any;
|
|
7261
|
+
const BuilderRoleAbstract: any;
|
|
7262
|
+
const BuilderRoleVariant: any;
|
|
7263
|
+
const CombatSupport: any;
|
|
7264
|
+
const DebugSupport: any;
|
|
7265
|
+
const EntityList: any;
|
|
7266
|
+
const EntitySupport: any;
|
|
7267
|
+
const MarkedEntitySupport: any;
|
|
7268
|
+
const PositionCacheNPC: any;
|
|
7269
|
+
const RoleStats: any;
|
|
7270
|
+
const StateSupport: any;
|
|
7271
|
+
const WorldSupportNPC: any;
|
|
7272
|
+
const StateTransitionController: any;
|
|
7273
|
+
const BuilderStateTransition: any;
|
|
7274
|
+
const BuilderStateTransitionController: any;
|
|
7275
|
+
const BuilderStateTransitionEdges: any;
|
|
7276
|
+
const ExpressionExecutionContext: any;
|
|
7277
|
+
const ExpressionClass: any;
|
|
7278
|
+
const ExpressionScope: any;
|
|
7279
|
+
const StdLib: any;
|
|
7280
|
+
const StdScope: any;
|
|
7281
|
+
const ExpressionValueType: any;
|
|
7282
|
+
const CompileContext: any;
|
|
7283
|
+
const ExpressionLexer: any;
|
|
7284
|
+
const LexerContext: any;
|
|
7285
|
+
const OperatorBinary: any;
|
|
7286
|
+
const OperatorUnary: any;
|
|
7287
|
+
const ExpressionParser: any;
|
|
7288
|
+
const ExpressionToken: any;
|
|
7289
|
+
const TokenFlags: any;
|
|
7290
|
+
const AlarmStore: any;
|
|
7291
|
+
const ParameterStore: any;
|
|
7292
|
+
const PersistentParameter: any;
|
|
7293
|
+
const NPCLoadTimeValidationHelper: any;
|
|
7294
|
+
const NPCRoleValidator: any;
|
|
7295
|
+
const ValueStore: any;
|
|
7296
|
+
const ValueStoreValidator: any;
|
|
7297
|
+
const ContextualUseNPCInteraction: any;
|
|
7298
|
+
const NPCInteractionSimulationHandler: any;
|
|
7299
|
+
const SpawnNPCInteraction: any;
|
|
7300
|
+
const UseNPCInteraction: any;
|
|
7301
|
+
const AimingData: any;
|
|
7302
|
+
const AimingHelper: any;
|
|
7303
|
+
const AlarmUtil: any;
|
|
7304
|
+
const BlockPlacementHelper: any;
|
|
7305
|
+
const DamageData: any;
|
|
7306
|
+
const NPCInventoryHelper: any;
|
|
7307
|
+
const NPCPhysicsMath: any;
|
|
7308
|
+
const NPCTimer: any;
|
|
7309
|
+
const ViewTest: any;
|
|
7310
|
+
const BuilderNPC: any;
|
|
7311
|
+
const BuilderAttributeDescriptor: any;
|
|
7312
|
+
const BuilderBase: any;
|
|
7313
|
+
const BuilderBaseWithType: any;
|
|
7314
|
+
const BuilderCodecObjectHelper: any;
|
|
7315
|
+
const BuilderCombatConfig: any;
|
|
7316
|
+
const BuilderComponent: any;
|
|
7317
|
+
const BuilderContext: any;
|
|
7318
|
+
const BuilderDescriptor: any;
|
|
7319
|
+
const BuilderDescriptorState: any;
|
|
7320
|
+
const BuilderFactory: any;
|
|
7321
|
+
const BuilderInfo: any;
|
|
7322
|
+
const BuilderModifier: any;
|
|
7323
|
+
const BuilderObjectArrayHelper: any;
|
|
7324
|
+
const BuilderObjectHelper: any;
|
|
7325
|
+
const BuilderObjectListHelper: any;
|
|
7326
|
+
const BuilderObjectMapHelper: any;
|
|
7327
|
+
const BuilderObjectReferenceHelper: any;
|
|
7328
|
+
const BuilderObjectStaticHelper: any;
|
|
7329
|
+
const BuilderObjectStaticListHelper: any;
|
|
7330
|
+
const BuilderParameters: any;
|
|
7331
|
+
const BuilderSupportNPC: any;
|
|
7332
|
+
const BuilderTemplateInteractionVars: any;
|
|
7333
|
+
const BuilderValidationHelper: any;
|
|
7334
|
+
const ComponentContext: any;
|
|
7335
|
+
const EmptyBuilderModifier: any;
|
|
7336
|
+
const EventSlotMapper: any;
|
|
7337
|
+
const FeatureNPC: any;
|
|
7338
|
+
const FeatureEvaluatorHelper: any;
|
|
7339
|
+
const InstructionContextHelper: any;
|
|
7340
|
+
const InstructionType: any;
|
|
7341
|
+
const InternalReferenceResolver: any;
|
|
7342
|
+
const ReferenceSlotMapper: any;
|
|
7343
|
+
const SlotMapper: any;
|
|
7344
|
+
const SpawnableWithModelBuilder: any;
|
|
7345
|
+
const StateMappingHelper: any;
|
|
7346
|
+
const StatePair: any;
|
|
7347
|
+
const BuilderExpressionNPC: any;
|
|
7348
|
+
const BuilderExpressionDynamic: any;
|
|
7349
|
+
const BuilderExpressionDynamicBoolean: any;
|
|
7350
|
+
const BuilderExpressionDynamicBooleanArray: any;
|
|
7351
|
+
const BuilderExpressionDynamicNumber: any;
|
|
7352
|
+
const BuilderExpressionDynamicNumberArray: any;
|
|
7353
|
+
const BuilderExpressionDynamicString: any;
|
|
7354
|
+
const BuilderExpressionDynamicStringArray: any;
|
|
7355
|
+
const BuilderExpressionStaticBoolean: any;
|
|
7356
|
+
const BuilderExpressionStaticBooleanArray: any;
|
|
7357
|
+
const BuilderExpressionStaticEmptyArray: any;
|
|
7358
|
+
const BuilderExpressionStaticNumber: any;
|
|
7359
|
+
const BuilderExpressionStaticNumberArray: any;
|
|
7360
|
+
const BuilderExpressionStaticString: any;
|
|
7361
|
+
const BuilderExpressionStaticStringArray: any;
|
|
7362
|
+
const ArrayHolder: any;
|
|
7363
|
+
const AssetArrayHolder: any;
|
|
7364
|
+
const AssetHolder: any;
|
|
7365
|
+
const BooleanArrayHolder: any;
|
|
7366
|
+
const BooleanHolder: any;
|
|
7367
|
+
const DeferEvaluateAssetHolder: any;
|
|
7368
|
+
const DoubleHolder: any;
|
|
7369
|
+
const DoubleHolderBase: any;
|
|
7370
|
+
const EnumArrayHolder: any;
|
|
7371
|
+
const EnumHolder: any;
|
|
7372
|
+
const EnumSetHolder: any;
|
|
7373
|
+
const FloatHolder: any;
|
|
7374
|
+
const IntHolder: any;
|
|
7375
|
+
const NumberArrayHolder: any;
|
|
7376
|
+
const StringArrayHolder: any;
|
|
7377
|
+
const StringHolderNPC: any;
|
|
7378
|
+
const StringHolderBase: any;
|
|
7379
|
+
const TemporalArrayHolder: any;
|
|
7380
|
+
const ValueHolderNPC: any;
|
|
7381
|
+
const FeatureProviderEvaluator: any;
|
|
7382
|
+
const ParameterProviderEvaluator: any;
|
|
7383
|
+
const ParameterType: any;
|
|
7384
|
+
const ProviderEvaluator: any;
|
|
7385
|
+
const ProviderEvaluatorTypeRegistry: any;
|
|
7386
|
+
const ReferenceProviderEvaluator: any;
|
|
7387
|
+
const UnconditionalFeatureProviderEvaluator: any;
|
|
7388
|
+
const UnconditionalParameterProviderEvaluator: any;
|
|
7389
|
+
const AnyBooleanValidator: any;
|
|
7390
|
+
const AnyPresentValidator: any;
|
|
7391
|
+
const ArrayNotEmptyValidatorNPC: any;
|
|
7392
|
+
const ArraysOneSetValidator: any;
|
|
7393
|
+
const NPCArrayValidator: any;
|
|
7394
|
+
const AssetValidatorNPC: any;
|
|
7395
|
+
const AtMostOneBooleanValidator: any;
|
|
7396
|
+
const AttributeRelationValidator: any;
|
|
7397
|
+
const BooleanArrayValidatorNPC: any;
|
|
7398
|
+
const BooleanImplicationValidator: any;
|
|
7399
|
+
const ComponentOnlyValidator: any;
|
|
7400
|
+
const DoubleArrayValidatorNPC: any;
|
|
7401
|
+
const DoubleOrValidator: any;
|
|
7402
|
+
const DoubleRangeValidatorNPC: any;
|
|
7403
|
+
const DoubleSequenceValidator: any;
|
|
7404
|
+
const DoubleSingleValidator: any;
|
|
7405
|
+
const DoubleValidatorNPC: any;
|
|
7406
|
+
const EnumArrayNoDuplicatesValidator: any;
|
|
7407
|
+
const EnumArrayValidatorNPC: any;
|
|
7408
|
+
const ExistsIfParameterSetValidator: any;
|
|
7409
|
+
const InstructionContextValidator: any;
|
|
7410
|
+
const IntArrayValidatorNPC: any;
|
|
7411
|
+
const IntOrValidator: any;
|
|
7412
|
+
const IntRangeValidatorNPC: any;
|
|
7413
|
+
const IntSequenceValidator: any;
|
|
7414
|
+
const IntSingleValidator: any;
|
|
7415
|
+
const IntValidatorNPC: any;
|
|
7416
|
+
const NoDuplicatesValidatorNPC: any;
|
|
7417
|
+
const OneOrNonePresentValidator: any;
|
|
7418
|
+
const OnePresentValidator: any;
|
|
7419
|
+
const RelationalOperator: any;
|
|
7420
|
+
const RequiredFeatureValidator: any;
|
|
7421
|
+
const RequiresFeatureIfEnumValidator: any;
|
|
7422
|
+
const RequiresFeatureIfValidator: any;
|
|
7423
|
+
const RequiresOneOfFeaturesValidator: any;
|
|
7424
|
+
const StateStringValidator: any;
|
|
7425
|
+
const StringArrayNoEmptyStringsValidator: any;
|
|
7426
|
+
const StringArrayNotEmptyValidatorNPC: any;
|
|
7427
|
+
const StringArrayValidatorNPC: any;
|
|
7428
|
+
const StringNotEmptyValidatorNPC: any;
|
|
7429
|
+
const StringNullOrNotEmptyValidator: any;
|
|
7430
|
+
const StringsAtMostOneValidator: any;
|
|
7431
|
+
const StringsNotEmptyValidator: any;
|
|
7432
|
+
const StringsOneSetValidator: any;
|
|
7433
|
+
const StringValidatorNPC: any;
|
|
7434
|
+
const SubTypeTypeAdapterFactory: any;
|
|
7435
|
+
const TagSetExistsValidator: any;
|
|
7436
|
+
const TemporalArrayValidatorNPC: any;
|
|
7437
|
+
const TemporalSequenceValidator: any;
|
|
7438
|
+
const ValidateAssetIfEnumIsValidator: any;
|
|
7439
|
+
const ValidateIfEnumIsValidator: any;
|
|
7440
|
+
const NPCValidatorBase: any;
|
|
7441
|
+
const ValidatorTypeRegistry: any;
|
|
7442
|
+
const AttitudeGroupExistsValidator: any;
|
|
7443
|
+
const BeaconSpawnExistsValidator: any;
|
|
7444
|
+
const BlockSetExistsValidator: any;
|
|
7445
|
+
const CombatInteractionValidator: any;
|
|
7446
|
+
const EntityEffectExistsValidator: any;
|
|
7447
|
+
const EntityStatExistsValidator: any;
|
|
7448
|
+
const EnvironmentExistsValidator: any;
|
|
7449
|
+
const FlockAssetExistsValidator: any;
|
|
7450
|
+
const ItemAttitudeGroupExistsValidator: any;
|
|
7451
|
+
const ItemDropListExistsValidator: any;
|
|
7452
|
+
const ItemExistsValidatorNPC: any;
|
|
7453
|
+
const ManualSpawnMarkerExistsValidator: any;
|
|
7454
|
+
const ModelExistsValidator: any;
|
|
7455
|
+
const ParticleSystemExistsValidator: any;
|
|
7456
|
+
const RoleExistsValidator: any;
|
|
7457
|
+
const RootInteractionValidator: any;
|
|
7458
|
+
const SoundEventExistsValidator: any;
|
|
7459
|
+
const WeatherExistsValidator: any;
|
|
7460
|
+
const BlackboardNPC: any;
|
|
7461
|
+
const IBlackboardViewManager: any;
|
|
7462
|
+
const BlockRegionView: any;
|
|
7463
|
+
const BlockRegionViewManager: any;
|
|
7464
|
+
const PrioritisedProviderView: any;
|
|
7465
|
+
const SingletonBlackboardViewManager: any;
|
|
7466
|
+
const AttitudeMap: any;
|
|
7467
|
+
const AttitudeView: any;
|
|
7468
|
+
const IAttitudeProvider: any;
|
|
7469
|
+
const ItemAttitudeMap: any;
|
|
7470
|
+
const BlockPositionEntryGenerator: any;
|
|
7471
|
+
const BlockTypeView: any;
|
|
7472
|
+
const BlockTypeViewManager: any;
|
|
7473
|
+
const CombatViewSystems: any;
|
|
7474
|
+
const InterpretedCombatData: any;
|
|
7475
|
+
const EntityEventNotification: any;
|
|
7476
|
+
const EventNotificationNPC: any;
|
|
7477
|
+
const EventTypeRegistration: any;
|
|
7478
|
+
const EventViewNPC: any;
|
|
7479
|
+
const IEventCallback: any;
|
|
7480
|
+
const BlockEventType: any;
|
|
7481
|
+
const BlockEventView: any;
|
|
7482
|
+
const EntityEventType: any;
|
|
7483
|
+
const EntityEventViewNPC: any;
|
|
7484
|
+
const InteractionViewNPC: any;
|
|
7485
|
+
const ReservationProvider: any;
|
|
7486
|
+
const ReservationStatus: any;
|
|
7487
|
+
const ResourceView: any;
|
|
7488
|
+
const ResourceViewManager: any;
|
|
7489
|
+
const FailedSpawnComponent: any;
|
|
7490
|
+
const SortBufferProviderResource: any;
|
|
7491
|
+
const SpawnBeaconReference: any;
|
|
7492
|
+
const SpawnMarkerReference: any;
|
|
7493
|
+
const SpawnReference: any;
|
|
7494
|
+
const StepComponent: any;
|
|
7495
|
+
const TimersNPC: any;
|
|
7496
|
+
const BeaconSupport: any;
|
|
7497
|
+
const EntityEventSupportNPC: any;
|
|
7498
|
+
const EventMessageNPC: any;
|
|
7499
|
+
const EventSupportNPC: any;
|
|
7500
|
+
const MessageSupportNPC: any;
|
|
7501
|
+
const NPCBlockEventSupport: any;
|
|
7502
|
+
const NPCEntityEventSupport: any;
|
|
7503
|
+
const NPCMessage: any;
|
|
7504
|
+
const PlayerBlockEventSupport: any;
|
|
7505
|
+
const PlayerEntityEventSupport: any;
|
|
7506
|
+
const NPCAnimationSlot: any;
|
|
7507
|
+
const RoleSpawnParameters: any;
|
|
7508
|
+
const SpawnSuppression: any;
|
|
7509
|
+
const InitialBeaconDelay: any;
|
|
7510
|
+
const LegacySpawnBeaconEntity: any;
|
|
7511
|
+
const SpawnBeaconSystems: any;
|
|
7512
|
+
const SpawnMarkerBlockReference: any;
|
|
7513
|
+
const SpawnMarkerBlockState: any;
|
|
7514
|
+
const SpawnMarkerBlockStateSystems: any;
|
|
7515
|
+
const BeaconSpawnController: any;
|
|
7516
|
+
const SpawnControllerSystem: any;
|
|
7517
|
+
const SpawnJobSystem: any;
|
|
7518
|
+
const ActionTriggerSpawnBeacon: any;
|
|
7519
|
+
const BuilderActionTriggerSpawnBeacon: any;
|
|
7520
|
+
const TriggerSpawnMarkersInteraction: any;
|
|
7521
|
+
const NPCBeaconSpawnJob: any;
|
|
7522
|
+
const SpawnJob: any;
|
|
7523
|
+
const LocalSpawnBeacon: any;
|
|
7524
|
+
const LocalSpawnBeaconSystem: any;
|
|
7525
|
+
const LocalSpawnController: any;
|
|
7526
|
+
const LocalSpawnControllerSystem: any;
|
|
7527
|
+
const LocalSpawnForceTriggerSystem: any;
|
|
7528
|
+
const LocalSpawnSetupSystem: any;
|
|
7529
|
+
const LocalSpawnState: any;
|
|
7530
|
+
const SpawnMarkerEntity: any;
|
|
7531
|
+
const SpawnMarkerSystems: any;
|
|
7532
|
+
const SpawnSuppressorEntry: any;
|
|
7533
|
+
const SuppressionSpanHelper: any;
|
|
7534
|
+
const ChunkSuppressionEntry: any;
|
|
7535
|
+
const ChunkSuppressionQueue: any;
|
|
7536
|
+
const SpawnSuppressionComponent: any;
|
|
7537
|
+
const SpawnSuppressionController: any;
|
|
7538
|
+
const ChunkSuppressionSystems: any;
|
|
7539
|
+
const SpawnMarkerSuppressionSystem: any;
|
|
7540
|
+
const SpawnSuppressionSystems: any;
|
|
7541
|
+
const ChunkColumnMask: any;
|
|
7542
|
+
const FloodFillEntryPoolProviderSimple: any;
|
|
7543
|
+
const FloodFillEntryPoolSimple: any;
|
|
7544
|
+
const FloodFillPositionSelector: any;
|
|
7545
|
+
const LightRangePredicate: any;
|
|
7546
|
+
const RandomChunkColumnIterator: any;
|
|
7547
|
+
const LightType: any;
|
|
7548
|
+
const ChunkEnvironmentSpawnData: any;
|
|
7549
|
+
const WorldEnvironmentSpawnData: any;
|
|
7550
|
+
const WorldNPCSpawnStat: any;
|
|
7551
|
+
const ChunkSpawnData: any;
|
|
7552
|
+
const ChunkSpawnedNPCData: any;
|
|
7553
|
+
const SpawnJobData: any;
|
|
7554
|
+
const WorldSpawnData: any;
|
|
7555
|
+
const EnvironmentSpawnParameters: any;
|
|
7556
|
+
const WorldSpawnManager: any;
|
|
7557
|
+
const WorldSpawnWrapper: any;
|
|
7558
|
+
const ChunkSpawningSystems: any;
|
|
7559
|
+
const MoonPhaseChangeEventSystem: any;
|
|
7560
|
+
const WorldSpawningSystem: any;
|
|
7561
|
+
const WorldSpawnJobSystems: any;
|
|
7562
|
+
const WorldSpawnTrackingSystem: any;
|
|
7563
|
+
const BeaconSpawnWrapper: any;
|
|
7564
|
+
const SpawnWrapperSpawning: any;
|
|
7565
|
+
const ActionBase: any;
|
|
7566
|
+
const ActionWithDelay: any;
|
|
7567
|
+
const AnnotatedComponentBase: any;
|
|
7568
|
+
const BlockTarget: any;
|
|
7569
|
+
const BodyMotionBase: any;
|
|
7570
|
+
const EntityFilterBase: any;
|
|
7571
|
+
const HeadMotionBase: any;
|
|
7572
|
+
const IEntityFilter: any;
|
|
7573
|
+
const ISensorEntityCollector: any;
|
|
7574
|
+
const ISensorEntityPrioritiser: any;
|
|
7575
|
+
const MotionBase: any;
|
|
7576
|
+
const SensorBase: any;
|
|
7577
|
+
const SensorWithEntityFilters: any;
|
|
7578
|
+
const WeightedAction: any;
|
|
7579
|
+
const ActionAppearance: any;
|
|
7580
|
+
const ActionDisplayName: any;
|
|
7581
|
+
const ActionModelAttachment: any;
|
|
7582
|
+
const ActionPlayAnimation: any;
|
|
7583
|
+
const ActionPlaySound: any;
|
|
7584
|
+
const ActionSpawnParticles: any;
|
|
7585
|
+
const SensorAnimation: any;
|
|
7586
|
+
const ActionApplyEntityEffect: any;
|
|
7587
|
+
const ActionAttack: any;
|
|
7588
|
+
const BodyMotionAimCharge: any;
|
|
7589
|
+
const HeadMotionAim: any;
|
|
7590
|
+
const SensorDamage: any;
|
|
7591
|
+
const SensorIsBackingAway: any;
|
|
7592
|
+
const BuilderActionBase: any;
|
|
7593
|
+
const BuilderActionWithDelay: any;
|
|
7594
|
+
const BuilderBodyMotionBase: any;
|
|
7595
|
+
const BuilderEntityFilterBase: any;
|
|
7596
|
+
const BuilderEntityFilterWithToggle: any;
|
|
7597
|
+
const BuilderHeadMotionBase: any;
|
|
7598
|
+
const BuilderMotionBase: any;
|
|
7599
|
+
const BuilderSensorBase: any;
|
|
7600
|
+
const BuilderSensorEntityPrioritiserBase: any;
|
|
7601
|
+
const BuilderSensorWithEntityFilters: any;
|
|
7602
|
+
const BuilderWeightedAction: any;
|
|
7603
|
+
const EvaluationContext: any;
|
|
7604
|
+
const Evaluator: any;
|
|
7605
|
+
const OptionNPC: any;
|
|
7606
|
+
const HasTargetCondition: any;
|
|
7607
|
+
const IsInStateCondition: any;
|
|
7608
|
+
const LineOfSightCondition: any;
|
|
7609
|
+
const NearbyCountCondition: any;
|
|
7610
|
+
const RandomiserCondition: any;
|
|
7611
|
+
const SelfStatAbsoluteCondition: any;
|
|
7612
|
+
const SelfStatPercentageCondition: any;
|
|
7613
|
+
const TargetDistanceCondition: any;
|
|
7614
|
+
const TargetMovementStateCondition: any;
|
|
7615
|
+
const TargetStatAbsoluteCondition: any;
|
|
7616
|
+
const TargetStatPercentageCondition: any;
|
|
7617
|
+
const TimeOfDayCondition: any;
|
|
7618
|
+
const TimeSinceLastUsedCondition: any;
|
|
7619
|
+
const ConditionNPC: any;
|
|
7620
|
+
const CurveCondition: any;
|
|
7621
|
+
const ScaledCurveCondition: any;
|
|
7622
|
+
const SimpleCondition: any;
|
|
7623
|
+
const StateEvaluator: any;
|
|
7624
|
+
const StateOption: any;
|
|
7625
|
+
const CachedPositionProvider: any;
|
|
7626
|
+
const EntityPositionProvider: any;
|
|
7627
|
+
const ExtraInfoProvider: any;
|
|
7628
|
+
const InfoProvider: any;
|
|
7629
|
+
const InfoProviderBase: any;
|
|
7630
|
+
const IPathProvider: any;
|
|
7631
|
+
const IPositionProvider: any;
|
|
7632
|
+
const PathProviderNPC: any;
|
|
7633
|
+
const PositionProvider: any;
|
|
7634
|
+
const ValueWrappedInfoProvider: any;
|
|
7635
|
+
const WrappedInfoProvider: any;
|
|
7636
|
+
const DoubleParameterProvider: any;
|
|
7637
|
+
const IntParameterProvider: any;
|
|
7638
|
+
const MultipleParameterProvider: any;
|
|
7639
|
+
const ParameterProviderNPC: any;
|
|
7640
|
+
const SingleDoubleParameterProvider: any;
|
|
7641
|
+
const SingleIntParameterProvider: any;
|
|
7642
|
+
const SingleParameterProvider: any;
|
|
7643
|
+
const SingleStringParameterProvider: any;
|
|
7644
|
+
const StringParameterProvider: any;
|
|
7645
|
+
const ActionInstruction: any;
|
|
7646
|
+
const ActionList: any;
|
|
7647
|
+
const BodyMotion: any;
|
|
7648
|
+
const HeadMotion: any;
|
|
7649
|
+
const Instruction: any;
|
|
7650
|
+
const InstructionRandomized: any;
|
|
7651
|
+
const MotionInstruction: any;
|
|
7652
|
+
const NullSensor: any;
|
|
7653
|
+
const RoleStateChange: any;
|
|
7654
|
+
const SensorInstruction: any;
|
|
7655
|
+
const BuilderActionList: any;
|
|
7656
|
+
const BuilderInstruction: any;
|
|
7657
|
+
const BuilderInstructionRandomized: any;
|
|
7658
|
+
const BuilderInstructionReference: any;
|
|
7659
|
+
const AttitudeGroup: any;
|
|
7660
|
+
const ItemAttitudeGroup: any;
|
|
7661
|
+
const BalanceAsset: any;
|
|
7662
|
+
const CapturedNPCMetadata: any;
|
|
7663
|
+
const EntitySpawnPage: any;
|
|
7664
|
+
const BuilderRelativeWaypointDefinition: any;
|
|
7665
|
+
const BuilderTransientPathDefinition: any;
|
|
7666
|
+
const BuilderMotionControllerBase: any;
|
|
7667
|
+
const BuilderMotionControllerDive: any;
|
|
7668
|
+
const BuilderMotionControllerFly: any;
|
|
7669
|
+
const BuilderMotionControllerMap: any;
|
|
7670
|
+
const BuilderMotionControllerWalk: any;
|
|
7671
|
+
const AST: any;
|
|
7672
|
+
const ASTOperand: any;
|
|
7673
|
+
const ASTOperandBoolean: any;
|
|
7674
|
+
const ASTOperandBooleanArray: any;
|
|
7675
|
+
const ASTOperandEmptyArray: any;
|
|
7676
|
+
const ASTOperandIdentifier: any;
|
|
7677
|
+
const ASTOperandNumber: any;
|
|
7678
|
+
const ASTOperandNumberArray: any;
|
|
7679
|
+
const ASTOperandString: any;
|
|
7680
|
+
const ASTOperandStringArray: any;
|
|
7681
|
+
const ASTOperator: any;
|
|
7682
|
+
const ASTOperatorBinary: any;
|
|
7683
|
+
const ASTOperatorFunctionCall: any;
|
|
7684
|
+
const ASTOperatorTuple: any;
|
|
7685
|
+
const ASTOperatorUnary: any;
|
|
7686
|
+
const ActionLog: any;
|
|
7687
|
+
const ActionTest: any;
|
|
7688
|
+
const BodyMotionTestProbe: any;
|
|
7689
|
+
const BuilderActionLog: any;
|
|
7690
|
+
const BuilderActionTest: any;
|
|
7691
|
+
const BuilderBodyMotionTestProbe: any;
|
|
7692
|
+
const ActionBeacon: any;
|
|
7693
|
+
const ActionIgnoreForAvoidance: any;
|
|
7694
|
+
const ActionNotify: any;
|
|
7695
|
+
const ActionOverrideAttitude: any;
|
|
7696
|
+
const ActionReleaseTarget: any;
|
|
7697
|
+
const ActionSetMarkedTarget: any;
|
|
7698
|
+
const ActionSetStat: any;
|
|
7699
|
+
const HeadMotionWatch: any;
|
|
7700
|
+
const SensorBeacon: any;
|
|
7701
|
+
const SensorCount: any;
|
|
7702
|
+
const SensorEntity: any;
|
|
7703
|
+
const SensorEntityBase: any;
|
|
7704
|
+
const SensorKill: any;
|
|
7705
|
+
const SensorPlayer: any;
|
|
7706
|
+
const SensorSelf: any;
|
|
7707
|
+
const SensorTarget: any;
|
|
7708
|
+
const BuilderActionBeacon: any;
|
|
7709
|
+
const BuilderActionIgnoreForAvoidance: any;
|
|
7710
|
+
const BuilderActionNotify: any;
|
|
7711
|
+
const BuilderActionOverrideAttitude: any;
|
|
7712
|
+
const BuilderActionReleaseTarget: any;
|
|
7713
|
+
const BuilderActionSetMarkedTarget: any;
|
|
7714
|
+
const BuilderActionSetStat: any;
|
|
7715
|
+
const BuilderHeadMotionWatch: any;
|
|
7716
|
+
const BuilderSensorBeacon: any;
|
|
7717
|
+
const BuilderSensorCount: any;
|
|
7718
|
+
const BuilderSensorEntity: any;
|
|
7719
|
+
const BuilderSensorEntityBase: any;
|
|
7720
|
+
const BuilderSensorKill: any;
|
|
7721
|
+
const BuilderSensorPlayer: any;
|
|
7722
|
+
const BuilderSensorSelf: any;
|
|
7723
|
+
const BuilderSensorTarget: any;
|
|
7724
|
+
const EntityFilterAltitude: any;
|
|
7725
|
+
const EntityFilterAnd: any;
|
|
7726
|
+
const EntityFilterAttitude: any;
|
|
7727
|
+
const EntityFilterCombat: any;
|
|
7728
|
+
const EntityFilterHeightDifference: any;
|
|
7729
|
+
const EntityFilterInsideBlock: any;
|
|
7730
|
+
const EntityFilterInventory: any;
|
|
7731
|
+
const EntityFilterItemInHand: any;
|
|
7732
|
+
const EntityFilterLineOfSight: any;
|
|
7733
|
+
const EntityFilterMany: any;
|
|
7734
|
+
const EntityFilterMovementState: any;
|
|
7735
|
+
const EntityFilterNot: any;
|
|
7736
|
+
const EntityFilterNPCGroup: any;
|
|
7737
|
+
const EntityFilterOr: any;
|
|
7738
|
+
const EntityFilterSpotsMe: any;
|
|
7739
|
+
const EntityFilterStandingOnBlock: any;
|
|
7740
|
+
const EntityFilterStat: any;
|
|
7741
|
+
const EntityFilterViewSector: any;
|
|
7742
|
+
const BuilderEntityFilterAltitude: any;
|
|
7743
|
+
const BuilderEntityFilterAnd: any;
|
|
7744
|
+
const BuilderEntityFilterAttitude: any;
|
|
7745
|
+
const BuilderEntityFilterCombat: any;
|
|
7746
|
+
const BuilderEntityFilterHeightDifference: any;
|
|
7747
|
+
const BuilderEntityFilterInsideBlock: any;
|
|
7748
|
+
const BuilderEntityFilterInventory: any;
|
|
7749
|
+
const BuilderEntityFilterItemInHand: any;
|
|
7750
|
+
const BuilderEntityFilterLineOfSight: any;
|
|
7751
|
+
const BuilderEntityFilterMany: any;
|
|
7752
|
+
const BuilderEntityFilterMovementState: any;
|
|
7753
|
+
const BuilderEntityFilterNot: any;
|
|
7754
|
+
const BuilderEntityFilterNPCGroup: any;
|
|
7755
|
+
const BuilderEntityFilterOr: any;
|
|
7756
|
+
const BuilderEntityFilterSpotsMe: any;
|
|
7757
|
+
const BuilderEntityFilterStandingOnBlock: any;
|
|
7758
|
+
const BuilderEntityFilterStat: any;
|
|
7759
|
+
const BuilderEntityFilterViewSector: any;
|
|
7760
|
+
const SensorEntityPrioritiserAttitude: any;
|
|
7761
|
+
const SensorEntityPrioritiserDefault: any;
|
|
7762
|
+
const BuilderSensorEntityPrioritiserAttitude: any;
|
|
7763
|
+
const ActionLockOnInteractionTarget: any;
|
|
7764
|
+
const ActionSetInteractable: any;
|
|
7765
|
+
const SensorCanInteract: any;
|
|
7766
|
+
const SensorHasInteracted: any;
|
|
7767
|
+
const SensorInteractionContext: any;
|
|
7768
|
+
const BuilderActionLockOnInteractionTarget: any;
|
|
7769
|
+
const BuilderActionSetInteractable: any;
|
|
7770
|
+
const BuilderSensorCanInteract: any;
|
|
7771
|
+
const BuilderSensorHasInteracted: any;
|
|
7772
|
+
const BuilderSensorInteractionContext: any;
|
|
7773
|
+
const ActionDropItem: any;
|
|
7774
|
+
const ActionInventory: any;
|
|
7775
|
+
const ActionPickUpItem: any;
|
|
7776
|
+
const SensorDroppedItem: any;
|
|
7777
|
+
const BuilderActionDropItem: any;
|
|
7778
|
+
const BuilderActionInventory: any;
|
|
7779
|
+
const BuilderActionPickUpItem: any;
|
|
7780
|
+
const BuilderSensorDroppedItem: any;
|
|
7781
|
+
const ActionDelayDespawn: any;
|
|
7782
|
+
const ActionDespawn: any;
|
|
7783
|
+
const ActionDie: any;
|
|
7784
|
+
const ActionRemove: any;
|
|
7785
|
+
const ActionRole: any;
|
|
7786
|
+
const ActionSpawn: any;
|
|
7787
|
+
const SensorAge: any;
|
|
7788
|
+
const BuilderActionDelayDespawn: any;
|
|
7789
|
+
const BuilderActionDespawn: any;
|
|
7790
|
+
const BuilderActionDie: any;
|
|
7791
|
+
const BuilderActionRemove: any;
|
|
7792
|
+
const BuilderActionRole: any;
|
|
7793
|
+
const BuilderActionSpawn: any;
|
|
7794
|
+
const BuilderSensorAge: any;
|
|
7795
|
+
const ActionCrouch: any;
|
|
7796
|
+
const ActionOverrideAltitude: any;
|
|
7797
|
+
const ActionRecomputePath: any;
|
|
7798
|
+
const BodyMotionFind: any;
|
|
7799
|
+
const BodyMotionFindBase: any;
|
|
7800
|
+
const BodyMotionFindWithTarget: any;
|
|
7801
|
+
const BodyMotionLand: any;
|
|
7802
|
+
const BodyMotionLeave: any;
|
|
7803
|
+
const BodyMotionMaintainDistance: any;
|
|
7804
|
+
const BodyMotionMatchLook: any;
|
|
7805
|
+
const BodyMotionMoveAway: any;
|
|
7806
|
+
const BodyMotionTakeOff: any;
|
|
7807
|
+
const BodyMotionTeleport: any;
|
|
7808
|
+
const BodyMotionWander: any;
|
|
7809
|
+
const BodyMotionWanderBase: any;
|
|
7810
|
+
const BodyMotionWanderInCircle: any;
|
|
7811
|
+
const BodyMotionWanderInRect: any;
|
|
7812
|
+
const SensorInAir: any;
|
|
7813
|
+
const SensorMotionController: any;
|
|
7814
|
+
const SensorNav: any;
|
|
7815
|
+
const SensorOnGround: any;
|
|
7816
|
+
const BuilderActionCrouch: any;
|
|
7817
|
+
const BuilderActionOverrideAltitude: any;
|
|
7818
|
+
const BuilderActionRecomputePath: any;
|
|
7819
|
+
const BuilderBodyMotionFind: any;
|
|
7820
|
+
const BuilderBodyMotionFindBase: any;
|
|
7821
|
+
const BuilderBodyMotionFindWithTarget: any;
|
|
7822
|
+
const BuilderBodyMotionLand: any;
|
|
7823
|
+
const BuilderBodyMotionLeave: any;
|
|
7824
|
+
const BuilderBodyMotionMaintainDistance: any;
|
|
7825
|
+
const BuilderBodyMotionMatchLook: any;
|
|
7826
|
+
const BuilderBodyMotionMoveAway: any;
|
|
7827
|
+
const BuilderBodyMotionTakeOff: any;
|
|
7828
|
+
const BuilderBodyMotionTeleport: any;
|
|
7829
|
+
const BuilderBodyMotionWander: any;
|
|
7830
|
+
const BuilderBodyMotionWanderBase: any;
|
|
7831
|
+
const BuilderBodyMotionWanderInCircle: any;
|
|
7832
|
+
const BuilderBodyMotionWanderInRect: any;
|
|
7833
|
+
const BuilderSensorInAir: any;
|
|
7834
|
+
const BuilderSensorMotionController: any;
|
|
7835
|
+
const BuilderSensorNav: any;
|
|
7836
|
+
const BuilderSensorOnGround: any;
|
|
7837
|
+
const ActionParentState: any;
|
|
7838
|
+
const ActionState: any;
|
|
7839
|
+
const ActionToggleStateEvaluator: any;
|
|
7840
|
+
const SensorIsBusy: any;
|
|
7841
|
+
const SensorState: any;
|
|
7842
|
+
const BuilderActionParentState: any;
|
|
7843
|
+
const BuilderActionState: any;
|
|
7844
|
+
const BuilderActionToggleStateEvaluator: any;
|
|
7845
|
+
const BuilderSensorIsBusy: any;
|
|
7846
|
+
const BuilderSensorState: any;
|
|
7847
|
+
const ActionSetAlarm: any;
|
|
7848
|
+
const ActionTimer: any;
|
|
7849
|
+
const BodyMotionTimer: any;
|
|
7850
|
+
const HeadMotionTimer: any;
|
|
7851
|
+
const MotionTimer: any;
|
|
7852
|
+
const SensorAlarm: any;
|
|
7853
|
+
const SensorTimer: any;
|
|
7854
|
+
const BuilderActionSetAlarm: any;
|
|
7855
|
+
const BuilderActionTimer: any;
|
|
7856
|
+
const BuilderActionTimerContinue: any;
|
|
7857
|
+
const BuilderActionTimerModify: any;
|
|
7858
|
+
const BuilderActionTimerPause: any;
|
|
7859
|
+
const BuilderActionTimerRestart: any;
|
|
7860
|
+
const BuilderActionTimerStart: any;
|
|
7861
|
+
const BuilderActionTimerStop: any;
|
|
7862
|
+
const BuilderBodyMotionTimer: any;
|
|
7863
|
+
const BuilderHeadMotionTimer: any;
|
|
7864
|
+
const BuilderMotionTimer: any;
|
|
7865
|
+
const BuilderSensorAlarm: any;
|
|
7866
|
+
const BuilderSensorTimer: any;
|
|
7867
|
+
const ActionNothing: any;
|
|
7868
|
+
const ActionRandom: any;
|
|
7869
|
+
const ActionResetInstructions: any;
|
|
7870
|
+
const ActionSequence: any;
|
|
7871
|
+
const ActionSetFlag: any;
|
|
7872
|
+
const ActionTimeout: any;
|
|
7873
|
+
const BodyMotionNothing: any;
|
|
7874
|
+
const BodyMotionSequence: any;
|
|
7875
|
+
const HeadMotionNothing: any;
|
|
7876
|
+
const HeadMotionSequence: any;
|
|
7877
|
+
const MotionSequence: any;
|
|
7878
|
+
const SensorAdjustPosition: any;
|
|
7879
|
+
const SensorAnd: any;
|
|
7880
|
+
const SensorAny: any;
|
|
7881
|
+
const SensorEval: any;
|
|
7882
|
+
const SensorFlag: any;
|
|
7883
|
+
const SensorMany: any;
|
|
7884
|
+
const SensorNot: any;
|
|
7885
|
+
const SensorOr: any;
|
|
7886
|
+
const SensorRandom: any;
|
|
7887
|
+
const SensorSwitch: any;
|
|
7888
|
+
const SensorValueProviderWrapper: any;
|
|
7889
|
+
const BuilderActionNothing: any;
|
|
7890
|
+
const BuilderActionRandom: any;
|
|
7891
|
+
const BuilderActionResetInstructions: any;
|
|
7892
|
+
const BuilderActionSequence: any;
|
|
7893
|
+
const BuilderActionSetFlag: any;
|
|
7894
|
+
const BuilderActionTimeout: any;
|
|
7895
|
+
const BuilderBodyMotionNothing: any;
|
|
7896
|
+
const BuilderBodyMotionSequence: any;
|
|
7897
|
+
const BuilderHeadMotionNothing: any;
|
|
7898
|
+
const BuilderHeadMotionSequence: any;
|
|
7899
|
+
const BuilderMotionSequence: any;
|
|
7900
|
+
const BuilderSensorAdjustPosition: any;
|
|
7901
|
+
const BuilderSensorAnd: any;
|
|
7902
|
+
const BuilderSensorAny: any;
|
|
7903
|
+
const BuilderSensorEval: any;
|
|
7904
|
+
const BuilderSensorFlag: any;
|
|
7905
|
+
const BuilderSensorMany: any;
|
|
7906
|
+
const BuilderSensorNot: any;
|
|
7907
|
+
const BuilderSensorOr: any;
|
|
7908
|
+
const BuilderSensorRandom: any;
|
|
7909
|
+
const BuilderSensorSwitch: any;
|
|
7910
|
+
const BuilderSensorValueProviderWrapper: any;
|
|
7911
|
+
const BuilderValueToParameterMapping: any;
|
|
7912
|
+
const ActionMakePath: any;
|
|
7913
|
+
const ActionPlaceBlock: any;
|
|
7914
|
+
const ActionResetBlockSensors: any;
|
|
7915
|
+
const ActionResetPath: any;
|
|
7916
|
+
const ActionResetSearchRays: any;
|
|
7917
|
+
const ActionSetBlockToPlace: any;
|
|
7918
|
+
const ActionSetLeashPosition: any;
|
|
7919
|
+
const ActionStorePosition: any;
|
|
7920
|
+
const ActionTriggerSpawners: any;
|
|
7921
|
+
const BodyMotionPath: any;
|
|
7922
|
+
const HeadMotionObserve: any;
|
|
7923
|
+
const SensorBlock: any;
|
|
7924
|
+
const SensorBlockChange: any;
|
|
7925
|
+
const SensorBlockType: any;
|
|
7926
|
+
const SensorCanPlace: any;
|
|
7927
|
+
const SensorEntityEvent: any;
|
|
7928
|
+
const SensorEvent: any;
|
|
7929
|
+
const SensorInWater: any;
|
|
7930
|
+
const SensorLeash: any;
|
|
7931
|
+
const SensorLight: any;
|
|
7932
|
+
const SensorPath: any;
|
|
7933
|
+
const SensorReadPosition: any;
|
|
7934
|
+
const SensorSearchRay: any;
|
|
7935
|
+
const SensorTime: any;
|
|
7936
|
+
const SensorWeather: any;
|
|
7937
|
+
const BuilderActionMakePath: any;
|
|
7938
|
+
const BuilderActionPlaceBlock: any;
|
|
7939
|
+
const BuilderActionResetBlockSensors: any;
|
|
7940
|
+
const BuilderActionResetPath: any;
|
|
7941
|
+
const BuilderActionResetSearchRays: any;
|
|
7942
|
+
const BuilderActionSetBlockToPlace: any;
|
|
7943
|
+
const BuilderActionSetLeashPosition: any;
|
|
7944
|
+
const BuilderActionStorePosition: any;
|
|
7945
|
+
const BuilderActionTriggerSpawners: any;
|
|
7946
|
+
const BuilderBodyMotionPath: any;
|
|
7947
|
+
const BuilderHeadMotionObserve: any;
|
|
7948
|
+
const BuilderSensorBlock: any;
|
|
7949
|
+
const BuilderSensorBlockChange: any;
|
|
7950
|
+
const BuilderSensorBlockType: any;
|
|
7951
|
+
const BuilderSensorCanPlace: any;
|
|
7952
|
+
const BuilderSensorEntityEvent: any;
|
|
7953
|
+
const BuilderSensorEvent: any;
|
|
7954
|
+
const BuilderSensorInWater: any;
|
|
7955
|
+
const BuilderSensorLeash: any;
|
|
7956
|
+
const BuilderSensorLight: any;
|
|
7957
|
+
const BuilderSensorPath: any;
|
|
7958
|
+
const BuilderSensorReadPosition: any;
|
|
7959
|
+
const BuilderSensorSearchRay: any;
|
|
7960
|
+
const BuilderSensorTime: any;
|
|
7961
|
+
const BuilderSensorWeather: any;
|
|
7962
|
+
const Alarm: any;
|
|
7963
|
+
const AttitudeMemoryEntry: any;
|
|
7964
|
+
const ComponentInfo: any;
|
|
7965
|
+
const IAnnotatedComponent: any;
|
|
7966
|
+
const IAnnotatedComponentCollection: any;
|
|
7967
|
+
const IComponentExecutionControl: any;
|
|
7968
|
+
const IEntityByPriorityFilter: any;
|
|
7969
|
+
const InventoryHelper: any;
|
|
7970
|
+
const PositionProbeAir: any;
|
|
7971
|
+
const PositionProbeBase: any;
|
|
7972
|
+
const PositionProbeWater: any;
|
|
7973
|
+
const RayBlockHitTest: any;
|
|
7974
|
+
const RootSolver: any;
|
|
7975
|
+
const SensorSupportBenchmark: any;
|
|
7976
|
+
const ExecutionContext: any;
|
|
7977
|
+
const Expression: any;
|
|
7978
|
+
const Scope: any;
|
|
7979
|
+
const ValueType: any;
|
|
7980
|
+
const EventNotification: any;
|
|
7981
|
+
const EventView: any;
|
|
7982
|
+
const InteractionView: any;
|
|
7983
|
+
const EntityEventView: any;
|
|
7984
|
+
const PositionCache: any;
|
|
7985
|
+
const WorldSupport: any;
|
|
7986
|
+
const AllNPCsLoadedEvent: any;
|
|
6612
7987
|
}
|
|
6613
7988
|
//# sourceMappingURL=types.d.ts.map
|