bard-legends-framework 1.2.0 → 1.3.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/index.d.mts +43 -33
- package/dist/index.d.ts +43 -33
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +10 -11
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 {
|
|
@@ -225,8 +225,8 @@ interface SpriteDefinition {
|
|
|
225
225
|
readonly scale: number;
|
|
226
226
|
readonly anchor: Vec2;
|
|
227
227
|
readonly size: Vec2;
|
|
228
|
-
readonly boundingShapes?: PolygonDefinition;
|
|
229
|
-
readonly destroyAssetOnDestroy?: boolean;
|
|
228
|
+
readonly boundingShapes?: PolygonDefinition | undefined;
|
|
229
|
+
readonly destroyAssetOnDestroy?: boolean | undefined;
|
|
230
230
|
}
|
|
231
231
|
interface GlowingShapeDefinition {
|
|
232
232
|
readonly color: RGBColor;
|
|
@@ -415,41 +415,51 @@ declare class DisplayObjectArray<T> extends Container {
|
|
|
415
415
|
* Updates the display objects. Removes the deleted ones, updates the existing ones with their "trackBy" key, creates the new ones.
|
|
416
416
|
* @param items new items list
|
|
417
417
|
*/
|
|
418
|
-
set(items: T[]): void;
|
|
418
|
+
set(items: readonly T[]): void;
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
+
type MenuUINewMenuOpenBehavior = 'close' | 'temporarilyDisappear' | 'stayInBackground';
|
|
422
|
+
type MenuCloseReason<OutputType = undefined> = TypeValuePair<{
|
|
423
|
+
backgroundClick: undefined;
|
|
424
|
+
newMenuOpened: undefined;
|
|
425
|
+
withValue: OutputType;
|
|
426
|
+
}>;
|
|
421
427
|
interface MenuOptions {
|
|
428
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
422
429
|
readonly closeOnBackgroundClick: boolean;
|
|
423
430
|
readonly appearAnimationDuration: number;
|
|
424
|
-
readonly
|
|
431
|
+
readonly backgroundDarkeningRatio: number;
|
|
425
432
|
}
|
|
426
|
-
declare class
|
|
427
|
-
|
|
433
|
+
declare class MenuUI<OutputType = undefined> extends Container {
|
|
434
|
+
readonly onCreate: actions_lib.SingleNotifier<void>;
|
|
428
435
|
readonly onOpen: actions_lib.SingleNotifier<void>;
|
|
429
|
-
readonly onClose: actions_lib.SingleNotifier<
|
|
430
|
-
constructor(
|
|
436
|
+
readonly onClose: actions_lib.SingleNotifier<MenuCloseReason<OutputType>>;
|
|
437
|
+
constructor(windowSprite: string, partialOptions: Partial<MenuOptions>);
|
|
431
438
|
getBoundingMask(): Sprite;
|
|
432
|
-
close(): SingleEvent
|
|
439
|
+
close(output: MenuCloseReason<OutputType>): SingleEvent<MenuCloseReason<OutputType>>;
|
|
433
440
|
}
|
|
434
441
|
|
|
435
|
-
interface
|
|
436
|
-
readonly
|
|
437
|
-
readonly
|
|
442
|
+
interface MenuEntityOptions {
|
|
443
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
444
|
+
readonly closeOnBackgroundClick: boolean;
|
|
438
445
|
}
|
|
439
|
-
declare class MenuEntity extends SingletonEntity {
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
close(): SingleEvent;
|
|
446
|
+
declare class MenuEntity<OutputType = undefined> extends SingletonEntity {
|
|
447
|
+
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
448
|
+
onCreate(): SingleEvent;
|
|
449
|
+
onOpen(): SingleEvent;
|
|
450
|
+
onClose(): SingleEvent<MenuCloseReason<OutputType>>;
|
|
451
|
+
close(...args: undefined extends OutputType ? (OutputType extends undefined ? [] : [OutputType]) : [OutputType]): SingleEvent<MenuCloseReason<OutputType>>;
|
|
446
452
|
}
|
|
447
453
|
|
|
448
|
-
|
|
449
|
-
readonly
|
|
450
|
-
readonly
|
|
451
|
-
|
|
452
|
-
|
|
454
|
+
interface MenuViewOptions {
|
|
455
|
+
readonly appearAnimationDuration: number;
|
|
456
|
+
readonly backgroundDarkeningRatio: number;
|
|
457
|
+
}
|
|
458
|
+
declare class MenuView<OutputType = void> extends View {
|
|
459
|
+
readonly onCreate: SingleNotifier<Container>;
|
|
460
|
+
readonly onOpen: SingleNotifier;
|
|
461
|
+
readonly onClose: SingleNotifier<MenuCloseReason<OutputType>>;
|
|
462
|
+
constructor(entity: MenuEntity<OutputType>, windowSprite: string, partialOptions: Partial<MenuViewOptions>);
|
|
453
463
|
}
|
|
454
464
|
|
|
455
465
|
interface ScrollAreaUIOptions {
|
|
@@ -723,10 +733,10 @@ declare class Camera {
|
|
|
723
733
|
}
|
|
724
734
|
|
|
725
735
|
interface GameConfiguration {
|
|
726
|
-
readonly screenResolution
|
|
736
|
+
readonly screenResolution: {
|
|
727
737
|
readonly width: number;
|
|
728
738
|
readonly height: number;
|
|
729
|
-
};
|
|
739
|
+
} | undefined;
|
|
730
740
|
readonly devMode: boolean;
|
|
731
741
|
readonly backgroundColor: RGBColor;
|
|
732
742
|
readonly antialias: boolean;
|
|
@@ -933,9 +943,9 @@ interface PhysicsExplosionOptions {
|
|
|
933
943
|
readonly hitOnlyClosest?: boolean;
|
|
934
944
|
}
|
|
935
945
|
interface HitTestOptions {
|
|
936
|
-
readonly overridePosition
|
|
937
|
-
readonly overrideRotation
|
|
938
|
-
readonly testLayerID
|
|
946
|
+
readonly overridePosition: Vector;
|
|
947
|
+
readonly overrideRotation: Radian;
|
|
948
|
+
readonly testLayerID: number;
|
|
939
949
|
}
|
|
940
950
|
|
|
941
951
|
interface RayCast {
|
|
@@ -970,7 +980,7 @@ declare class PhysicsGateway {
|
|
|
970
980
|
createPhysicsWorld(request: CreatePhysicsWorldRequestDTO): number;
|
|
971
981
|
getMapSize(physicsWorldID: number): MapSizeDTO;
|
|
972
982
|
setPaused(pause: boolean, physicsWorldID: number): void;
|
|
973
|
-
hitTest(physicsEntityID: number, options?: HitTestOptions): boolean;
|
|
983
|
+
hitTest(physicsEntityID: number, options?: Partial<HitTestOptions>): boolean;
|
|
974
984
|
findPath(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup, neighborType: GridNeighborType): PathFinderResult;
|
|
975
985
|
findPathDirection(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup): Radian | undefined;
|
|
976
986
|
applyImpulse(physicsEntityID: number, hitPosition: Vector, hitDirection: Vector, severity: number): void;
|
|
@@ -979,4 +989,4 @@ declare class PhysicsGateway {
|
|
|
979
989
|
printPathfindingTestGrid(physicsWorldID: number, testLayerID: number, target: Vector | number, physicsBodyGroup: PhysicsBodyGroup, area: Rectangle, gridCellSize?: number): void;
|
|
980
990
|
}
|
|
981
991
|
|
|
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,
|
|
992
|
+
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 {
|
|
@@ -225,8 +225,8 @@ interface SpriteDefinition {
|
|
|
225
225
|
readonly scale: number;
|
|
226
226
|
readonly anchor: Vec2;
|
|
227
227
|
readonly size: Vec2;
|
|
228
|
-
readonly boundingShapes?: PolygonDefinition;
|
|
229
|
-
readonly destroyAssetOnDestroy?: boolean;
|
|
228
|
+
readonly boundingShapes?: PolygonDefinition | undefined;
|
|
229
|
+
readonly destroyAssetOnDestroy?: boolean | undefined;
|
|
230
230
|
}
|
|
231
231
|
interface GlowingShapeDefinition {
|
|
232
232
|
readonly color: RGBColor;
|
|
@@ -415,41 +415,51 @@ declare class DisplayObjectArray<T> extends Container {
|
|
|
415
415
|
* Updates the display objects. Removes the deleted ones, updates the existing ones with their "trackBy" key, creates the new ones.
|
|
416
416
|
* @param items new items list
|
|
417
417
|
*/
|
|
418
|
-
set(items: T[]): void;
|
|
418
|
+
set(items: readonly T[]): void;
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
+
type MenuUINewMenuOpenBehavior = 'close' | 'temporarilyDisappear' | 'stayInBackground';
|
|
422
|
+
type MenuCloseReason<OutputType = undefined> = TypeValuePair<{
|
|
423
|
+
backgroundClick: undefined;
|
|
424
|
+
newMenuOpened: undefined;
|
|
425
|
+
withValue: OutputType;
|
|
426
|
+
}>;
|
|
421
427
|
interface MenuOptions {
|
|
428
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
422
429
|
readonly closeOnBackgroundClick: boolean;
|
|
423
430
|
readonly appearAnimationDuration: number;
|
|
424
|
-
readonly
|
|
431
|
+
readonly backgroundDarkeningRatio: number;
|
|
425
432
|
}
|
|
426
|
-
declare class
|
|
427
|
-
|
|
433
|
+
declare class MenuUI<OutputType = undefined> extends Container {
|
|
434
|
+
readonly onCreate: actions_lib.SingleNotifier<void>;
|
|
428
435
|
readonly onOpen: actions_lib.SingleNotifier<void>;
|
|
429
|
-
readonly onClose: actions_lib.SingleNotifier<
|
|
430
|
-
constructor(
|
|
436
|
+
readonly onClose: actions_lib.SingleNotifier<MenuCloseReason<OutputType>>;
|
|
437
|
+
constructor(windowSprite: string, partialOptions: Partial<MenuOptions>);
|
|
431
438
|
getBoundingMask(): Sprite;
|
|
432
|
-
close(): SingleEvent
|
|
439
|
+
close(output: MenuCloseReason<OutputType>): SingleEvent<MenuCloseReason<OutputType>>;
|
|
433
440
|
}
|
|
434
441
|
|
|
435
|
-
interface
|
|
436
|
-
readonly
|
|
437
|
-
readonly
|
|
442
|
+
interface MenuEntityOptions {
|
|
443
|
+
readonly onNewMenuOpen: MenuUINewMenuOpenBehavior;
|
|
444
|
+
readonly closeOnBackgroundClick: boolean;
|
|
438
445
|
}
|
|
439
|
-
declare class MenuEntity extends SingletonEntity {
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
close(): SingleEvent;
|
|
446
|
+
declare class MenuEntity<OutputType = undefined> extends SingletonEntity {
|
|
447
|
+
constructor(partialOptions: Partial<MenuEntityOptions>);
|
|
448
|
+
onCreate(): SingleEvent;
|
|
449
|
+
onOpen(): SingleEvent;
|
|
450
|
+
onClose(): SingleEvent<MenuCloseReason<OutputType>>;
|
|
451
|
+
close(...args: undefined extends OutputType ? (OutputType extends undefined ? [] : [OutputType]) : [OutputType]): SingleEvent<MenuCloseReason<OutputType>>;
|
|
446
452
|
}
|
|
447
453
|
|
|
448
|
-
|
|
449
|
-
readonly
|
|
450
|
-
readonly
|
|
451
|
-
|
|
452
|
-
|
|
454
|
+
interface MenuViewOptions {
|
|
455
|
+
readonly appearAnimationDuration: number;
|
|
456
|
+
readonly backgroundDarkeningRatio: number;
|
|
457
|
+
}
|
|
458
|
+
declare class MenuView<OutputType = void> extends View {
|
|
459
|
+
readonly onCreate: SingleNotifier<Container>;
|
|
460
|
+
readonly onOpen: SingleNotifier;
|
|
461
|
+
readonly onClose: SingleNotifier<MenuCloseReason<OutputType>>;
|
|
462
|
+
constructor(entity: MenuEntity<OutputType>, windowSprite: string, partialOptions: Partial<MenuViewOptions>);
|
|
453
463
|
}
|
|
454
464
|
|
|
455
465
|
interface ScrollAreaUIOptions {
|
|
@@ -723,10 +733,10 @@ declare class Camera {
|
|
|
723
733
|
}
|
|
724
734
|
|
|
725
735
|
interface GameConfiguration {
|
|
726
|
-
readonly screenResolution
|
|
736
|
+
readonly screenResolution: {
|
|
727
737
|
readonly width: number;
|
|
728
738
|
readonly height: number;
|
|
729
|
-
};
|
|
739
|
+
} | undefined;
|
|
730
740
|
readonly devMode: boolean;
|
|
731
741
|
readonly backgroundColor: RGBColor;
|
|
732
742
|
readonly antialias: boolean;
|
|
@@ -933,9 +943,9 @@ interface PhysicsExplosionOptions {
|
|
|
933
943
|
readonly hitOnlyClosest?: boolean;
|
|
934
944
|
}
|
|
935
945
|
interface HitTestOptions {
|
|
936
|
-
readonly overridePosition
|
|
937
|
-
readonly overrideRotation
|
|
938
|
-
readonly testLayerID
|
|
946
|
+
readonly overridePosition: Vector;
|
|
947
|
+
readonly overrideRotation: Radian;
|
|
948
|
+
readonly testLayerID: number;
|
|
939
949
|
}
|
|
940
950
|
|
|
941
951
|
interface RayCast {
|
|
@@ -970,7 +980,7 @@ declare class PhysicsGateway {
|
|
|
970
980
|
createPhysicsWorld(request: CreatePhysicsWorldRequestDTO): number;
|
|
971
981
|
getMapSize(physicsWorldID: number): MapSizeDTO;
|
|
972
982
|
setPaused(pause: boolean, physicsWorldID: number): void;
|
|
973
|
-
hitTest(physicsEntityID: number, options?: HitTestOptions): boolean;
|
|
983
|
+
hitTest(physicsEntityID: number, options?: Partial<HitTestOptions>): boolean;
|
|
974
984
|
findPath(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup, neighborType: GridNeighborType): PathFinderResult;
|
|
975
985
|
findPathDirection(physicsWorldID: number, startingPosition: Vector, target: Vector | number, collidableWithGroup: PhysicsBodyGroup): Radian | undefined;
|
|
976
986
|
applyImpulse(physicsEntityID: number, hitPosition: Vector, hitDirection: Vector, severity: number): void;
|
|
@@ -979,4 +989,4 @@ declare class PhysicsGateway {
|
|
|
979
989
|
printPathfindingTestGrid(physicsWorldID: number, testLayerID: number, target: Vector | number, physicsBodyGroup: PhysicsBodyGroup, area: Rectangle, gridCellSize?: number): void;
|
|
980
990
|
}
|
|
981
991
|
|
|
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,
|
|
992
|
+
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 };
|