Ejemplo n.º 1
0
 def createRadiusTrigger(self,
                         object,
                         callback,
                         objName,
                         radius,
                         data=None):
     return host.trig_create(object, callback, objName, radius, 0, data)
Ejemplo n.º 2
0
 def createHemiSphericalTrigger(self,
                                object,
                                callback,
                                objName,
                                radius,
                                data=None):
     return host.trig_create(object, callback, objName, radius, 1, data)
Ejemplo n.º 3
0
	def createHemiSphericalTrigger(self, object, callback, objName, radius, data=None):
		return host.trig_create(object, callback, objName, radius, 1, data)
Ejemplo n.º 4
0
	def createRadiusTrigger(self, object, callback, objName, radius, data=None):
		return host.trig_create(object, callback, objName, radius, 0, data)