Skip to content

Commit 2e11632

Browse files
author
Babylon.js Platform
committed
Version update 7.52.2
1 parent 248a296 commit 2e11632

File tree

38 files changed

+264
-163
lines changed

38 files changed

+264
-163
lines changed

.build/changelog.json

+91-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"fromTag": "7.52.0",
2+
"fromTag": "7.52.1",
33
"changelog": {
44
"7.52.1": [
55
{
@@ -17,6 +17,96 @@
1717
"tags": []
1818
}
1919
],
20+
"7.52.2": [
21+
{
22+
"pr": "16259",
23+
"title": "Fix color affectation when dealing with color3 component",
24+
"description": null,
25+
"author": {
26+
"name": "deltakosh",
27+
"url": "https://github.com/deltakosh"
28+
},
29+
"files": [
30+
".build/config.json",
31+
"packages/dev/core/src/Meshes/geometry.ts",
32+
"packages/dev/core/src/Meshes/mesh.vertexData.ts"
33+
],
34+
"tags": []
35+
},
36+
{
37+
"pr": "16251",
38+
"title": "Add spatial audio attach to camera, mesh and transform node capabilities to audio engine v2",
39+
"description": "Based on original PR https://github.com/BabylonJS/Babylon.js/pull/16161, but with refactors and updates including using camera view matrixes instead of their world matrixes.\r\n\r\nNote that this PR targets the `master` branch, unlike the original PR which targeted the now merged `audio-engine-v2` branch.",
40+
"author": {
41+
"name": "docEdub",
42+
"url": "https://github.com/docEdub"
43+
},
44+
"files": [
45+
"packages/dev/core/src/AudioV2/abstractAudio/abstractSound.ts",
46+
"packages/dev/core/src/AudioV2/abstractAudio/audioBus.ts",
47+
"packages/dev/core/src/AudioV2/abstractAudio/audioEngineV2.ts",
48+
"packages/dev/core/src/AudioV2/abstractAudio/components/spatialAudioAttacherComponent.ts",
49+
"packages/dev/core/src/AudioV2/abstractAudio/staticSound.ts",
50+
"packages/dev/core/src/AudioV2/abstractAudio/streamingSound.ts",
51+
"packages/dev/core/src/AudioV2/abstractAudio/subNodes/spatialAudioSubNode.ts",
52+
"packages/dev/core/src/AudioV2/abstractAudio/subProperties/abstractSpatialAudio.ts",
53+
"packages/dev/core/src/AudioV2/abstractAudio/subProperties/abstractSpatialAudioListener.ts",
54+
"packages/dev/core/src/AudioV2/abstractAudio/subProperties/spatialAudio.ts",
55+
"packages/dev/core/src/AudioV2/abstractAudio/subProperties/spatialAudioListener.ts",
56+
"packages/dev/core/src/AudioV2/index.ts",
57+
"packages/dev/core/src/AudioV2/spatialAudioAttachmentType.ts",
58+
"packages/dev/core/src/AudioV2/webAudio/components/spatialWebAudioUpdaterComponent.ts",
59+
"packages/dev/core/src/AudioV2/webAudio/subNodes/spatialWebAudioSubNode.ts",
60+
"packages/dev/core/src/AudioV2/webAudio/subProperties/spatialWebAudio.ts",
61+
"packages/dev/core/src/AudioV2/webAudio/subProperties/spatialWebAudioListener.ts",
62+
"packages/dev/core/src/AudioV2/webAudio/webAudioBus.ts",
63+
"packages/dev/core/src/AudioV2/webAudio/webAudioEngine.ts",
64+
"packages/dev/core/src/AudioV2/webAudio/webAudioStaticSound.ts",
65+
"packages/dev/core/src/AudioV2/webAudio/webAudioStreamingSound.ts"
66+
],
67+
"tags": [
68+
"audio"
69+
]
70+
},
71+
{
72+
"pr": "16256",
73+
"title": "corrected property assignment",
74+
"description": "Apologies, just spotted an error on recent PR: https://github.com/BabylonJS/Babylon.js/pull/16254.\r\n\r\nThis corrects it.",
75+
"author": {
76+
"name": "j-te",
77+
"url": "https://github.com/j-te"
78+
},
79+
"files": [
80+
"packages/dev/sharedUiComponents/src/lines/textLineComponent.tsx"
81+
],
82+
"tags": [
83+
"skip changelog"
84+
]
85+
},
86+
{
87+
"pr": "16254",
88+
"title": "Inspector gltf validation save",
89+
"description": "- Refactored GLTF Validation _More details_ and added Copy button for user convenience.\r\n- `<TextLineComponent />` now has optional `onCopy` property which accepts `true` or a callback that must return a string.\r\n- Updated `onCopy` to common classes' `ID` property.",
90+
"author": {
91+
"name": "j-te",
92+
"url": "https://github.com/j-te"
93+
},
94+
"files": [
95+
"packages/dev/inspector/src/components/actionTabs/actionTabs.scss",
96+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/cameras/commonCameraPropertyGridComponent.tsx",
97+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/lights/commonLightPropertyGridComponent.tsx",
98+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/materials/commonMaterialPropertyGridComponent.tsx",
99+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/meshes/meshPropertyGridComponent.tsx",
100+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/meshes/skeletonPropertyGridComponent.tsx",
101+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/meshes/transformNodePropertyGridComponent.tsx",
102+
"packages/dev/inspector/src/components/actionTabs/tabs/propertyGrids/particleSystems/particleSystemPropertyGridComponent.tsx",
103+
"packages/dev/inspector/src/components/actionTabs/tabs/tools/gltfComponent.tsx",
104+
"packages/dev/sharedUiComponents/src/lines/textLineComponent.tsx",
105+
"packages/dev/sharedUiComponents/src/styleHelper.ts"
106+
],
107+
"tags": []
108+
}
109+
],
20110
"7.52.0": [
21111
{
22112
"pr": "16248",

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 7.52.2
4+
5+
### Core
6+
7+
- Fix color affectation when dealing with color3 component - by [deltakosh](https://github.com/deltakosh) ([#16259](https://github.com/BabylonJS/Babylon.js/pull/16259))
8+
- Add spatial audio attach to camera, mesh and transform node capabilities to audio engine v2 - by [docEdub](https://github.com/docEdub) ([#16251](https://github.com/BabylonJS/Babylon.js/pull/16251))
9+
10+
### Inspector
11+
12+
- Inspector gltf validation save - by [j-te](https://github.com/j-te) ([#16254](https://github.com/BabylonJS/Babylon.js/pull/16254))
13+
314
## 7.52.1
415

516
### Core

0 commit comments

Comments
 (0)