@hology/core 0.0.42 → 0.0.44
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/effects/vfx/vfx-defs.d.ts +2 -2
- package/dist/gameplay/actors/builtin/components/character/character-movement.js +1 -1
- package/dist/gameplay/actors/builtin/index.d.ts +2 -0
- package/dist/gameplay/actors/builtin/index.js +1 -1
- package/dist/gameplay/actors/builtin/navmesh-actor.d.ts +18 -0
- package/dist/gameplay/actors/builtin/navmesh-actor.js +5 -0
- package/dist/gameplay/ai/build-tile.d.ts +50 -0
- package/dist/gameplay/ai/build-tile.js +5 -0
- package/dist/gameplay/ai/dynamic-tiled-navmesh.d.ts +31 -0
- package/dist/gameplay/ai/dynamic-tiled-navmesh.js +5 -0
- package/dist/gameplay/ai/dynamic-tiled-navmesh.worker.d.ts +1 -0
- package/dist/gameplay/ai/dynamic-tiled-navmesh.worker.js +5 -0
- package/dist/gameplay/ai/index.d.ts +1 -0
- package/dist/gameplay/ai/index.js +5 -0
- package/dist/gameplay/ai/navigation.d.ts +19 -0
- package/dist/gameplay/ai/navigation.js +5 -0
- package/dist/gameplay/index.d.ts +1 -0
- package/dist/gameplay/index.js +1 -1
- package/dist/gameplay/services/physics/physics-system.d.ts +1 -0
- package/dist/gameplay/services/physics/physics-system.js +1 -1
- package/dist/scene/landscape/landscape-manager.js +1 -1
- package/dist/scene/materializer.d.ts +1 -0
- package/dist/scene/materializer.js +1 -1
- package/dist/scene/objects/shapes.d.ts +1 -1
- package/package.json +2 -1
- package/tsconfig.tsbuildinfo +1 -1
@@ -145,5 +145,5 @@ declare const shapes: {
|
|
145
145
|
};
|
146
146
|
export type LibraryShapeType = keyof typeof shapes;
|
147
147
|
export declare const ShapeLibrary: Record<LibraryShapeType, ShapeDefinition>;
|
148
|
-
export declare const ShapeLibraryKeys: ("
|
148
|
+
export declare const ShapeLibraryKeys: ("box" | "ramp" | "plane" | "cylinder" | "sphere" | "torus" | "cone" | "circle" | "capsule" | "roundedBox" | "text" | "stairs" | "stairsSpiral")[];
|
149
149
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hology/core",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.44",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"type": "module",
|
@@ -86,6 +86,7 @@
|
|
86
86
|
"@dimforge/rapier3d-compat": "^0.11.2",
|
87
87
|
"@plumier/reflect": "^1.1.0",
|
88
88
|
"@types/three-nebula": "^10.0.3",
|
89
|
+
"recast-navigation": "^0.30.0",
|
89
90
|
"rxjs": "7.8.1",
|
90
91
|
"stats.js": "^0.17.0",
|
91
92
|
"three": "^0.139.0",
|