Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/PyDoc/KX_NetworkMessageSensor.py')
-rw-r--r--source/gameengine/PyDoc/KX_NetworkMessageSensor.py60
1 files changed, 0 insertions, 60 deletions
diff --git a/source/gameengine/PyDoc/KX_NetworkMessageSensor.py b/source/gameengine/PyDoc/KX_NetworkMessageSensor.py
deleted file mode 100644
index 0fecad58437..00000000000
--- a/source/gameengine/PyDoc/KX_NetworkMessageSensor.py
+++ /dev/null
@@ -1,60 +0,0 @@
-# $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.
-
- @ivar subject: The subject the sensor is looking for.
- @type subject: string
- @ivar frameMessageCount: The number of messages received since the last frame.
- (Read-only)
- @type framemessageCount: int
- @ivar subjects: The list of message subjects received. (Read-only)
- @type subjects: list of strings
- @ivar bodies: The list of message bodies received. (Read-only)
- @type bodies: list of strings
- """
-
-
- def setSubjectFilterText(subject):
- """
- DEPRECATED: Use the subject property instead.
- 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():
- """
- DEPRECATED: Use the frameMessageCount property instead.
- Get the number of messages received since the last frame.
-
- @rtype: integer
- """
- def getBodies():
- """
- DEPRECATED: Use the bodies property instead.
- Gets the list of message bodies.
-
- @rtype: list
- """
- def getSubject():
- """
- DEPRECATED: Use the subject property instead.
- Gets the message subject this sensor is listening for from the Subject: field.
-
- @rtype: string
- """
- def getSubjects():
- """
- DEPRECATED: Use the subjects property instead.
- Gets the list of message subjects received.
-
- @rtype: list
- """
- \ No newline at end of file