From dc27396c6f76e69fcb2e30b8d90dd974a3041297 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 27 Sep 2024 15:12:05 +0800 Subject: [PATCH] feat: add setParameterFloat2 method --- .../lib/src/viewer/src/web_wasm/src/material_instance.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/thermion_dart/lib/src/viewer/src/web_wasm/src/material_instance.dart b/thermion_dart/lib/src/viewer/src/web_wasm/src/material_instance.dart index e5776836..a785efe4 100644 --- a/thermion_dart/lib/src/viewer/src/web_wasm/src/material_instance.dart +++ b/thermion_dart/lib/src/viewer/src/web_wasm/src/material_instance.dart @@ -15,4 +15,10 @@ class ThermionWasmMaterialInstance extends MaterialInstance { // TODO: implement setDepthWriteEnabled throw UnimplementedError(); } + + @override + Future setParameterFloat2(String name, double x, double y) { + // TODO: implement setParameterFloat2 + throw UnimplementedError(); + } }