|
@@ -11,8 +11,17 @@ import { DataBuffer } from '../Meshes/dataBuffer';
|
|
// Prevents ES6 Crash if not imported.
|
|
// Prevents ES6 Crash if not imported.
|
|
import "../Shaders/postprocess.vertex";
|
|
import "../Shaders/postprocess.vertex";
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * Effect Render Options
|
|
|
|
+ */
|
|
export interface IEffectRendererOptions {
|
|
export interface IEffectRendererOptions {
|
|
|
|
+ /**
|
|
|
|
+ * Defines the vertices positions.
|
|
|
|
+ */
|
|
positions?: number[];
|
|
positions?: number[];
|
|
|
|
+ /**
|
|
|
|
+ * Defines the indices.
|
|
|
|
+ */
|
|
indices?: number[];
|
|
indices?: number[];
|
|
}
|
|
}
|
|
|
|
|