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.
- package/dist/index.d.ts +2 -1
- 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
|
|
1766
|
+
ensure(material: StoredRhineVar<RvMaterial>, nid: string): Promise<boolean>;
|
|
1766
1767
|
}
|
|
1767
1768
|
|
|
1768
1769
|
interface RvAnimation {
|
package/package.json
CHANGED