chore: release packages (#439)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
0d33cf0097
commit
c902dd7291
@@ -1,28 +0,0 @@
|
|||||||
---
|
|
||||||
"@esengine/node-editor": minor
|
|
||||||
"@esengine/blueprint": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
feat(node-editor): add visual group box for organizing nodes
|
|
||||||
|
|
||||||
- Add NodeGroup model with dynamic bounds calculation based on node pin counts
|
|
||||||
- Add GroupNodeComponent for rendering group boxes behind nodes
|
|
||||||
- Groups automatically resize to wrap contained nodes
|
|
||||||
- Dragging group header moves all nodes inside together
|
|
||||||
- Support group serialization/deserialization
|
|
||||||
- Export `estimateNodeHeight` and `NodeBounds` for accurate size calculation
|
|
||||||
|
|
||||||
feat(blueprint): add comprehensive math and logic nodes
|
|
||||||
|
|
||||||
Math nodes:
|
|
||||||
- Modulo, Abs, Min, Max, Power, Sqrt
|
|
||||||
- Floor, Ceil, Round, Sign, Negate
|
|
||||||
- Sin, Cos, Tan, Asin, Acos, Atan, Atan2
|
|
||||||
- DegToRad, RadToDeg, Lerp, InverseLerp
|
|
||||||
- Clamp, Wrap, RandomRange, RandomInt
|
|
||||||
|
|
||||||
Logic nodes:
|
|
||||||
- Equal, NotEqual, GreaterThan, GreaterThanOrEqual
|
|
||||||
- LessThan, LessThanOrEqual, InRange
|
|
||||||
- AND, OR, NOT, XOR, NAND
|
|
||||||
- IsNull, Select (ternary)
|
|
||||||
@@ -1,5 +1,32 @@
|
|||||||
# @esengine/node-editor
|
# @esengine/node-editor
|
||||||
|
|
||||||
|
## 1.4.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#438](https://github.com/esengine/esengine/pull/438) [`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b) Thanks [@esengine](https://github.com/esengine)! - feat(node-editor): add visual group box for organizing nodes
|
||||||
|
- Add NodeGroup model with dynamic bounds calculation based on node pin counts
|
||||||
|
- Add GroupNodeComponent for rendering group boxes behind nodes
|
||||||
|
- Groups automatically resize to wrap contained nodes
|
||||||
|
- Dragging group header moves all nodes inside together
|
||||||
|
- Support group serialization/deserialization
|
||||||
|
- Export `estimateNodeHeight` and `NodeBounds` for accurate size calculation
|
||||||
|
|
||||||
|
feat(blueprint): add comprehensive math and logic nodes
|
||||||
|
|
||||||
|
Math nodes:
|
||||||
|
- Modulo, Abs, Min, Max, Power, Sqrt
|
||||||
|
- Floor, Ceil, Round, Sign, Negate
|
||||||
|
- Sin, Cos, Tan, Asin, Acos, Atan, Atan2
|
||||||
|
- DegToRad, RadToDeg, Lerp, InverseLerp
|
||||||
|
- Clamp, Wrap, RandomRange, RandomInt
|
||||||
|
|
||||||
|
Logic nodes:
|
||||||
|
- Equal, NotEqual, GreaterThan, GreaterThanOrEqual
|
||||||
|
- LessThan, LessThanOrEqual, InRange
|
||||||
|
- AND, OR, NOT, XOR, NAND
|
||||||
|
- IsNull, Select (ternary)
|
||||||
|
|
||||||
## 1.3.0
|
## 1.3.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/node-editor",
|
"name": "@esengine/node-editor",
|
||||||
"version": "1.3.0",
|
"version": "1.4.0",
|
||||||
"description": "Universal node-based visual editor for blueprint, shader graph, and state machine",
|
"description": "Universal node-based visual editor for blueprint, shader graph, and state machine",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.js",
|
"module": "dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,32 @@
|
|||||||
# @esengine/blueprint
|
# @esengine/blueprint
|
||||||
|
|
||||||
|
## 4.4.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#438](https://github.com/esengine/esengine/pull/438) [`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b) Thanks [@esengine](https://github.com/esengine)! - feat(node-editor): add visual group box for organizing nodes
|
||||||
|
- Add NodeGroup model with dynamic bounds calculation based on node pin counts
|
||||||
|
- Add GroupNodeComponent for rendering group boxes behind nodes
|
||||||
|
- Groups automatically resize to wrap contained nodes
|
||||||
|
- Dragging group header moves all nodes inside together
|
||||||
|
- Support group serialization/deserialization
|
||||||
|
- Export `estimateNodeHeight` and `NodeBounds` for accurate size calculation
|
||||||
|
|
||||||
|
feat(blueprint): add comprehensive math and logic nodes
|
||||||
|
|
||||||
|
Math nodes:
|
||||||
|
- Modulo, Abs, Min, Max, Power, Sqrt
|
||||||
|
- Floor, Ceil, Round, Sign, Negate
|
||||||
|
- Sin, Cos, Tan, Asin, Acos, Atan, Atan2
|
||||||
|
- DegToRad, RadToDeg, Lerp, InverseLerp
|
||||||
|
- Clamp, Wrap, RandomRange, RandomInt
|
||||||
|
|
||||||
|
Logic nodes:
|
||||||
|
- Equal, NotEqual, GreaterThan, GreaterThanOrEqual
|
||||||
|
- LessThan, LessThanOrEqual, InRange
|
||||||
|
- AND, OR, NOT, XOR, NAND
|
||||||
|
- IsNull, Select (ternary)
|
||||||
|
|
||||||
## 4.3.0
|
## 4.3.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/blueprint",
|
"name": "@esengine/blueprint",
|
||||||
"version": "4.3.0",
|
"version": "4.4.0",
|
||||||
"description": "Visual scripting system - works with any ECS framework (ESEngine, Cocos, Laya, etc.)",
|
"description": "Visual scripting system - works with any ECS framework (ESEngine, Cocos, Laya, etc.)",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.js",
|
"module": "dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @esengine/fsm
|
# @esengine/fsm
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/fsm",
|
"name": "@esengine/fsm",
|
||||||
"version": "7.0.0",
|
"version": "8.0.0",
|
||||||
"description": "Finite State Machine for ECS Framework / ECS 框架的有限状态机",
|
"description": "Finite State Machine for ECS Framework / ECS 框架的有限状态机",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @esengine/network
|
# @esengine/network
|
||||||
|
|
||||||
|
## 9.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 8.0.0
|
## 8.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/network",
|
"name": "@esengine/network",
|
||||||
"version": "8.0.0",
|
"version": "9.0.0",
|
||||||
"description": "Network synchronization for multiplayer games",
|
"description": "Network synchronization for multiplayer games",
|
||||||
"esengine": {
|
"esengine": {
|
||||||
"plugin": true,
|
"plugin": true,
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @esengine/pathfinding
|
# @esengine/pathfinding
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/pathfinding",
|
"name": "@esengine/pathfinding",
|
||||||
"version": "7.0.0",
|
"version": "8.0.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,5 +1,12 @@
|
|||||||
# @esengine/procgen
|
# @esengine/procgen
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/procgen",
|
"name": "@esengine/procgen",
|
||||||
"version": "7.0.0",
|
"version": "8.0.0",
|
||||||
"description": "Procedural generation tools for ECS Framework / ECS 框架的程序化生成工具",
|
"description": "Procedural generation tools for ECS Framework / ECS 框架的程序化生成工具",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @esengine/spatial
|
# @esengine/spatial
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/spatial",
|
"name": "@esengine/spatial",
|
||||||
"version": "7.0.0",
|
"version": "8.0.0",
|
||||||
"description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统",
|
"description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
# @esengine/timer
|
# @esengine/timer
|
||||||
|
|
||||||
|
## 8.0.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`0d33cf0`](https://github.com/esengine/esengine/commit/0d33cf00977d16e6282931aba2cf771ec2c84c6b)]:
|
||||||
|
- @esengine/blueprint@4.4.0
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/timer",
|
"name": "@esengine/timer",
|
||||||
"version": "7.0.0",
|
"version": "8.0.0",
|
||||||
"description": "Timer and cooldown system for ECS Framework / ECS 框架的定时器和冷却系统",
|
"description": "Timer and cooldown system for ECS Framework / ECS 框架的定时器和冷却系统",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,5 +1,16 @@
|
|||||||
# @esengine/demos
|
# @esengine/demos
|
||||||
|
|
||||||
|
## 1.0.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies []:
|
||||||
|
- @esengine/fsm@8.0.0
|
||||||
|
- @esengine/pathfinding@8.0.0
|
||||||
|
- @esengine/procgen@8.0.0
|
||||||
|
- @esengine/spatial@8.0.0
|
||||||
|
- @esengine/timer@8.0.0
|
||||||
|
|
||||||
## 1.0.13
|
## 1.0.13
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@esengine/demos",
|
"name": "@esengine/demos",
|
||||||
"version": "1.0.13",
|
"version": "1.0.14",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Demo tests for ESEngine modules documentation",
|
"description": "Demo tests for ESEngine modules documentation",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
Reference in New Issue
Block a user