@galacean/effects-plugin-model 2.0.0-alpha.26 → 2.0.0-alpha.28

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.
@@ -72,10 +72,9 @@ export declare class CompositionCache {
72
72
  * 获取滤波 Mesh
73
73
  * @param name - 名称
74
74
  * @param material - 材质
75
- * @param uniformSemantics - Uniform 语义信息
76
75
  * @returns
77
76
  */
78
- getFilterMesh(name: string, material: PMaterialBase, uniformSemantics: Record<string, any>): Mesh;
77
+ getFilterMesh(name: string, material: PMaterialBase): Mesh;
79
78
  getShadowBasePass(name: string, priority: number, meshList: Mesh[], fboOptions: FBOOptions): RenderPass;
80
79
  getShadowFilterPass(name: string, priority: number, meshList: Mesh[], fboOptions: FBOOptions): RenderPass;
81
80
  /**
@@ -191,14 +191,10 @@ export declare class PSubMesh {
191
191
  create(geometry: Geometry, material: Material, parent: PMesh): void;
192
192
  /**
193
193
  * 创建 GE Mesh、Geometry 和 Material 对象,用于后面的渲染
194
- * 着色器部分 Uniform 数据来自 uniformSemantics
195
194
  * @param lightCount - 灯光数目
196
- * @param uniformSemantics - Uniform 语义数据
197
195
  * @param skybox - 天空盒
198
196
  */
199
- build(lightCount: number, uniformSemantics: {
200
- [k: string]: any;
201
- }, skybox?: PSkybox): void;
197
+ build(lightCount: number, skybox?: PSkybox): void;
202
198
  private getFeatureList;
203
199
  private getMacroList;
204
200
  /**
@@ -157,12 +157,9 @@ export declare class MeshHelper {
157
157
  * @param engine - 引擎
158
158
  * @param name - 名称
159
159
  * @param material - 3D 材质
160
- * @param uniformSemantics - 传入的 Uniform 数据
161
160
  * @returns Mesh 对象
162
161
  */
163
- static createFilterMesh(engine: Engine, name: string, material: PMaterialBase, uniformSemantics: {
164
- [k: string]: any;
165
- }): Mesh;
162
+ static createFilterMesh(engine: Engine, name: string, material: PMaterialBase): Mesh;
166
163
  /**
167
164
  * 获取平面的几何参数
168
165
  * @returns 几何参数