bard-legends-framework 1.3.0 → 1.3.2
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.mts +53 -35
- package/dist/index.d.ts +53 -35
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +5 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as actions_lib from 'actions-lib';
|
|
2
|
-
import { IDAttachable, Attachable, SingleEvent, Sequence,
|
|
3
|
-
import { Vector, Radian, Rectangle, Vec2, RGBColor, Grid, GridNeighborType, Line } from 'helpers-lib';
|
|
2
|
+
import { IDAttachable, Attachable, SingleEvent, Sequence, SingleNotifier, Notifier, Reducer, Variable, Action } from 'actions-lib';
|
|
3
|
+
import { Vector, Radian, Rectangle, Vec2, RGBColor, TypeValuePair, Grid, GridNeighborType, Line } from 'helpers-lib';
|
|
4
4
|
import * as Pixi from 'pixi.js';
|
|
5
5
|
|
|
6
6
|
declare class ControllerLink {
|
|
@@ -26,9 +26,17 @@ declare abstract class Entity extends IDAttachable {
|
|
|
26
26
|
attachToRoot(): this;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
type SingletonEntityClassType<T extends SingletonEntity = SingletonEntity> = (new (...args: any[]) => T) & {
|
|
30
|
+
id: number;
|
|
31
|
+
};
|
|
29
32
|
declare abstract class SingletonEntity extends Entity {
|
|
30
|
-
static
|
|
31
|
-
static
|
|
33
|
+
static getInstanceAsync<T extends SingletonEntity>(this: SingletonEntityClassType<T>): SingleEvent<T>;
|
|
34
|
+
static continuesSubscription<T extends SingletonEntity>(this: SingletonEntityClassType<T>): Sequence<{
|
|
35
|
+
type: 'open' | 'close';
|
|
36
|
+
value: T;
|
|
37
|
+
}>;
|
|
38
|
+
static getInstance<T extends SingletonEntity>(this: SingletonEntityClassType<T>): T | undefined;
|
|
39
|
+
static getInstanceOrFail<T extends SingletonEntity>(this: SingletonEntityClassType<T>): T;
|
|
32
40
|
constructor();
|
|
33
41
|
}
|
|
34
42
|
|
|
@@ -225,8 +233,8 @@ interface SpriteDefinition {
|
|
|
225
233
|
readonly scale: number;
|
|
226
234
|
readonly anchor: Vec2;
|
|
227
235
|
readonly size: Vec2;
|
|
228
|
-
readonly boundingShapes?: PolygonDefinition;
|
|
229
|
-
readonly destroyAssetOnDestroy?: boolean;
|
|
236
|
+
readonly boundingShapes?: PolygonDefinition | undefined;
|
|
237
|
+
readonly destroyAssetOnDestroy?: boolean | undefined;
|
|
230
238
|
}
|
|
231
239
|
interface GlowingShapeDefinition {
|
|
232
240
|
readonly color: RGBColor;
|
|
@@ -415,41 +423,51 @@ declare class DisplayObjectArray<T> extends Container {
|
|
|
415
423
|
* Updates the display objects. Removes the deleted ones, updates the existing ones with their "trackBy" key, creates the new ones.
|
|
416
424
|
* @param items new items list
|
|
417
425
|
*/
|
|
418
|
-
set(items: T[]): void;
|
|
426
|
+
set(items: readonly T[]): void;
|
|
419
427
|
}
|
|
420
428
|
|
|
429
|
+
type MenuUINewMenuOpenBehavior = 'close' | 'temporarilyDisappear' | 'stayInBackground';
|
|
430
|
+
type MenuCloseReason<OutputType = undefined> = TypeValuePair<{
|
|
431
|
+
backgroundClick: undefined;
|
|
432
|
+
newMenuOpened: undefined;
|
|
433
|
+
withValue: OutputType;
|
|
434
|
+
}>;
|
|
421
435
|
interface MenuOptions {
|
|
436
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
422
437
|
readonly closeOnBackgroundClick: boolean;
|
|
423
438
|
readonly appearAnimationDuration: number;
|
|
424
|
-
readonly
|
|
439
|
+
readonly backgroundDarkeningRatio: number;
|
|
425
440
|
}
|
|
426
|
-
declare class
|
|
427
|
-
|
|
441
|
+
declare class MenuUI<OutputType = undefined> extends Container {
|
|
442
|
+
readonly onCreate: actions_lib.SingleNotifier<void>;
|
|
428
443
|
readonly onOpen: actions_lib.SingleNotifier<void>;
|
|
429
|
-
readonly onClose: actions_lib.SingleNotifier<
|
|
430
|
-
constructor(
|
|
444
|
+
readonly onClose: actions_lib.SingleNotifier<MenuCloseReason<OutputType>>;
|
|
445
|
+
constructor(windowSprite: string, partialOptions: Partial<MenuOptions>);
|
|
431
446
|
getBoundingMask(): Sprite;
|
|
432
|
-
close(): SingleEvent
|
|
447
|
+
close(output: MenuCloseReason<OutputType>): SingleEvent<MenuCloseReason<OutputType>>;
|
|
433
448
|
}
|
|
434
449
|
|
|
435
|
-
interface
|
|
436
|
-
readonly
|
|
437
|
-
readonly
|
|
450
|
+
interface MenuEntityOptions {
|
|
451
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
452
|
+
readonly closeOnBackgroundClick: boolean;
|
|
438
453
|
}
|
|
439
|
-
declare class MenuEntity extends SingletonEntity {
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
close(): SingleEvent;
|
|
454
|
+
declare class MenuEntity<OutputType = undefined> extends SingletonEntity {
|
|
455
|
+
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
456
|
+
onCreate(): SingleEvent;
|
|
457
|
+
onOpen(): SingleEvent;
|
|
458
|
+
onClose(): SingleEvent<MenuCloseReason<OutputType>>;
|
|
459
|
+
close(...args: undefined extends OutputType ? (OutputType extends undefined ? [] : [OutputType]) : [OutputType]): SingleEvent<MenuCloseReason<OutputType>>;
|
|
446
460
|
}
|
|
447
461
|
|
|
448
|
-
|
|
449
|
-
readonly
|
|
450
|
-
readonly
|
|
451
|
-
|
|
452
|
-
|
|
462
|
+
interface MenuViewOptions {
|
|
463
|
+
readonly appearAnimationDuration: number;
|
|
464
|
+
readonly backgroundDarkeningRatio: number;
|
|
465
|
+
}
|
|
466
|
+
declare class MenuView<OutputType = void> extends View {
|
|
467
|
+
readonly onCreate: SingleNotifier<Container>;
|
|
468
|
+
readonly onOpen: SingleNotifier;
|
|
469
|
+
readonly onClose: SingleNotifier<MenuCloseReason<OutputType>>;
|
|
470
|
+
constructor(entity: MenuEntity<OutputType>, windowSprite: string, partialOptions: Partial<MenuViewOptions>);
|
|
453
471
|
}
|
|
454
472
|
|
|
455
473
|
interface ScrollAreaUIOptions {
|
|
@@ -723,10 +741,10 @@ declare class Camera {
|
|
|
723
741
|
}
|
|
724
742
|
|
|
725
743
|
interface GameConfiguration {
|
|
726
|
-
readonly screenResolution
|
|
744
|
+
readonly screenResolution: {
|
|
727
745
|
readonly width: number;
|
|
728
746
|
readonly height: number;
|
|
729
|
-
};
|
|
747
|
+
} | undefined;
|
|
730
748
|
readonly devMode: boolean;
|
|
731
749
|
readonly backgroundColor: RGBColor;
|
|
732
750
|
readonly antialias: boolean;
|
|
@@ -933,9 +951,9 @@ interface PhysicsExplosionOptions {
|
|
|
933
951
|
readonly hitOnlyClosest?: boolean;
|
|
934
952
|
}
|
|
935
953
|
interface HitTestOptions {
|
|
936
|
-
readonly overridePosition
|
|
937
|
-
readonly overrideRotation
|
|
938
|
-
readonly testLayerID
|
|
954
|
+
readonly overridePosition: Vector;
|
|
955
|
+
readonly overrideRotation: Radian;
|
|
956
|
+
readonly testLayerID: number;
|
|
939
957
|
}
|
|
940
958
|
|
|
941
959
|
interface RayCast {
|
|
@@ -970,7 +988,7 @@ declare class PhysicsGateway {
|
|
|
970
988
|
createPhysicsWorld(request: CreatePhysicsWorldRequestDTO): number;
|
|
971
989
|
getMapSize(physicsWorldID: number): MapSizeDTO;
|
|
972
990
|
setPaused(pause: boolean, physicsWorldID: number): void;
|
|
973
|
-
hitTest(physicsEntityID: number, options?: HitTestOptions): boolean;
|
|
991
|
+
hitTest(physicsEntityID: number, options?: Partial<HitTestOptions>): boolean;
|
|
974
992
|
findPath(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup, neighborType: GridNeighborType): PathFinderResult;
|
|
975
993
|
findPathDirection(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup): Radian | undefined;
|
|
976
994
|
applyImpulse(physicsEntityID: number, hitPosition: Vector, hitDirection: Vector, severity: number): void;
|
|
@@ -979,4 +997,4 @@ declare class PhysicsGateway {
|
|
|
979
997
|
printPathfindingTestGrid(physicsWorldID: number, testLayerID: number, target: Vector | number, physicsBodyGroup: PhysicsBodyGroup, area: Rectangle, gridCellSize?: number): void;
|
|
980
998
|
}
|
|
981
999
|
|
|
982
|
-
export { AnimationFlicker, AnimationInterpolationFunctions, type AnimationOptions, Animations, AnimationsCompletionHandlingType, Animator, type AnimatorAnimation, type AssetDefinition, BORDER_MATERIAL_NAME, BardLegendsHardReset, BlendMode, type BorderProperties, Camera, CameraGateway, type CircleShapeData, ClosestAvailableSpaceHelper, type CollisionDetails, type CollisionReport, Container, ContainerEventType, ControllerDecorator, type ControllerDecoratorMeta, ControllerLink, type CreateDashedLineOptions, type CreatePhysicsWorldRequestDTO, Cursor, DEFAULT_SHADER_RESOLUTION, DeltaTime, DisplayObjectArray, type DisplayObjectArrayOptions, type DropShadowOptions, Entity, EntityDecorator, type ExplosionHit, FadeInContent, type FadeInContentOptions, FadeInStateAnimation, FocusingAnimation, Game, type GlowEffectOptions, type GlowOptions, type GlowingShapeDefinition, Graphics, type HitTestOptions, ImmovablePhysicsEntity, type InteractingBodyGroups, KeyboardService, type MapSizeDTO, type MaterialContactDefinition, type MaterialDefinition,
|
|
1000
|
+
export { AnimationFlicker, AnimationInterpolationFunctions, type AnimationOptions, Animations, AnimationsCompletionHandlingType, Animator, type AnimatorAnimation, type AssetDefinition, BORDER_MATERIAL_NAME, BardLegendsHardReset, BlendMode, type BorderProperties, Camera, CameraGateway, type CircleShapeData, ClosestAvailableSpaceHelper, type CollisionDetails, type CollisionReport, Container, ContainerEventType, ControllerDecorator, type ControllerDecoratorMeta, ControllerLink, type CreateDashedLineOptions, type CreatePhysicsWorldRequestDTO, Cursor, DEFAULT_SHADER_RESOLUTION, DeltaTime, DisplayObjectArray, type DisplayObjectArrayOptions, type DropShadowOptions, Entity, EntityDecorator, type ExplosionHit, FadeInContent, type FadeInContentOptions, FadeInStateAnimation, FocusingAnimation, Game, type GlowEffectOptions, type GlowOptions, type GlowingShapeDefinition, Graphics, type HitTestOptions, ImmovablePhysicsEntity, type InteractingBodyGroups, KeyboardService, type MapSizeDTO, type MaterialContactDefinition, type MaterialDefinition, type MenuCloseReason, MenuEntity, type MenuOptions, MenuUI, type MenuUINewMenuOpenBehavior, MenuView, MouseService, MouseTargetFocusService, MovableEntity, MovablePhysicsEntity, type PartialTextOptions, PathFinder, type PathFinderResult, type PhysicsBodyDTO, PhysicsEntity, type PhysicsEntityDefinition, type PhysicsExplosionOptions, PhysicsGateway, PhysicsShapeType, Placeholder, type PolygonDefinition, type PolygonShapeData, PositionConversionHelper, ROTATIONAL_SPEED_LIMIT, type RayCast, type RayCastHit, ReAnimateHandlingType, type RectangleShapeData, RichText, type RichTextOptions, type RichTextRectangleCut, type RichTextStyles, SPEED_LIMIT, Scene, SceneDecorator, ScrollAreaUI, ScrollDirection, type ScrollInContentOptions, ScrollMaskUI, Service, ServiceDecorator, type SetParentOptions, type ShapeDefinition, SingletonEntity, SlideInContent, SlideInContentByIndex, SlideStateAnimation, SlideStateAnimationState, Sprite, type SpriteDefinition, StateAnimation, type StateAnimationOptions, Text, type TextAlignment, type TextOptions, UpdatableContainer, UpdateCycle, VectorFieldPathFinder, VectorSet, View, ViewDecorator, type ViewDecoratorMeta };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as actions_lib from 'actions-lib';
|
|
2
|
-
import { IDAttachable, Attachable, SingleEvent, Sequence,
|
|
3
|
-
import { Vector, Radian, Rectangle, Vec2, RGBColor, Grid, GridNeighborType, Line } from 'helpers-lib';
|
|
2
|
+
import { IDAttachable, Attachable, SingleEvent, Sequence, SingleNotifier, Notifier, Reducer, Variable, Action } from 'actions-lib';
|
|
3
|
+
import { Vector, Radian, Rectangle, Vec2, RGBColor, TypeValuePair, Grid, GridNeighborType, Line } from 'helpers-lib';
|
|
4
4
|
import * as Pixi from 'pixi.js';
|
|
5
5
|
|
|
6
6
|
declare class ControllerLink {
|
|
@@ -26,9 +26,17 @@ declare abstract class Entity extends IDAttachable {
|
|
|
26
26
|
attachToRoot(): this;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
type SingletonEntityClassType<T extends SingletonEntity = SingletonEntity> = (new (...args: any[]) => T) & {
|
|
30
|
+
id: number;
|
|
31
|
+
};
|
|
29
32
|
declare abstract class SingletonEntity extends Entity {
|
|
30
|
-
static
|
|
31
|
-
static
|
|
33
|
+
static getInstanceAsync<T extends SingletonEntity>(this: SingletonEntityClassType<T>): SingleEvent<T>;
|
|
34
|
+
static continuesSubscription<T extends SingletonEntity>(this: SingletonEntityClassType<T>): Sequence<{
|
|
35
|
+
type: 'open' | 'close';
|
|
36
|
+
value: T;
|
|
37
|
+
}>;
|
|
38
|
+
static getInstance<T extends SingletonEntity>(this: SingletonEntityClassType<T>): T | undefined;
|
|
39
|
+
static getInstanceOrFail<T extends SingletonEntity>(this: SingletonEntityClassType<T>): T;
|
|
32
40
|
constructor();
|
|
33
41
|
}
|
|
34
42
|
|
|
@@ -225,8 +233,8 @@ interface SpriteDefinition {
|
|
|
225
233
|
readonly scale: number;
|
|
226
234
|
readonly anchor: Vec2;
|
|
227
235
|
readonly size: Vec2;
|
|
228
|
-
readonly boundingShapes?: PolygonDefinition;
|
|
229
|
-
readonly destroyAssetOnDestroy?: boolean;
|
|
236
|
+
readonly boundingShapes?: PolygonDefinition | undefined;
|
|
237
|
+
readonly destroyAssetOnDestroy?: boolean | undefined;
|
|
230
238
|
}
|
|
231
239
|
interface GlowingShapeDefinition {
|
|
232
240
|
readonly color: RGBColor;
|
|
@@ -415,41 +423,51 @@ declare class DisplayObjectArray<T> extends Container {
|
|
|
415
423
|
* Updates the display objects. Removes the deleted ones, updates the existing ones with their "trackBy" key, creates the new ones.
|
|
416
424
|
* @param items new items list
|
|
417
425
|
*/
|
|
418
|
-
set(items: T[]): void;
|
|
426
|
+
set(items: readonly T[]): void;
|
|
419
427
|
}
|
|
420
428
|
|
|
429
|
+
type MenuUINewMenuOpenBehavior = 'close' | 'temporarilyDisappear' | 'stayInBackground';
|
|
430
|
+
type MenuCloseReason<OutputType = undefined> = TypeValuePair<{
|
|
431
|
+
backgroundClick: undefined;
|
|
432
|
+
newMenuOpened: undefined;
|
|
433
|
+
withValue: OutputType;
|
|
434
|
+
}>;
|
|
421
435
|
interface MenuOptions {
|
|
436
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
422
437
|
readonly closeOnBackgroundClick: boolean;
|
|
423
438
|
readonly appearAnimationDuration: number;
|
|
424
|
-
readonly
|
|
439
|
+
readonly backgroundDarkeningRatio: number;
|
|
425
440
|
}
|
|
426
|
-
declare class
|
|
427
|
-
|
|
441
|
+
declare class MenuUI<OutputType = undefined> extends Container {
|
|
442
|
+
readonly onCreate: actions_lib.SingleNotifier<void>;
|
|
428
443
|
readonly onOpen: actions_lib.SingleNotifier<void>;
|
|
429
|
-
readonly onClose: actions_lib.SingleNotifier<
|
|
430
|
-
constructor(
|
|
444
|
+
readonly onClose: actions_lib.SingleNotifier<MenuCloseReason<OutputType>>;
|
|
445
|
+
constructor(windowSprite: string, partialOptions: Partial<MenuOptions>);
|
|
431
446
|
getBoundingMask(): Sprite;
|
|
432
|
-
close(): SingleEvent
|
|
447
|
+
close(output: MenuCloseReason<OutputType>): SingleEvent<MenuCloseReason<OutputType>>;
|
|
433
448
|
}
|
|
434
449
|
|
|
435
|
-
interface
|
|
436
|
-
readonly
|
|
437
|
-
readonly
|
|
450
|
+
interface MenuEntityOptions {
|
|
451
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
452
|
+
readonly closeOnBackgroundClick: boolean;
|
|
438
453
|
}
|
|
439
|
-
declare class MenuEntity extends SingletonEntity {
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
close(): SingleEvent;
|
|
454
|
+
declare class MenuEntity<OutputType = undefined> extends SingletonEntity {
|
|
455
|
+
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
456
|
+
onCreate(): SingleEvent;
|
|
457
|
+
onOpen(): SingleEvent;
|
|
458
|
+
onClose(): SingleEvent<MenuCloseReason<OutputType>>;
|
|
459
|
+
close(...args: undefined extends OutputType ? (OutputType extends undefined ? [] : [OutputType]) : [OutputType]): SingleEvent<MenuCloseReason<OutputType>>;
|
|
446
460
|
}
|
|
447
461
|
|
|
448
|
-
|
|
449
|
-
readonly
|
|
450
|
-
readonly
|
|
451
|
-
|
|
452
|
-
|
|
462
|
+
interface MenuViewOptions {
|
|
463
|
+
readonly appearAnimationDuration: number;
|
|
464
|
+
readonly backgroundDarkeningRatio: number;
|
|
465
|
+
}
|
|
466
|
+
declare class MenuView<OutputType = void> extends View {
|
|
467
|
+
readonly onCreate: SingleNotifier<Container>;
|
|
468
|
+
readonly onOpen: SingleNotifier;
|
|
469
|
+
readonly onClose: SingleNotifier<MenuCloseReason<OutputType>>;
|
|
470
|
+
constructor(entity: MenuEntity<OutputType>, windowSprite: string, partialOptions: Partial<MenuViewOptions>);
|
|
453
471
|
}
|
|
454
472
|
|
|
455
473
|
interface ScrollAreaUIOptions {
|
|
@@ -723,10 +741,10 @@ declare class Camera {
|
|
|
723
741
|
}
|
|
724
742
|
|
|
725
743
|
interface GameConfiguration {
|
|
726
|
-
readonly screenResolution
|
|
744
|
+
readonly screenResolution: {
|
|
727
745
|
readonly width: number;
|
|
728
746
|
readonly height: number;
|
|
729
|
-
};
|
|
747
|
+
} | undefined;
|
|
730
748
|
readonly devMode: boolean;
|
|
731
749
|
readonly backgroundColor: RGBColor;
|
|
732
750
|
readonly antialias: boolean;
|
|
@@ -933,9 +951,9 @@ interface PhysicsExplosionOptions {
|
|
|
933
951
|
readonly hitOnlyClosest?: boolean;
|
|
934
952
|
}
|
|
935
953
|
interface HitTestOptions {
|
|
936
|
-
readonly overridePosition
|
|
937
|
-
readonly overrideRotation
|
|
938
|
-
readonly testLayerID
|
|
954
|
+
readonly overridePosition: Vector;
|
|
955
|
+
readonly overrideRotation: Radian;
|
|
956
|
+
readonly testLayerID: number;
|
|
939
957
|
}
|
|
940
958
|
|
|
941
959
|
interface RayCast {
|
|
@@ -970,7 +988,7 @@ declare class PhysicsGateway {
|
|
|
970
988
|
createPhysicsWorld(request: CreatePhysicsWorldRequestDTO): number;
|
|
971
989
|
getMapSize(physicsWorldID: number): MapSizeDTO;
|
|
972
990
|
setPaused(pause: boolean, physicsWorldID: number): void;
|
|
973
|
-
hitTest(physicsEntityID: number, options?: HitTestOptions): boolean;
|
|
991
|
+
hitTest(physicsEntityID: number, options?: Partial<HitTestOptions>): boolean;
|
|
974
992
|
findPath(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup, neighborType: GridNeighborType): PathFinderResult;
|
|
975
993
|
findPathDirection(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup): Radian | undefined;
|
|
976
994
|
applyImpulse(physicsEntityID: number, hitPosition: Vector, hitDirection: Vector, severity: number): void;
|
|
@@ -979,4 +997,4 @@ declare class PhysicsGateway {
|
|
|
979
997
|
printPathfindingTestGrid(physicsWorldID: number, testLayerID: number, target: Vector | number, physicsBodyGroup: PhysicsBodyGroup, area: Rectangle, gridCellSize?: number): void;
|
|
980
998
|
}
|
|
981
999
|
|
|
982
|
-
export { AnimationFlicker, AnimationInterpolationFunctions, type AnimationOptions, Animations, AnimationsCompletionHandlingType, Animator, type AnimatorAnimation, type AssetDefinition, BORDER_MATERIAL_NAME, BardLegendsHardReset, BlendMode, type BorderProperties, Camera, CameraGateway, type CircleShapeData, ClosestAvailableSpaceHelper, type CollisionDetails, type CollisionReport, Container, ContainerEventType, ControllerDecorator, type ControllerDecoratorMeta, ControllerLink, type CreateDashedLineOptions, type CreatePhysicsWorldRequestDTO, Cursor, DEFAULT_SHADER_RESOLUTION, DeltaTime, DisplayObjectArray, type DisplayObjectArrayOptions, type DropShadowOptions, Entity, EntityDecorator, type ExplosionHit, FadeInContent, type FadeInContentOptions, FadeInStateAnimation, FocusingAnimation, Game, type GlowEffectOptions, type GlowOptions, type GlowingShapeDefinition, Graphics, type HitTestOptions, ImmovablePhysicsEntity, type InteractingBodyGroups, KeyboardService, type MapSizeDTO, type MaterialContactDefinition, type MaterialDefinition,
|
|
1000
|
+
export { AnimationFlicker, AnimationInterpolationFunctions, type AnimationOptions, Animations, AnimationsCompletionHandlingType, Animator, type AnimatorAnimation, type AssetDefinition, BORDER_MATERIAL_NAME, BardLegendsHardReset, BlendMode, type BorderProperties, Camera, CameraGateway, type CircleShapeData, ClosestAvailableSpaceHelper, type CollisionDetails, type CollisionReport, Container, ContainerEventType, ControllerDecorator, type ControllerDecoratorMeta, ControllerLink, type CreateDashedLineOptions, type CreatePhysicsWorldRequestDTO, Cursor, DEFAULT_SHADER_RESOLUTION, DeltaTime, DisplayObjectArray, type DisplayObjectArrayOptions, type DropShadowOptions, Entity, EntityDecorator, type ExplosionHit, FadeInContent, type FadeInContentOptions, FadeInStateAnimation, FocusingAnimation, Game, type GlowEffectOptions, type GlowOptions, type GlowingShapeDefinition, Graphics, type HitTestOptions, ImmovablePhysicsEntity, type InteractingBodyGroups, KeyboardService, type MapSizeDTO, type MaterialContactDefinition, type MaterialDefinition, type MenuCloseReason, MenuEntity, type MenuOptions, MenuUI, type MenuUINewMenuOpenBehavior, MenuView, MouseService, MouseTargetFocusService, MovableEntity, MovablePhysicsEntity, type PartialTextOptions, PathFinder, type PathFinderResult, type PhysicsBodyDTO, PhysicsEntity, type PhysicsEntityDefinition, type PhysicsExplosionOptions, PhysicsGateway, PhysicsShapeType, Placeholder, type PolygonDefinition, type PolygonShapeData, PositionConversionHelper, ROTATIONAL_SPEED_LIMIT, type RayCast, type RayCastHit, ReAnimateHandlingType, type RectangleShapeData, RichText, type RichTextOptions, type RichTextRectangleCut, type RichTextStyles, SPEED_LIMIT, Scene, SceneDecorator, ScrollAreaUI, ScrollDirection, type ScrollInContentOptions, ScrollMaskUI, Service, ServiceDecorator, type SetParentOptions, type ShapeDefinition, SingletonEntity, SlideInContent, SlideInContentByIndex, SlideStateAnimation, SlideStateAnimationState, Sprite, type SpriteDefinition, StateAnimation, type StateAnimationOptions, Text, type TextAlignment, type TextOptions, UpdatableContainer, UpdateCycle, VectorFieldPathFinder, VectorSet, View, ViewDecorator, type ViewDecoratorMeta };
|