소스 검색

MeshBatch : removed ctx argument from flush

TothBenoit 9 달 전
부모
커밋
febb371cc4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      hrt/prefab/fx/gpuemitter/GPUEmitter.hx

+ 2 - 2
hrt/prefab/fx/gpuemitter/GPUEmitter.hx

@@ -106,8 +106,8 @@ class GPUEmitterObject extends h3d.scene.MeshBatch {
 		simulationPass.addShader(new BaseSimulation());
 	}
 
-	override function flush(ctx : h3d.scene.RenderContext) {
-		super.flush(ctx);
+	override function flush() {
+		super.flush();
 
 		var alloc = hxd.impl.Allocator.get();
 		if ( particleBuffers == null )