David Lai

Results 196 comments of David Lai

Sorry for late reply, was on vaca pass few days. ☺️ > If you have existing groups, we'll treat them similarly as subsets and when you select multiple assets, we...

> I did think of that path, but I was worried that pushing existing subset groups one level lower would complecate codes Having that said, maybe I was thinking wrong....

I checked out this branch directly and looks like the data was loaded correctly, but the view can not show anything ? But there are colored underlines on selected assets...

I comment out these lines and the subset widget is showing stuff now. https://github.com/getavalon/core/blob/4f6c897520c41b8bd01b2f995f55503e7ccec99c/avalon/tools/loader/widgets.py#L360-L366 Looks like the problem was the loading screen didn't go off. :D

Thanks ! Just had another quick test, can confirm that works now. But sometimes (really rare, but happens) the loading screen still there. Anyway, I'll try reviewing this one ASAP.

Here's my test code ```python class CreateA(api.Creator): label = "A" family = "foobar" def process(self): print("A") class CreateB(api.Creator): label = "B" family = "foobar" def process(self): print("B") from avalon import...

Just added, also fixed an obvious bug that I missed in ebcb78c. :P

Weird, the test actually failed, but build passed. :/ The test passed in my Maya session, maybe I should write the test plugin into an actual script file.

Ah, now I see the problem, the `host` registed in `test_pipeline` has no attribute 'maintained_selection' ``` avalon.pipeline: WARNING: 'module' object has no attribute 'maintained_selection' ```