mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
33d9603e16
Use trilinear filtering instead of bilinear
9 lines
180 B
Python
9 lines
180 B
Python
import pybullet as p
|
|
import time
|
|
|
|
p.connect(p.SHARED_MEMORY)
|
|
timestr = time.strftime("%Y%m%d-%H%M%S")
|
|
filename = "saveWorld" + timestr + ".py"
|
|
p.saveWorld(filename)
|
|
p.disconnect()
|