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:
authorCampbell Barton <ideasman42@gmail.com>2009-05-13 14:15:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-05-13 14:15:19 +0400
commit24f326fb014be09b63850ef1effd02f9697ccf79 (patch)
treeaf1f930ead12ec9a56e7725a8f1337e3789a7baa /source/gameengine/PyDoc/KX_NetworkMessageActuator.py
parentb22605c4dfc31f4e6e1419ca19cbd2ada57c52ce (diff)
Moved game engine types into GameTypes.py because every type put into a module giving lots of references to KX_GameObject.KX_GameObject and having to write in links like L{CListValue<CListValue.CListValue>}.
Looked into ways around this but epydoc has no way to import a class without its module and the @include field is maked as 'TODO'. Also removed the outdated 'WhatsNew' section and linked to the 2.49 release notes.
Diffstat (limited to 'source/gameengine/PyDoc/KX_NetworkMessageActuator.py')
-rw-r--r--source/gameengine/PyDoc/KX_NetworkMessageActuator.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/source/gameengine/PyDoc/KX_NetworkMessageActuator.py b/source/gameengine/PyDoc/KX_NetworkMessageActuator.py
deleted file mode 100644
index c9f48d47eb8..00000000000
--- a/source/gameengine/PyDoc/KX_NetworkMessageActuator.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id$
-# Documentation for KX_NetworkMessageActuator
-from SCA_IActuator import *
-
-class KX_NetworkMessageActuator(SCA_IActuator):
- """
- Message Actuator
-
- @ivar propName: Messages will only be sent to objects with the given property name.
- @type propName: string
- @ivar subject: The subject field of the message.
- @type subject: string
- @ivar body: The body of the message.
- @type body: string
- @ivar usePropBody: Send a property instead of a regular body message.
- @type usePropBody: boolean
- """
- def setToPropName(name):
- """
- DEPRECATED: Use the propName property instead.
- Messages will only be sent to objects with the given property name.
-
- @type name: string
- """
- def setSubject(subject):
- """
- DEPRECATED: Use the subject property instead.
- Sets the subject field of the message.
-
- @type subject: string
- """
- def setBodyType(bodytype):
- """
- DEPRECATED: Use the usePropBody property instead.
- Sets the type of body to send.
-
- @type bodytype: boolean
- @param bodytype: True to send the value of a property, False to send the body text.
- """
- def setBody(body):
- """
- DEPRECATED: Use the body property instead.
- Sets the message body.
-
- @type body: string
- @param body: if the body type is True, this is the name of the property to send.
- if the body type is False, this is the text to send.
- """
-