Karol Kreński
Karol Kreński
I am too busy and cannot help you, sorry :( Once I have time I need to see about stratagus PPA at launchpad finally. -- Karol Kreński tel. 517-302-055 >...
> Now that I think about it. It is tied to the cycles-per-second on the engine code. Ill look into it later to see what changes I can make. >...
d:recastlib$ python setup.py install running install running build running build_ext running install_lib running install_egg_info Removing /usr/local/lib/python2.7/dist-packages/_recast-0.0.0.egg-info Writing /usr/local/lib/python2.7/dist-packages/_recast-0.0.0.egg-info d:recastlib$ cd examples && python simpletest.py Traceback (most recent call last): File...
No way! This is working! You wouldn't believe how much time I've spent trying to bring recastdetour into python! There are c++, js, go solutions, but I just couldn't make...
Two questions first: 1. What would it take to support python3? Could you make it perhaps? :) 2. Can this package create the navmesh from geometry? Well, I have another...
I managed to succesfully load into simpletest.py a binary navmesh produced by this tool: https://github.com/arl/go-detour, so it works! I converted the simpletest.py to python3, but I ran into: mimooh:examples$ python3...
It is likely my python3 libboost problem may be general for my Ubuntu 16.04, not your package: https://stackoverflow.com/questions/5539557/boost-and-python-3-x/21460832 I will upgrade to ubuntu 18.04 and report if it fixes the...
Hmmm, doesn't work under ubuntu 18.04. Is it more linux/liboost issue, or your package issue? lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04 LTS Release:...
Awesome, you libboost wizard! Except it didn't work initially for me, and this fix was needed: if sys.version_info[0] == 3: - libraries += ['boost_python3'] + libraries += ['boost_python-py35'] UPDATE: Various...
Hi, thanks again for your code. I managed to integrate it in my project and this extremally valuable for us! However, it fails at some more complex geometries. I compare...