Genhis
Genhis
@felixvolz Is there any progress with this type of AI and guidance how to use it?
Here is a copy if you are interested: http://web.archive.org/web/20180302115404/http://www.bulletphysics.org/mediawiki-1.5.8/index.php/Simulation_Tick_Callbacks
So, after a few more attempts, here are my observations: - Python 3 is not supported by `krpc-docgen`, see `__init__.py:59` and [this answer](https://stackoverflow.com/a/28584017/4581323) (I installed Python 2.7) - `krpc-servicedefs` requires...
I spent an hour debugging it and it is caused by the issue you mentioned. The problem is that the path is absolute. Jinja splits the path to pieces but...
Great job! :-) I've just tried your latest changes and it works even without my workaround in Jinja's code. I will let you know if there are other issues.
Two more issues with Python 3: - `print` is missing parentheses in `__init__.py:87` - `__init__.py:104`: AttributeError: 'dict' object has no attribute 'iteritems'. **Solution:** change `iteritems()` to `items()`; see [StackOverflow answer](https://stackoverflow.com/a/30418498/4581323)....
How can I add a new line to my documentation? I would use `` but it doesn't work. Neither `` nor `` does. ``` File "c:\program files\python37\lib\site-packages\krpctools\docgen\docgen.py", line 59, in...
I'm using classes from the `SpaceCenter` service. What do I need to do to link them with kRPC documentation? For example, I have a method `SpaceCenter.Node makeNode()` and I want...
Finally done! :) https://genhis.github.io/KRPC.MechJeb/ Would you please add my service to the kRPC website? Btw. I can submit a PR with a tutorial if someone else wanted to generate their...