@needle-tools/materialx 1.1.1-next.fb25319 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.2.0] - 2025-07-23
8
+ - Add: Support to load raw MaterialX materials (from mtlx as XML)
9
+ - Fix: Warn if tangents are missing
10
+ - Fix: Improve unsupported light handling
11
+ - Change: Refactor library to js + jsdoc
12
+
7
13
  ## [1.1.0] - 2025-07-15
8
14
  - Add: `useNeedleMaterialX` hooks for vanilla three.js and Needle Engine
9
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@needle-tools/materialx",
3
- "version": "1.1.1-next.fb25319",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -22,7 +22,7 @@
22
22
  }
23
23
  },
24
24
  "peerDependencies": {
25
- "three": ">=0.169.0"
25
+ "three": ">=0.160.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@needle-tools/engine": "4.x",
@@ -56,4 +56,4 @@
56
56
  "mtlx",
57
57
  "rendering"
58
58
  ]
59
- }
59
+ }