Pierre Krack

Results 5 comments of Pierre Krack
trafficstars

Tried importing panda (and others from the menagerie) and got the same error (`IndexOutOfRangeException: The mesh exceeds the number of vertices per mesh allowed by Unity. (somenumber > 65535)`) Unity...

It looks to me like the Unity plugin simply does not support importing from obj file, which the menagerie assets apparently use. You can convert the .obj files to .stl...

Got it all working. 1. Convert all .obj fils to binary STL (e.g. with assimp): `for f in *.obj; do assimp export $f ${f%obj}stl -fstlb; done` 2. Change the .obj...

Here is my solution: ``` " NOTE: I rely on $PWD being the project root. Works automatically in my case since I open vim with Unity " NOTE: This is...

@lando07 Exact same errors here when installing with apt, except for different versions (I am on debian bookworm): Versions: DKMS make.log for evdi-1.14.6 for kernel 6.1.0-23-amd64 (x86_64) Did you find...