Merge branch 'main' of https://github.com/galacean/engine into dev/1.4

This commit is contained in:
GuoLei1990
2024-09-26 14:50:08 +08:00
17 changed files with 21 additions and 19 deletions

View File

@@ -69,10 +69,12 @@ jobs:
run: npm run build:editor
- name: Test
run: npm run test-cov
- run: pnpm install codecov -w
- name: Upload coverage to Codecov
run: ./node_modules/.bin/codecov
- run: curl -s https://codecov.io/bash
uses: codecov/codecov-action@v4
with:
token: ${{secrets.CODECOV_TOKEN}}
fail_ci_if_error: true
flags: unittests
e2e:
runs-on: macos-latest

View File

@@ -36,7 +36,7 @@ jobs:
run: pnpm b:all
- name: Release current monorepo
uses: gz65555/publish@v0.1.3
uses: gz65555/publish@v0.1.9
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true

View File

@@ -1,7 +1,7 @@
{
"name": "@galacean/engine-e2e",
"private": true,
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"license": "MIT",
"scripts": {
"case": "vite serve .dev --config .dev/vite.config.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-root",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"packageManager": "pnpm@9.3.0",
"private": true,
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-core",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -66,7 +66,7 @@ vec3 computeParticlePosition(in vec3 startVelocity, in vec3 lifeVelocity, in flo
#if defined(RENDERER_VOL_CURVE) || defined(RENDERER_VOL_RANDOM_CURVE)
lifePosition = vec3(
evaluateParticleCurveCumulative(renderer_VOLMaxGradientX, normalizedAge)
evaluateParticleCurveCumulative(renderer_VOLMaxGradientX, normalizedAge),
evaluateParticleCurveCumulative(renderer_VOLMaxGradientY, normalizedAge),
evaluateParticleCurveCumulative(renderer_VOLMaxGradientZ, normalizedAge));

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-design",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-loader",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-math",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-physics-lite",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-physics-physx",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-rhi-webgl",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"repository": {
"url": "https://github.com/galacean/engine.git"
},

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-shader-lab",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-xr-webxr",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,6 +1,6 @@
{
"name": "@galacean/engine-xr",
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"

View File

@@ -1,7 +1,7 @@
{
"name": "@galacean/engine-tests",
"private": true,
"version": "1.3.11",
"version": "0.0.0-experimental-1.3-xr.10",
"license": "MIT",
"main": "dist/main.js",
"module": "dist/module.js",