Stephen A. Imhoff
Stephen A. Imhoff
> For the record, in Panda, a compound shape is made by simply attaching multiple CollisionSolid objects to the same CollisionNode, so it should be supportable. I'm aware (and of...
[Khronos sample model](https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/2.0/2CylinderEngine/glTF-Draco)
Related to this, there appear to be a lot of "empty" (for lack of a better word) `PandaNode`s in a hierarchy: ``` ModelRoot Scene T:(pos 0 -1 0) Character Armature...
> empty directory **on disk** Linux especially (unsure about Windows) the default temp directory is a `tmpfs` filesystem, which is ram-backed (although pages out to disk as required). We should...
In python temp files/directories are context objects, you can do the equivalent of: ```csharp using(var tmp = File.CreateAndOpenTempFile(FileMode.Create)) { DoSomething(tmp); } ``` ... and the objects are automatically cleaned up...
>Also, is our goal to create a file in temporary directory or a temporary file that disappears after being closed? Part of the problem here is that it depends on...
Would the Python community's work on the [manylinux project](https://github.com/pypa/manylinux) be relevant here? This is solving a similar problem, no? Possibly some of their work on the problem may be relevant;...
Yeah, I'm not disabling source authentication. My current workaround is using the deadsnakes ppa, which might be a valid option for this script. I'm not sure that the network actually...
> My workaround is changing the version to `"python": "os-provided"` and add `apt-get -y install python3 python3-doc python3-pip python3-venv python3-dev python3-tk` in the dockerfile. Won't work for my case, because...
simple-pbr has since updated their package, so this is currently not an issue for me. I've tweaked some other aspects of my build process, too, so would now likely just...