next-flow-interface 0.15.9 → 0.15.10

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/dist/index.d.ts +2 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1760,9 +1760,10 @@ interface RvNodeMaterialAnalyzerApi {
1760
1760
  * 确保当前材质的 RhineVar 对象包含节点材质信息 若没有则添加
1761
1761
  *
1762
1762
  * @param material {StoredRhineVar<RvMaterial>} 需操作的 RhineVar 材质数据对象
1763
+ * @Param nid {string}
1763
1764
  * @returns {Promise<boolean>} 是否添加了材质
1764
1765
  */
1765
- ensure(material: StoredRhineVar<RvMaterial>): Promise<boolean>;
1766
+ ensure(material: StoredRhineVar<RvMaterial>, nid: string): Promise<boolean>;
1766
1767
  }
1767
1768
 
1768
1769
  interface RvAnimation {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.15.9",
3
+ "version": "0.15.10",
4
4
  "description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",