feat: add setParameterFloat2 method

This commit is contained in:
Nick Fisher
2024-09-27 15:12:14 +08:00
parent 41e0851d70
commit 6a57d242f9

View File

@@ -1,6 +1,7 @@
abstract class MaterialInstance {
Future setDepthWriteEnabled(bool enabled);
Future setDepthCullingEnabled(bool enabled);
Future setParameterFloat2(String name, double x, double y);
}
enum AlphaMode { OPAQUE, MASK, BLEND }