ya2 · news · projects · code · about

shelf
[pmachines.git] / pmachines / items / shelf.py
CommitLineData
d5932612
FC
1from panda3d.bullet import BulletBoxShape, BulletRigidBodyNode, BulletGhostNode
2from pmachines.items.item import Item
3
4
5class Shelf(Item):
6
7 def __init__(self, world, plane_node, count, cb_inst, curr_bottom):
8 super().__init__(world, plane_node, count, cb_inst, curr_bottom, 'assets/gltf/shelf/shelf.gltf')
9
10 def _set_phys(self):
11 super()._set_phys()
12 self._shape = BulletBoxShape((1, .5, .05))