Haiyi

Results 31 comments of Haiyi

I think I found the way: ```python # saved as test.py from typing import Annotated import click import typer app = typer.Typer() @app.command() def test(choice: Annotated[str, typer.Option(click_type=click.Choice(['1PL', '2PL', '3PL']))] =...

May I ask, are you using this in a headless Linux?

Yes, you can do it, please refer to [this part](https://xrfeitoria.readthedocs.io/en/latest/faq.html#rpc-port). As for if it's useful in multiprocessing, that depends. Usually, 2 threads would help.

Sorry, for that. Please try to use dev_plugins first: ```bash git clone https://github.com/openxrlab/xrfeitoria.git cd xrfeitoria pip install . python -c "import xrfeitoria as xf; xf.init_blender(replace_plugin=True, dev_plugin=True)" ``` This would be...

> > Sorry, for that. Please try to use dev_plugins first: > > ```shell > > git clone https://github.com/openxrlab/xrfeitoria.git > > cd xrfeitoria > > pip install . > >...

Hi @Time-Lord12th @ChenyangWang95, we released `v0.6.0` of XRFeitoria. Please update using: ```bash pip install xrfeitoria -U ``` And you may need to use `xf.init_blender(..., replace_plugin=True)`

> Thanks for the great render tool. I meet two issues when I use this repo. > > 1. Blender 4 is not functioning with CLI, CLI works after downgrade...

Thanks for your attention. You mean is the rendering process differentiable? If this is the question, then the answer is no. Cos the backends of our project are blender and...

Yes, it is both possible for forward and backward flow. But I just discovered there is a bug in backward flow. I'll notify you once it's fixed. Before that, you...

I fixed it in this commit https://github.com/openxrlab/xrfeitoria/commit/8f8f2e041fbc4c84b78ad30a70fd9f3eba2f8248. You can use it by following these steps for now (before a new version is released): ```bash git clone https://github.com/openxrlab/xrfeitoria.git cd xrfeitoria git...