blender/source/gameengine/PyDoc/KX_NetworkMessageSensor.py
Kester Maddock d38329b5aa Added Python module for Lights.
Added attributes to the vertex class.
2004-05-30 11:09:46 +00:00

43 lines
859 B
Python

# $Id$
# Documentation for KX_NetworkMessageSensor
from SCA_ISensor import *
class KX_NetworkMessageSensor(SCA_ISensor):
"""
The Message Sensor logic brick.
Currently only loopback (local) networks are supported.
"""
def setSubjectFilterText(subject):
"""
Change the message subject text that this sensor is listening to.
@type subject: string
@param subject: the new message subject to listen for.
"""
def getFrameMessageCount():
"""
Get the number of messages received since the last frame.
@rtype: integer
"""
def getBodies():
"""
Gets the list of message bodies.
@rtype: list
"""
def getSubject():
"""
Gets the message subject this sensor is listening for from the Subject: field.
@rtype: string
"""
def getSubjects():
"""
Gets the list of message subjects received.
@rtype list
"""