Shmyglev Dmitry

Results 8 comments of Shmyglev Dmitry

Workaround: ``` private static final Cloner CLONER = Cloner.standard(); static { try { var list = List.of(1); var field = list.getClass().getDeclaredField("e1"); field.setAccessible(true); var value = field.get(list); if (value != null)...

@legend069 , Hi Yes, this value also can be used, it's less accurate in case of cancels, but OK. The problem with octoprint is that I want to start printing...

@legend069 , Thank you for information I will try to implement this feature. Can I ask you a few questions about this topic if I don't find the answer myself?

@legend069 , what branch I have to use for development? I checked few pull requests - someone uses nightly_dev, someone - master, someone - another branches.

@supermerill , I can include IF to check is custom GCODE contains `layer_used_filament` parameter, I didn't it because I don't see same code for other parameters. But I can do...

@supermerill , what I was talking about: the macros `layer_used_filament` only appears in BEFORE_LAYER_CHANGE. So, there is no reason to calculate temporary variables if this CUSTOM GCODE is empty. This...

@mdziekon , can you help me please. I will contribute changes to the superslicer project to support this feature on plugin-side. So I have to understand what value needs by...