ya2 · news · projects · code · about

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