chore: bump pathfinding and world-streaming to 1.1.0 (#378)
This commit is contained in:
@@ -1,11 +0,0 @@
|
|||||||
---
|
|
||||||
"@esengine/world-streaming": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
refactor: move to framework folder and remove engine-core dependency
|
|
||||||
|
|
||||||
- Move from packages/streaming to packages/framework
|
|
||||||
- Replace TransformComponent with IPositionable interface from @esengine/spatial
|
|
||||||
- StreamingAnchorComponent now implements IPositionable with x/y properties
|
|
||||||
- Remove IRuntimeModule dependency, use standalone helper class
|
|
||||||
- Add IWorldStreamingSetupOptions for configuration
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/pathfinding",
|
"name": "@esengine/pathfinding",
|
||||||
"version": "1.0.4",
|
"version": "1.1.0",
|
||||||
"description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh",
|
"description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/world-streaming",
|
"name": "@esengine/world-streaming",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"description": "World streaming and chunk management system for open world games",
|
"description": "World streaming and chunk management system for open world games",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.js",
|
"module": "dist/index.js",
|
||||||
@@ -12,6 +12,10 @@
|
|||||||
"types": "./dist/index.d.ts"
|
"types": "./dist/index.d.ts"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"files": [
|
||||||
|
"dist",
|
||||||
|
"module.json"
|
||||||
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsup",
|
"build": "tsup",
|
||||||
"dev": "tsup --watch"
|
"dev": "tsup --watch"
|
||||||
@@ -34,9 +38,18 @@
|
|||||||
"ecs",
|
"ecs",
|
||||||
"streaming",
|
"streaming",
|
||||||
"chunk",
|
"chunk",
|
||||||
"open-world"
|
"open-world",
|
||||||
|
"esengine"
|
||||||
],
|
],
|
||||||
"author": "ESEngine",
|
"author": "ESEngine",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true
|
"publishConfig": {
|
||||||
|
"access": "public",
|
||||||
|
"registry": "https://registry.npmjs.org/"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/esengine/esengine.git",
|
||||||
|
"directory": "packages/framework/world-streaming"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user